.sub-path {
  position: relative;
  width: 100%;
  padding: 15px 0;
  background-color: #f7f7f7;
  border-top: 1px solid #eaeaea;
  z-index: 99;
}

.sub-path-container {
  max-width: 1310px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 15px;
}

.sub-path-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-path-inner a {
  position: relative;
  display: block;
  padding: 0 10px;
  margin: 0 70px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.sub-path-inner a::after {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  display: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #0d8afc;
}

.sub-path-inner a.on {
  color: #0d8afc;
}

.sub-path-inner a.on::after {
  display: block;
}

@media (max-width: 1200px) {
  .sub-path-inner a {
    margin: 0 55px;
    font-size: 1.6rem;
  }
}

@media (max-width: 1024px) {
  .sub-path-inner a {
    margin: 0 40px;
    font-size: 1.5rem;
  }

  .sub-path-inner a::after {
    right: -4px;
    width: 4px;
    height: 4px;
  }
}

@media (max-width: 768px) {
  .sub-path {
    padding: 12px 0;
  }

  .sub-path-inner a {
    padding: 0 8px;
    margin: 0 25px;
    font-size: 1.4rem;
  }
}

@media (max-width: 500px) {
  .sub-path {
    padding: 10px 0;
  }

  .sub-path-inner a {
    margin: 0 10px;
    font-size: 1.2rem;
  }

  .sub-path-inner a::after {
    right: 0px;
    width: 3px;
    height: 3px;
  }
}

/* Sub Title + Sub Navigation */
.sub-title-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9;
}

.sub-title {
  width: 45%;
}

.sub-title-inner {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  width: 100%;
  margin: 0 0 -3px;
}

.sub-title-inner p {
  margin-right: 40px;
  font-size: 3.6rem;
  color: #0d8afc;
  font-weight: 600;
  line-height: 1;
}

.sub-title-inner span {
  display: block;
  width: calc(100% - 260px);
  height: 2px;
  background-color: #0d8afc;
}

.sub-navigation {
  width: 55%;
}

.sub-navigation-inner {
  display: flex;
  align-items: center;
  justify-content: right;
}

.sub-navigation-inner.tab {
  margin-top: 20px;
}

.sub-navigation-depth {
  position: relative;
  padding: 0 25px;
  font-size: 1.8rem;
  font-weight: 300;
  color: #999;
  text-align: center;
}

.sub-navigation-depth::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 21px;
  background-color: #999;
}

.sub-navigation-depth:last-of-type::after {
  display: none;
}

.sub-navigation-depth.on {
  color: #010101;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .sub-navigation-inner.tab {
    margin-top: 18px;
  }
  
  .sub-title-inner p {
    margin-right: 35px;
    font-size: 3.2rem;
  }

  .sub-title-inner span {
    width: calc(100% - 50px);
    height: 2px;
  }

  .sub-navigation-depth {
    padding: 0 20px;
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .sub-navigation-inner.tab {
    margin-top: 15px;
  }
  
  .sub-title-inner p {
    margin-right: 30px;
    font-size: 2.8rem;
  }

  .sub-title-inner span {
    width: calc(100% - 60px);
    height: 2px;
  }

  .sub-navigation-depth {
    padding: 0 15px;
    font-size: 1.6rem;
  }
  
  .sub-navigation-depth::after {
    height: 15px;
  }
  
}

@media (max-width: 830px) {
  .sub-title-wrap {
    flex-direction: column;
    align-items: start;
    gap: 20px 0;
  }

  .sub-title {
    width: 80%;
  }

  .sub-navigation {
    width: 100%;
  }

  .sub-navigation-inner {
    justify-content: left;
  }

  .sub-navigation-depth:first-of-type {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .sub-title {
    width: 70%;
  }

  .sub-title-inner {
    justify-content: left;
  }
  
  .sub-navigation-inner.tab {
    margin-top: 12px;
  }

  .sub-title-inner p {
    margin-right: 20px;
    font-size: 2.4rem;
  }

  .sub-title-inner span {
    height: 1px;
  }

  .sub-navigation-depth {
    padding: 0 10px;
    font-size: 1.5rem;
  }
}

@media (max-width: 500px) {
  .sub-title {
    width: fit-content;
  }

  .sub-navigation-inner.tab {
    margin-top: 10px;
  }
  
  .sub-title-inner span {
    width: 150px;
  }

  .sub-title-inner p {
    margin-right: 10px;
    font-size: 2.2rem;
  }

  .sub-navigation-depth {
    padding: 0 8px;
    font-size: 1.4rem;
  }
}

/* Sub Visual */
.sub-visual {
  position: relative;
  width: 100vw;
  height: calc(100vh - 233px);
  margin-top: 120px;
}

.sub-visual-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.sub-visual .bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  transition: all 0.6s ease-out;
}

.sub-visual .bg .img {
  position: relative;
  display: block;
  max-width: 1280px;
  width: 100%;
  height: 320px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  transition: all 0.6s ease-out;
}

.about .sub-visual .bg .img {
  background-image: url("/en/img/sub/company/about/sub-visual.png");
}

.product .sub-visual .bg .img {
  background-image: url("/en/img/sub/technology/product/product/sub-visual.png");
}

.strategy .sub-visual .bg .img {
  background-image: url("/en/img/sub/esg/sustainability/strategy/sub-visual.png");
}

.sub-visual .bg .img::after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: display 0.5s ease-out;
}

.sub-visual .text-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 15px;
  margin: 55px 0 0;
  text-align: center;
  z-index: 99;
}

.sub-visual .line {
  display: block;
  width: 1px;
  height: 0;
  margin: 0 auto;
  background-color: #fff;
  transition: height 0.3s ease-out;
}

.sub-visual .text {
  display: none;
  width: 100%;
  margin: 0 0 12px;
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.sub-visual .text:last-of-type {
  margin: 0;
}

.sub-visual .text p {
  transform: translateY(100%);
}

.sub-visual .text span {
  font-size: 4rem;
  font-weight: 700;
}

.sub-visual .scroll-down {
  width: fit-content;
  margin: 85px auto 0;
  text-align: center;
  cursor: pointer;
}

.sub-visual .scroll-down p {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Montserrat";
  letter-spacing: 0.022em;
  color: #0d8afc;
  line-height: 1;
}

.sub-visual .scroll-down i {
  display: block;
  width: 30px;
  height: 70px;
  margin: 0 auto;
  background-image: url("/en/img/icon/scrolldown-icon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@keyframes scrollmotionLine {
  0% {
    height: 0;
  }

  100% {
    height: 80px;
  }
}

@keyframes scrollmotionText {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0);
  }
}

.sub-visual.on .line {
  animation: scrollmotionLine 0.5s ease-out forwards;
  animation-delay: 0.5s;
  margin: 30px auto;
}

.sub-visual.on .text {
  display: block;
}

.sub-visual.on .text.text--01 p {
  animation: scrollmotionText 0.4s ease-out forwards;
  animation-delay: 0.9s;
}

.sub-visual.on .text.text--02 p {
  animation: scrollmotionText 0.4s ease-out forwards;
  animation-delay: 1.3s;
}

@media (min-width: 1201px) {
  .sub-visual.on .text-wrap {
    margin: -20px 0 0;
  }

  .sub-visual.on .scroll-down {
    margin: 90px auto;
  }

  .sub-visual .bg.active {
    top: -233px;
    z-index: 99;
  }

  .sub-visual .bg.active .img {
    max-width: 100vw;
    width: 100vw;
    height: 100vh;
  }

  .sub-visual .bg.active .img::after {
    display: block;
  }

  .sub-visual.on .scroll-down p {
    color: #fff;
  }

  .sub-visual.on .scroll-down i {
    background-image: url("/en/img/icon/scrolldown-icon-active.png");
  }
}

@media (max-width: 1200px) {
  .sub-visual {
    height: calc(100vh - 326px);
    margin-top: 70px;
  }

  .sub-visual .bg .img {
    height: 100%;
  }

  .sub-visual.on .text-wrap {
    margin: 0;
  }

  .sub-visual .text span {
    font-size: 3.6rem;
  }

  .sub-visual .text {
    margin: 0 0 10px;
    font-size: 2.4rem;
  }

  .sub-visual .scroll-down {
    margin: 75px auto 0;
  }

  .sub-visual .scroll-down p {
    font-size: 1.3rem;
    color: #fff;
  }

  .sub-visual .scroll-down i {
    background-image: url("/en/img/icon/scrolldown-icon-active.png");
  }

  .sub-visual.on .line {
    margin: 20px auto;
  }

  @keyframes scrollmotionLine {
    0% {
      height: 0;
    }

    100% {
      height: 65px;
    }
  }
}

@media (max-width: 1024px) {
  .sub-visual {
    height: calc(100vh - 288px);
    margin-top: 60px;
  }

  .sub-visual .text span {
    font-size: 3.2rem;
  }

  .sub-visual .text {
    font-size: 2.2rem;
  }

  .sub-visual .scroll-down {
    margin: 65px auto 0;
  }

  .sub-visual .scroll-down p {
    font-size: 1.2rem;
  }

  .sub-visual .scroll-down i {
    width: 25px;
    height: 60px;
    background-image: url("/en/img/icon/scrolldown-icon-active.png");
  }

  .sub-visual.on .line {
    margin: 15px auto;
  }

  @keyframes scrollmotionLine {
    0% {
      height: 0;
    }

    100% {
      height: 55px;
    }
  }
}

@media (max-width: 768px) {
  .sub-visual {
    height: calc(100vh - 252px);
    margin-top: 50px;
  }

  .sub-visual .text span {
    font-size: 2.8rem;
  }

  .sub-visual .text {
    font-size: 2rem;
  }

  .sub-visual .scroll-down {
    margin: 55px auto 0;
  }

  .sub-visual .scroll-down i {
    width: 19px;
    height: 45px;
    background-image: url("/en/img/icon/scrolldown-icon-active.png");
  }

  .sub-visual.on .line {
    margin: 15px auto;
  }

  @keyframes scrollmotionLine {
    0% {
      height: 0;
    }

    100% {
      height: 45px;
    }
  }
}

@media (max-width: 500px) {
  .sub-visual {
    height: calc(100vh - 214px);
    margin-top: 40px;
  }

  .sub-visual .text span {
    font-size: 2.4rem;
  }

  .sub-visual .text {
    font-size: 1.8rem;
  }

  .sub-visual .scroll-down {
    margin: 45px auto 0;
  }

  .sub-visual.on .line {
    margin: 10px auto;
  }

  @keyframes scrollmotionLine {
    0% {
      height: 0;
    }

    100% {
      height: 35px;
    }
  }
}

/* Sub Common */
.section {
  padding: 120px 0;
}

.page-title {
  margin-top: 119px;
  margin-bottom: 77px;
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

.section-title {
  margin: -1px 0 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.section-title span {
  display: block;
  width: 40px;
  height: 2px;
  margin: 15px 0 36px;
  background-color: #0d8afc;
}

.info-text {
  margin-bottom: -7px;
  font-size: 2rem;
  line-height: 1.4;
}

.info-text span {
  font-weight: 700;
}

@media (max-width: 1200px) {
  .section {
    padding: 105px 0;
  }

  .page-title {
    margin-top: 105px;
    margin-bottom: 70px;
    font-size: 3.2rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .section-title span {
    width: 35px;
    margin: 15px 0 30px;
  }

  .info-text {
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 90px 0;
  }

  .page-title {
    margin-top: 90px;
    margin-bottom: 60px;
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-title span {
    width: 30px;
    margin: 12px 0 25px;
  }

  .info-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 75px 0;
  }

  .page-title {
    margin-top: 80px;
    margin-bottom: 50px;
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-title span {
    width: 25px;
    height: 1px;
    margin: 10px 0 20px;
  }

  .info-text {
    margin-bottom: -5px;
    font-size: 1.5rem;
  }
}

@media (max-width: 500px) {
  .section {
    padding: 60px 0;
  }

  .page-title {
    margin-top: 70px;
    margin-bottom: 40px;
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-title span {
    width: 20px;
    margin: 8px 0 15px;
  }

  .info-text {
    font-size: 1.4rem;
  }
}

/* Company - About - Common */
.banner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 430px;
  background-image: url("/en/img/sub/company/banner_img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-text .text {
  color: #fff;
  font-weight: 500;
  font-size: 4rem;
  line-height: 1.4;
  text-align: center;
}

.banner-text .text p {
  font-size: 6.4rem;
  line-height: 1;
  font-weight: 700;
}

.banner-text .text i {
  font-style: normal;
  font-weight: 800;
}

.banner-text .text em {
  font-style: normal;
  font-weight: 700;
}

.banner-text span {
  display: block;
}

@media (max-width: 1200px) {
  .banner-text {
    height: 400px;
  }

  .banner-text .text {
    font-size: 3.6rem;
  }

  .banner-text .text p {
    font-size: 5.6rem;
  }
}

@media (max-width: 1024px) {
  .banner-text {
    height: 350px;
  }

  .banner-text .text {
    font-size: 3.2rem;
  }

  .banner-text .text p {
    font-size: 4.6rem;
  }
}

@media (max-width: 768px) {
  .banner-text {
    height: 300px;
    padding: 0 15px;
  }

  .banner-text .text {
    font-size: 2.8rem;
  }

  .banner-text .text p {
    font-size: 3.6rem;
  }
}

@media (max-width: 500px) {
  .banner-text {
    height: 250px;
  }

  .banner-text .text {
    font-size: 2.4rem;
  }

  .banner-text .text p {
    font-size: 3rem;
  }
}

/* Company - About - About */
.about .section--01 {
  padding-bottom: 0;
}

.about .section--02 {
  position: relative;
  padding: 231px 0;
  background-image: url("/en/img/sub/company/about/section02_background.png");
  background-position: bottom 0 right 0;
  background-repeat: no-repeat;
  background-size: cover;
}

/* .section--02 .line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1310px;
  width: 100%;
  height: 100%;
  padding: 0 15px;
} */

.section--02 .line li {
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}

.about .section--02 .container {
  position: relative;
  z-index: 2;
}

.about .section--02 .section-title {
  color: #fff;
  text-align: center;
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 26px;
}

.about .section--02 .info-text {
  color: #fff;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
}

.about .section--02 .list {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  justify-content: space-around;
  color: #fff;
  margin: 89px 0 0;
}

.about .section--02 .list .icon {
  margin: 0 0 47px;
}

.about .section--02 .list li {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  /* max-width: 260px; */
  width: 25%;
}

.about .section--02 .list li:first-of-type {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.about .section--02 .list li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 279px;
  background-color: rgba(255, 255, 255, 0.1);
}

.about .section--02 .list li .text--01 {
  margin: 0 0 28px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}

.about .section--02 .list li .count_number {
  display: flex;
  align-items: baseline;
}

.about .section--02 .list .count {
  margin: 0 0 25px;
  font-size: 6.4rem;
  font-weight: 800;
  line-height: 1;
}

.about .section--02 .list span {
  font-size: 2.8rem;
  font-weight: 600;
}

.about .section--02 .list li .text--02 {
  font-size: 2rem;
  font-weight: 500;
  color: #bbbbbb;
  line-height: 1;
}

.about .section--03 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/en/img/sub/company/about/section03_background.png');
}

.about .section--03 .page-title {
  color: #fff;
  margin-top: -4px;
  margin-bottom: 64px;
}

.about .section--03 .sec-txt {
  margin-bottom: 53px;
  font-size: 4rem;
  text-align: center;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.02em;
}

.about .section--03 .sec-txt b {
  font-weight: 700;
}

.about .section--03 .sec-txt i {
  font-style: normal;
  font-weight: 600;
}

.about .section--03 .con-inner {
  display: flex;
  align-items: start;
  gap: 0 40px;
}

.about .section--03 .box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 156px;
  border-radius: 12px;
  border: 1px solid #0d8afc;
  overflow: hidden;
}

.about .section--03 .box > p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 215px;
  text-align: center;
  height: 100%;
  background-color: #0d8afc;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.about .section--03 .box .con {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 215px);
  height: 100%;
  padding: 5px 41px;
  background-color: #fff;
}

.about .section--03 .box span {
  display: block;
  position: relative;
  padding-left: 8px;
  font-size: 1.8rem;
  line-height: 1.777;
  font-weight: 500;
}

.about .section--03 .box span::after {
  content: "·";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: #0d8afc;
  font-weight: 900;
}

.about .section--03 .box .con p {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.about .section--03 .box .con p b {
  font-weight: 800;
  color: #0d8afc;
}

.about .section--03 .list {
  display: flex;
  align-items: center;
  margin-top: 64px;
  gap: 0 14px;
}

.about .section--03 .list li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 104px;
  max-width: 384px;
  width: calc(33.333% - 42px);
  border: 1px solid #0d8afc;
  border-radius: 12px;
  background-color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  color: #0d8afc;
}

.about .section--03 .list li.center {
  background-color: #0d8afc;
  color: #fff;
}

.about .section--03 .list li.arrow {
  width: 36px;
  height: 36px;
  position: relative;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.about .section--03 .list li.arrow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about .section--04 .list {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  margin: -20px;
}

.about .section--04 .list li {
  width: 25%;
  padding: 20px;
}

.about .section--04 .list li .thumb {
  width: 100%;
  aspect-ratio: 1.132 / 1;
  margin-bottom: 27px;
  position: relative;
  overflow: hidden;
}

.about .section--04 .list li .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about .section--04 .list li p {
  height: 68px;
  margin-bottom: 12px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.about .section--04 .list li p span {
  display: block;
}

.about .section--04 .list li > span {
  display: block;
  margin-bottom: -7px;
  font-size: 2rem;
  color: #666;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

@media (max-width: 1200px) {
  .about .page-title {
    margin: 0 0 60px;
  }
  
  .about .section--02 {
    padding: 210px 0;
  }

  .about .section--02 .section-title {
    font-size: 4.2rem;
    margin-bottom: 20px;
  }
  
  .about .section--02 .list {
    margin: 80px 0 0;
  }

  .about .section--02 .list .icon {
    margin: 0 0 40px;
  }

  .about .section--02 .list li .text--01 {
    margin: 0 0 25px;
    font-size: 2.2rem;
  }

  .about .section--02 .list .count {
    margin: 0 0 20px;
    font-size: 5.6rem;
  }

  .about .section--02 .list span {
    font-size: 2.4rem;
  }

  .about .section--02 .list li .text--02 {
    font-size: 1.8rem;
  }

  .about .section--03 .page-title {
    margin-top: -3px;
    margin-bottom: 55px;
  }
  
  .about .section--03 .sec-txt {
    margin-bottom: 45px;
    font-size: 3.6rem;
  }
  
  .about .section--03 .con-inner {
    gap: 0 30px;
  }
  
  .about .section--03 .box {
    height: 140px;
  }
  
  .about .section--03 .box > p {
    width: 180px;
    font-size: 2.4rem;
  }
  
  .about .section--03 .box .con {
    width: calc(100% - 180px);
    padding: 5px 30px;
  }
  
  .about .section--03 .box span {
    padding-left: 8px;
    font-size: 1.6rem;
  }
  
  .about .section--03 .box .con p {
    font-size: 2.2rem;
  }
  
  .about .section--03 .list {
    margin-top: 55px;
    gap: 0 12px;
  }

  .about .section--03 .list li {
    height: 95px;
    width: calc(33.333% - 36px);
    font-size: 2.2rem;
  }

  .about .section--03 .list li.arrow {
    width: 30px;
    height: 30px;
  }
  
  .about .section--04 .list {
    margin: -15px;
  }
  
  .about .section--04 .list li {
    padding: 15px;
  }
  
  .about .section--04 .list li .thumb {
    margin-bottom: 20px;
  }
  
  .about .section--04 .list li p {
    margin-bottom: 10px;
    font-size: 2.4rem;
  }
  
  .about .section--04 .list li > span {
    margin-bottom: -6px;
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .about .page-title {
    margin: 0 0 50px;
  }
  
  .about .section--02 {
    padding: 190px 0;
  }

  .about .section--02 .section-title {
    font-size: 3.6rem;
    margin-bottom: 15px;
  }
  
  .section--02 .line li:nth-child(-n + 2) {
    display: none;
  }

  .about .section--02 .list {
    margin: 70px 0 0;
  }

  .about .section--02 .list li {
    max-width: 50%;
    width: 50%;
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about .section--02 .list li:nth-child(-n + 2) {
    padding: 0 0 30px;
  }
  
  
  .about .section--02 .list li:first-of-type {
    border-left: none;
  }
  
  .about .section--02 .list li:nth-of-type(2n) {
    border-right: none;
  }

  .about .section--02 .list li::after {
    display: none;
  }

  .about .section--02 .list .icon {
    margin: 0 0 30px;
  }

  .about .section--02 .list li .text--01 {
    margin: 0 0 20px;
    font-size: 2rem;
  }

  .about .section--02 .list li .text--01 {
    font-size: 1.8rem;
  }

  .about .section--02 .list .count {
    margin: 0 0 15px;
    font-size: 4.6rem;
  }

  .about .section--02 .list span {
    font-size: 2.2rem;
  }

  .about .section--02 .list li .text--02 {
    font-size: 1.6rem;
  }

  .about .section--03 .page-title {
    margin-top: -2px;
    margin-bottom: 45px;
  }
  
  .about .section--03 .sec-txt {
    margin-bottom: 35px;
    font-size: 3.2rem;
  }
  
  .about .section--03 .con-inner {
    gap: 0 25px;
  }
  
  .about .section--03 .box {
    height: 125px;
  }
  
  .about .section--03 .box > p {
    width: 150px;
    font-size: 2.2rem;
  }
  
  .about .section--03 .box .con {
    width: calc(100% - 150px);
    padding: 5px 25px;
  }
  
  .about .section--03 .box span {
    padding-left: 6px;
    font-size: 1.5rem;
  }
  
  .about .section--03 .box .con p {
    font-size: 2rem;
  }
    
  .about .section--03 .list {
    margin-top: 45px;
    gap: 0 10px;
  }

  .about .section--03 .list li {
    height: 85px;
    width: calc(33.333% - 30px);
    font-size: 2rem;
  }

  .about .section--03 .list li.arrow {
    width: 26px;
    height: 26px;
  }
  
  .about .section--04 .list {
    margin: -12px;
  }
  
  .about .section--04 .list li {
    width: 50%;
    padding: 12px;
  }
  
  .about .section--04 .list li .thumb {
    margin-bottom: 15px;
  }
  
  .about .section--04 .list li p {
    height: 26px;
    margin-bottom: 10px;
    font-size: 2.2rem;
  }
  
  .about .section--04 .list li > span {
    margin-bottom: -5px;
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .about .page-title {
    margin: 0 0 40px;
  }
  
  .about .section--02 {
    position: relative;
    padding: 170px 0;
    background-image: url('/en/img/sub/company/about/section02_background-mo.png');
  }
  
  .about .section--02::after {
    content: "DONGWON PIPE";
    display: block;
    position: absolute;
    right: 0;
    bottom: -8px;
    text-align: right;
    font-size: 6.8rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    opacity: 0.05;
  }
  
  .about .section--02 .section-title {
    font-size: 3.2rem;
    margin-bottom: 12px;
  }

  .about .section--02 .info-text br {
    display: block;
  }

  .about .section--02 .list {
    margin: 60px 0 0;
  }

  .about .section--02 .list li:nth-child(-n + 2) {
    padding: 0 0 35px;
  }

  .about .section--02 .list .icon {
    width: 60px;
    height: 60px;
    margin: 0 0 20px;
  }

  .about .section--02 .list li .text--01 {
    margin: 0 0 15px;
    font-size: 1.6rem;
  }

  .about .section--02 .list .count {
    margin: 0 0 12px;
    font-size: 3.6rem;
  }

  .about .section--02 .list span {
    font-size: 2rem;
  }

  .about .section--02 .list li .text--02 {
    font-size: 1.5rem;
  }

  .about .section--03 .page-title {
    margin-top: -1px;
    margin-bottom: 35px;
  }
  
  .about .section--03 .sec-txt {
    margin-bottom: 30px;
    font-size: 2.8rem;
  }
  
  .about .section--03 .sec-txt br {
    display: none;
  }
  
  .about .section--03 .con-inner {
    flex-direction: column;
    align-items: start;
    gap: 20px 0;
  }
  
  .about .section--03 .box {
    height: 110px;
  }
  
  .about .section--03 .box > p {
    width: 140px;
    font-size: 2rem;
  }
  
  .about .section--03 .box .con {
    width: calc(100% - 140px);
    padding: 5px 20px;
  }
  
  .about .section--03 .box span {
    padding-left: 5px;
    font-size: 1.4rem;
  }
  
  .about .section--03 .box .con p {
    font-size: 1.8rem;
  }
  
  .about .section--03 .list {
    margin-top: 35px;
    gap: 0 10px;
  }

  .about .section--03 .list li {
    height: 75px;
    width: calc(33.333% - 28px);
    font-size: 1.8rem;
  }

  .about .section--03 .list li.arrow {
    width: 22px;
    height: 22px;
  }
  
  .about .section--04 .list {
    margin: -12px;
  }
  
  .about .section--04 .list li {
    padding: 12px;
  }
  
  .about .section--04 .list li .thumb {
    margin-bottom: 15px;
  }
  
  .about .section--04 .list li p {
    margin-bottom: 10px;
    font-size: 2rem;
  }
  
  .about .section--04 .list li > span {
    margin-bottom: -4px;
    font-size: 1.5rem;
  }
}

@media(max-width:620px) {
  .about .section--04 .list li p {
    height: 48px;
  }
  
}

@media (max-width: 540px) {
  .about .page-title {
    margin: 0 0 40px;
  }
  
  .about .section--02 {
    padding: 150px 0;
  }
  
  .about .section--02::after {
    bottom: -6px;
    font-size: 4.6rem;
  }
  
  .about .section--02 .section-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }

  .about .section--02 .list {
    margin: 50px 0 0;
  }

  .about .section--02 .list li:nth-child(-n + 2) {
    padding: 0 0 30px;
  }

  .about .section--02 .list li .count_number {
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
  }

  .about .section--02 .list .icon {
    width: 55px;
    height: 55px;
    margin: 0 0 15px;
  }

  .about .section--02 .list li .text--01 {
    margin: 0 0 12px;
    font-size: 1.6rem;
    text-align: center;
  }

  .about .section--02 .list .count {
    font-size: 3rem;
  }

  .about .section--02 .list span {
    font-size: 1.8rem;
  }

  .about .section--02 .list li .text--02 {
    font-size: 1.4rem;
    text-align: center;
  }

  .about .section--03 .page-title {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  
  .about .section--03 .sec-txt {
    margin-bottom: 25px;
    font-size: 2.4rem;
  }
  
  .about .section--03 .con-inner {
    gap: 15px 0;
  }
  
  .about .section--03 .box {
    height: 105px;
  }
  
  .about .section--03 .box > p {
    width: 120px;
    font-size: 1.8rem;
  }
  
  .about .section--03 .box .con {
    width: calc(100% - 120px);
    padding: 5px 15px;
  }
  
  .about .section--03 .box span {
    font-size: 1.3rem;
  }
  
  .about .section--03 .box .con p {
    font-size: 1.6rem;
  }
  
  .about .section--03 .list {
    flex-direction: column;
    justify-content: center;
    margin-top: 30px;
    gap: 8px 0;
  }

  .about .section--03 .list li {
    height: 65px;
    max-width: 100%;
    width: 100%;
    font-size: 1.6rem;
  }

  .about .section--03 .list li.arrow {
    width: 24px;
    height: 24px;
  }
  
  .about .section--03 .list li.arrow {
    transform: rotate(90deg);
  }
  
  .about .section--04 .list {
    margin: -6px;
    gap: 5px 0;
  }
  
  .about .section--04 .list li {
    padding: 6px;
  }
  
  .about .section--04 .list li .thumb {
    margin-bottom: 12px;
  }
  
  .about .section--04 .list li p {
    height: 42px;
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
  
  .about .section--04 .list li > span {
    margin-bottom: -3px;
    font-size: 1.4rem;
  }
}


/* Company - About - Ceo */
.ceo .section--01 {
  padding: 120px 0 0;
}

.ceo .banner-text .text--01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 665px;
  width: 100%;
  margin: 0 0 -45px;
}

.ceo .banner-text .text--02 {
  max-width: 600px;
  width: 100%;
}

.ceo .section--02 {
  padding: 120px 0 315px;
}

.ceo .section--02 .container {
  position: relative;
}

.ceo .section--02 .ceo_img {
  max-width: 720px;
  width: 100%;
  /* margin-bottom: 335px; */
}

.ceo .section--02 .ceo_img .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(770 / 720 * 100%);
  overflow: hidden;
}

.ceo .section--02 .ceo_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ceo .section--02 .ceo_text-wrap {
  position: absolute;
  top: 40px;
  right: 0;
  max-width: 640px;
  width: 100%;
  padding: 60px 63px 60px 40px;
  background-color: #fff;
  box-shadow: 2px 1px 10px 1px #eaeaea;
}

.ceo .section--02 .ceo_text-wrap .text {
  margin: -7px 0 40px;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.6;
}

.ceo .section--02 .ceo_text-wrap .text:last-of-type {
  margin: -9px 0 25px;
}

.ceo .section--02 .ceo_text-wrap .text.text--01 {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.ceo .section--02 .ceo_text-wrap .logo {
  margin: 0 0 -5px;
  text-align: right;
}

.ceo .section--02 .back_line {
  position: relative;
  z-index: -1;
  max-width: 1060px;
  width: 100%;
  height: 0;
  padding-top: calc(180 / 1270 * 100%);
  margin: -100px 0 0 -320px;
  overflow: hidden;
}

.ceo .section--02 .back_line img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) {
  .ceo .section--01 {
    padding: 105px 0 0;
  }

  .ceo .section--02 {
    padding: 105px 0 210px;
  }

  .ceo .section--02 .ceo_text-wrap {
    max-width: 540px;
    padding: 50px 53px 50px 35px;
  }

  .ceo .section--02 .ceo_text-wrap .text.text--01 {
    font-size: 2.4rem;
  }

  .ceo .section--02 .ceo_text-wrap .text {
    margin: -7px 0 35px;
    font-size: 1.8rem;
  }

  .ceo .section--02 .ceo_text-wrap .text:last-of-type {
    margin: -9px 0 20px;
  }
}

@media (max-width: 1024px) {
  .ceo .section--01 {
    padding: 90px 0 0;
  }

  .ceo .section--02 {
    padding: 90px 0;
  }
  .ceo .section--02 .ceo_img {
    width: 70%;
  }

  .ceo .section--02 .ceo_text-wrap {
    position: static;
    max-width: 100%;
    margin-top: 50px;
    padding: 40px 43px 40px 30px;
  }

  .ceo .section--02 .ceo_text-wrap .text.text--01 {
    font-size: 2.2rem;
  }

  .ceo .section--02 .ceo_text-wrap .text {
    margin: -7px 0 30px;
    font-size: 1.6rem;
  }

  .ceo .section--02 .ceo_text-wrap .text br {
    display: none;
  }

  .ceo .section--02 .ceo_text-wrap .text:last-of-type {
    margin: -9px 0 15px;
  }

  .ceo .section--02 .ceo_text-wrap .logo img {
    width: 163px;
    height: 38px;
  }

  .ceo .section--02 .back_line {
    position: absolute;
    top: 62%;
    left: 0;
    transform: translateY(-50%);
  }
}

@media (max-width: 768px) {
  .ceo .section--01 {
    padding: 75px 0 0;
  }

  .ceo .banner-text .text--01 {
    max-width: 480px;
    margin: 0 0 -40px;
  }

  .ceo .banner-text .text--02 {
    max-width: 460px;
  }
  
  .ceo .section--02 {
    padding: 75px 0;
  }

  .ceo .section--02 .ceo_text-wrap {
    margin-top: 40px;
    padding: 30px 33px 30px 25px;
  }

  .ceo .section--02 .ceo_text-wrap .text.text--01 {
    font-size: 2rem;
  }

  .ceo .section--02 .ceo_text-wrap .text {
    margin: -4px 0 25px;
    font-size: 1.5rem;
  }

  .ceo .section--02 .ceo_text-wrap .text:last-of-type {
    margin: -4px 0 12px;
  }

  .ceo .section--02 .ceo_img .img {
    overflow: visible;
  }

  .ceo .section--02 .ceo_img .img::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: -15px;
    transform: translateY(50%);
    z-index: -1;
    max-width: 1060px;
    width: 90%;
    height: 0;
    padding-top: calc(180 / 1060 * 100%);
    background-image: url("/en/img/sub/company/ceo/section03_img02.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .ceo .section--02 .back_line {
    display: none;
  }
}

@media (max-width: 500px) {
  .ceo .section--01 {
    padding: 60px 0 0;
  }

  .ceo .banner-text .text--01 {
    max-width: 440px;
    margin: 0 0 -35px;
  }

  .ceo .banner-text .text--02 {
    max-width: 430px;
    padding: 0 15px;
  }

  .ceo .banner-text .text--02 br {
    display: none;
  }

  .ceo .section--02 {
    padding: 60px 0 50px;
  }

  .ceo .section--02 .ceo_img {
    width: 85%;
  }

  .ceo .section--02 .ceo_text-wrap {
    margin-top: 30px;
    padding: 20px 23px 20px 20px;
  }

  .ceo .section--02 .ceo_text-wrap .text.text--01 {
    font-size: 1.8rem;
  }

  .ceo .section--02 .ceo_text-wrap .text {
    margin: -2px 0 20px;
    font-size: 1.4rem;
  }

  .ceo .section--02 .ceo_text-wrap .text:last-of-type {
    margin: -2px 0 10px;
  }

  .ceo .section--02 .ceo_img .img::after {
    bottom: 0;
    left: -15px;
    transform: translateY(50%);
    width: 90%;
  }

  .ceo .section--02 .ceo_text-wrap .logo img {
    width: 122px;
    height: 29px;
  }
}


/* Company - About - History */
.history .section--01 {
  padding: 120px 0 0;
}

.history .section--02 {
  padding: 80px 0 120px;
}

.history .section--02 .historyTab_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 72px;
  padding: 0 50px;
  margin-bottom: 80px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 1px 1px 10px 2px #eaeaea;
}

.history .section--02 .historyTab__item {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 186px;
  width: 100%;
  height: 48px;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease-out;
}

.history .section--02 .historyTab__item.on {
  background-color: #0d8afc;
  color: #fff;
  font-weight: 700;
}

.history .section--02 .historyTab__contents {
  display: none;
  align-items: start;
  margin: 0 0 -10px;
  transition: display 0.3s ease-out;
}

.history .section--02 .historyTab__contents .img-wrap {
  position: relative;
  max-width: 600px;
  width: 100%;
  height: 0;
  padding-top: calc(480 / 1280 * 100%);
  margin: 0 80px 0 0;
}

.history .section--02 .historyTab__contents .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.history .section--02 .historyTab__contents .img-wrap .back_line {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: block;
  width: 300px;
  height: 180px;
  z-index: -1;
  background-image: url("/en/img/sub/company/history/section02_back_line.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.history .section--02 .title-year {
  margin: -5px 0 65px;
  font-size: 4rem;
  font-weight: 600;
  color: #cfcfcf;
  line-height: 1;
}

.history .section--02 .title-year span {
  font-weight: 700;
}

.history .section--02 .conText_item {
  margin: 0 0 30px;
  line-height: 1.6;
  font-size: 2rem;
}

.history .section--02 .conText_item:last-of-type {
  margin: 0;
}

.history .section--02 .conText_item .item {
  display: flex;
  align-items: start;
}

.history .section--02 .conText_item .item > span {
  display: block;
  max-width: 90px;
  width: 100%;
  margin: 0 45px 0 0;
  font-weight: 600;
  color: #0d8afc;
}

.history .section--02 .conText_item .item p {
  position: relative;
  width: 465px;
}

.history .section--02 .conText_item .item p span {
  display: block;
  margin: -6px 0 0;
}

.history .section--02 .conText_item .item p::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: -6px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #0d8afc;
}

.history .section--02 .historyTab__contents.on {
  display: flex;
}

@media (max-width: 1200px) {
  .history .section--01 {
    padding: 105px 0 0;
  }

  .history .section--02 {
    padding: 70px 0 105px;
  }

  .history .section--02 .historyTab_list {
    height: 70px;
    padding: 0 40px;
    margin-bottom: 70px;
  }

  .history .section--02 .historyTab__item {
    max-width: 180px;
    height: 45px;
    font-size: 1.8rem;
  }

  .history .section--02 .historyTab__contents .img-wrap {
    max-width: 500px;
    margin: 0 60px 0 0;
  }

  .history .section--02 .historyTab__contents .img-wrap .back_line {
    bottom: -20px;
    right: -20px;
    display: block;
    width: 250px;
    height: 160px;
  }

  .history .section--02 .title-year {
    margin: -5px 0 55px;
    font-size: 3.6rem;
  }

  .history .section--02 .conText_item {
    margin: 0 0 25px;
    font-size: 1.8rem;
  }

  .history .section--02 .conText_item .item > span {
    max-width: 85px;
    margin: 0 35px 0 0;
  }

  .history .section--02 .conText_item .item p {
    width: 400px;
  }

  .history .section--02 .conText_item .item p::before {
    top: 12px;
    left: -6px;
  }
}

@media (max-width: 1024px) {
  .history .section--01 {
    padding: 90px 0 0;
  }

  .history .section--02 {
    padding: 60px 0 90px;
  }

  .history .section--02 .historyTab_list {
    height: 65px;
    padding: 0 30px;
    margin-bottom: 60px;
    border-radius: 15px;
  }

  .history .section--02 .historyTab__item {
    max-width: 160px;
    height: 40px;
    font-size: 1.6rem;
    border-radius: 8px;
  }

  .history .section--02 .historyTab__contents .img-wrap {
    max-width: 40%;
    margin: 0 40px 0 0;
  }

  .history .section--02 .historyTab__contents .img-wrap .back_line {
    bottom: -15px;
    right: -15px;
    display: block;
    width: 230px;
    height: 140px;
  }

  .history .section--02 .title-year {
    margin: -5px 0 45px;
    font-size: 3.2rem;
  }

  .history .section--02 .conText_item {
    margin: 0 0 20px;
    font-size: 1.6rem;
  }

  .history .section--02 .conText_item .item > span {
    max-width: 75px;
    margin: 0 25px 0 0;
  }

  .history .section--02 .conText_item .item p {
    width: 350px;
  }

  .history .section--02 .conText_item .item p::before {
    top: 12px;
    left: -6px;
  }
}

@media (max-width: 768px) {
  .history .section--01 {
    padding: 75px 0 0;
  }

  .history .section--02 {
    padding: 60px 0 75px;
  }

  .history .section--02 .historyTab_list {
    height: 60px;
    padding: 0 8px;
    margin-bottom: 60px;
    border-radius: 12px;
  }

  .history .section--02 .historyTab__item {
    max-width: 140px;
    height: 35px;
    font-size: 1.5rem;
    border-radius: 6px;
  }

  .history .section--02 .historyTab__contents .img-wrap {
    max-width: 100%;
    width: calc(100% - 10px);
    padding-top: calc(614 / 768 * 100%);
    margin: 0 0 30px;
  }

  .history .section--02 .historyTab__contents .img-wrap .back_line {
    bottom: -10px;
    right: -10px;
    width: 210px;
    height: 120px;
  }

  .history .section--02 .title-year {
    margin: -5px 0 35px;
    font-size: 2.8rem;
  }

  .history .section--02 .historyTab__conBox {
    width: 100%;
  }

  .history .section--02 .conText_item {
    width: 100%;
    margin: 0 0 20px;
    font-size: 1.5rem;
  }

  .history .section--02 .conText_item .item > span {
    max-width: 75px;
    margin: 0 20px 0 0;
  }

  .history .section--02 .conText_item .item p {
    max-width: calc(100% -100px);
    width: 100%;
  }

  .history .section--02 .conText_item .item p::before {
    top: 12px;
    left: -6px;
  }

  .history .section--02 .historyTab__contents.on {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .history .section--01 {
    padding: 60px 0 0;
  }

  .history .section--02 {
    padding: 50px 0 60px;
  }

  .history .section--02 .historyTab_list {
    flex-direction: column;
    min-height: 60px;
    height: 100%;
    padding: 10px;
    margin-bottom: 40px;
    border-radius: 12px;
  }

  .history .section--02 .historyTab__item {
    max-width: 100%;
    height: 35px;
    font-size: 1.4rem;
    border-radius: 6px;
  }

  .history .section--02 .historyTab__contents .img-wrap {
    margin: 0 0 25px;
  }

  .history .section--02 .historyTab__contents .img-wrap .back_line {
    bottom: -10px;
    right: -10px;
    width: 210px;
    height: 120px;
  }

  .history .section--02 .title-year {
    margin: -5px 0 30px;
    font-size: 2.4rem;
  }

  .history .section--02 .conText_item {
    margin: 0 0 15px;
    font-size: 1.4rem;
  }

  .history .section--02 .conText_item .item > span {
    margin: 0 15px 0 0;
  }

  .history .section--02 .conText_item .item p::before {
    top: 9px;
    left: -6px;
  }
}


/* Company - About - Ci */
.ci .img {
  position: relative;
  max-width: 620px;
  width: 50%;
  height: 0;
  padding-top: calc(380 / 1280 * 100%);
  overflow: hidden;
}

.ci .img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.ci .section--01 {
  padding: 120px 0 0;
}

.ci .conText {
  margin-top: 30px;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 500;
}

.ci .section--02 {
  background-color: #f9f9f9;
}

.ci .section--02 .container {
  display: flex;
  justify-content: space-between;
}

.ci .section--02 .text-wrap {
  max-width: 560px;
  width: 48%;
}

.ci .section--02 .conText {
  font-weight: 400;
}

.ci .section--02 .conText p:first-of-type {
  margin-bottom: 35px;
  font-weight: 500;
}

.ci .section--02 .btn--pdfDown {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 48px;
  margin-top: 35px;
  border-radius: 10px;
  border: 1px solid #888;
  font-size: 1.8rem;
  font-weight: 500;
  color: #888;
  transition: all 0.3s ease-out;
}

.ci .section--02 .btn--pdfDown i {
  width: 15px;
  height: 15px;
  margin-left: 20px;
  background-image: url("/en/img/icon/download-btn-icon.png");
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease-out;
}

.ci .section--03 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ci .section--03 .text-wrap,
.ci .section--04 .text-wrap {
  max-width: 620px;
  width: 48%;
}

.ci .section--04 {
  background-color: #f9f9f9;
}

.ci .section--04 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ci .contents-area--02 .item_wrap {
  margin-right: 60px;
}

@media (min-width: 1201px) {
  .ci .section--02 .btn--pdfDown:hover {
    background-color: #0d8afc;
    color: #fff;
    border-color: #0d8afc;
  }

  .ci .section--02 .btn--pdfDown:hover i {
    background-image: url("/en/img/icon/download-btn-icon_hover.png");
  }
}

@media (max-width: 1200px) {
  .ci .section--01 {
    padding: 105px 0 0;
  }

  .ci .conText {
    margin-top: 25px;
    font-size: 1.8rem;
  }

  .ci .section--02 .conText p:first-of-type {
    margin-bottom: 30px;
  }

  .ci .section--02 .btn--pdfDown {
    width: 220px;
    height: 45px;
    margin-top: 30px;
    font-size: 1.6rem;
  }

  .ci .section--02 .btn--pdfDown i {
    margin-left: 15px;
  }

  .ci .contents-area--02 .item_wrap {
    margin-right: 50px;
  }
}

@media (max-width: 1024px) {
  .ci .section--01 {
    padding: 90px 0 0;
  }

  .ci .conText {
    margin-top: 20px;
    font-size: 1.6rem;
  }

  .ci .section--02 .conText p:first-of-type {
    margin-bottom: 25px;
  }

  .ci .section--02 .btn--pdfDown {
    width: 200px;
    height: 40px;
    margin-top: 25px;
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .ci .section--01 {
    padding: 75px 0 0;
  }

  .ci .conText {
    margin-top: 15px;
    font-size: 1.5rem;
  }

  .ci .section--02 .container {
    align-items: center;
  }

  .ci .section--02 .conText p:first-of-type {
    margin-bottom: 20px;
  }

  .ci .section--02 .btn--pdfDown {
    width: 180px;
    height: 35px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 1.4rem;
  }

  .ci .section--02 .btn--pdfDown i {
    width: 12px;
    height: 12px;
    margin-left: 10px;
  }

  .ci .section--03 .text-wrap br,
  .ci .section--04 .text-wrap br {
    display: none;
  }
}

@media (max-width: 500px) {
  .ci .img {
    max-width: 100%;
    width: 100%;
    padding-top: calc(288 / 500 * 100%);
  }

  .ci .section--01 {
    padding: 60px 0 0;
  }

  .ci .conText {
    margin-top: 12px;
    font-size: 1.4rem;
  }

  .ci .section--02 .container,
  .ci .section--04 .container {
    flex-direction: column;
    align-items: start;
  }

  .ci .section--02 .text-wrap,
  .ci .section--03 .text-wrap,
  .ci .section--04 .text-wrap {
    max-width: 100%;
    width: 100%;
    margin: 0 0 15px;
  }

  .ci .section--02 .conText p:first-of-type {
    margin-bottom: 15px;
  }

  .ci .section--02 .btn--pdfDown {
    width: 160px;
    height: 30px;
    margin: 15px 0;
    border-radius: 8px;
    font-size: 1.3rem;
  }

  .ci .section--03 .container {
    flex-direction: column-reverse;
    align-items: start;
  }
}



/* Company - Global - network */
.network .section--01 {
  padding: 120px 0 0;
}

.network .section--01 .page-title {
  position: relative;
}

.network .section--01 .page-title .sub-navigation-inner {
  justify-content: end;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1310px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 15px;
}

.network .section--01 .text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 430px;
  padding: 0 15px;
  background-image: url("/en/img/sub/company/network/section01_background.png");
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

.network .section--01 .text-wrap  p {
  max-width: 1230px;
  width: 100%;
}

.network .section--01 .text-wrap span {
  font-weight: 700;
}

.network .section--02 {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.network .section--02 .map_img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(838 / 1280 * 100%);
  overflow: hidden;
}

.network .section--02 .map_img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.network .section--03 {
  padding: 80px 0 120px;
}

.network .section--03 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px 0;
}

.network .section--03 .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  width: 49%;
  padding: 35px 40px;
  border: 1px solid #e0e0e0;
}

.network .section--03 .item:first-of-type {
  border-color: #0101f9;
}

.network .section--03 .con-tit {
  display: flex;
  align-items: center;
  margin: 0 0 33px;
}

.network .section--03 .con-tit i {
  display: block;
  width: 28px;
  height: 24px;
  margin-right: 15px;
  background-image: url("/en/img/sub/company/network/workplace_icon.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.network .section--03 .con-tit i.main-icon {
  background-image: url("/en/img/sub/company/network/workplace_icon-main.png");
}

.network .section--03 .con-tit p {
  font-size: 2.8rem;
  font-weight: 700;
}

.network .section--03 .conBox {
  margin: 0 0 18px;
  padding-left: 8px;
}

.network .section--03 .conBox:last-of-type {
  margin: 0;
}

.network .section--03 .conBox p {
  position: relative;
  margin: 0 0 7px;
  font-size: 2rem;
  font-weight: 500;
}

.network .section--03 .conBox p::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -9px;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #0d8afc;
}

.network .section--03 .conBox span {
  display: block;
  font-size: 1.8rem;
  font-weight: 300;
  color: #666;
}

.network .section--03 .con-tel {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 400;
  color: #666;
}

.network .section--03 .con-tel a {
  color: #666;
}

.network .section--03 .con-tel span {
  display: block;
  margin: 0 5px;
}

@media (max-width: 1200px) {
  .network .section--01 {
    padding: 105px 0 0;
  }

  .network .section--01 .page-title .sub-navigation-inner {
    position: static;
    justify-content: center;
    transform: translate(0);
    margin-top: 35px;
    background-color: #fff;
  }
  
  .network .section--01 .page-title .sub-navigation-depth:first-of-type {
    padding-left: 0;
  }
  
  .network .section--01 .text-wrap {
    height: 400px;
    font-size: 3.6rem;
  }

  .network .section--02 {
    padding: 70px 0;
  }

  .network .section--03 {
    padding: 70px 0 105px;
  }

  .network .section--03 .list {
    gap: 35px 0;
  }

  .network .section--03 .item {
    padding: 30px 35px;
  }

  .network .section--03 .con-tit {
    margin: 0 0 30px;
  }

  .network .section--03 .con-tit i {
    width: 22px;
    height: 19px;
    margin-right: 10px;
  }

  .network .section--03 .con-tit p {
    font-size: 2.4rem;
  }

  .network .section--03 .conBox {
    margin: 0 0 15px;
    padding-left: 5px;
  }

  .network .section--03 .conBox p {
    margin: 0 0 5px;
    font-size: 1.8rem;
  }

  .network .section--03 .conBox span {
    font-size: 1.6rem;
  }

  .network .section--03 .con-tel {
    font-size: 1.6rem;
  }
}

@media (max-width: 1024px) {
  .network .section--01 {
    padding: 90px 0 0;
  }
  
  .network .section--01 .page-title .sub-navigation-inner {
    margin-top: 30px;
  }

  .network .section--01 .text-wrap {
    height: 350px;
    font-size: 3.2rem;
  }

  .network .section--02 {
    padding: 60px 0;
  }

  .network .section--03 {
    padding: 60px 0 90px;
  }

  .network .section--03 .list {
    gap: 30px 0;
  }

  .network .section--03 .item {
    padding: 25px 25px;
  }

  .network .section--03 .con-tit {
    margin: 0 0 25px;
  }

  .network .section--03 .con-tit p {
    font-size: 2.2rem;
  }

  .network .section--03 .conBox p {
    font-size: 1.6rem;
  }

  .network .section--03 .conBox span {
    font-size: 1.5rem;
  }

  .network .section--03 .con-tel {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .network .section--01 {
    padding: 75px 0 0;
  }
  
  .network .section--01 .page-title .sub-navigation-inner {
    margin-top: 25px;
  }

  .network .section--01 .text-wrap {
    height: 300px;
    font-size: 2.8rem;
  }

  .network .section--01 .text-wrap br {
    display: none;
  }

  .network .section--02 {
    padding: 50px 0;
  }

  .network .section--03 {
    padding: 60px 0 90px;
  }

  .network .section--03 .list {
    gap: 25px 0;
  }

  .network .section--03 .item {
    padding: 20px;
  }

  .network .section--03 .con-tit {
    margin: 0 0 20px;
  }

  .network .section--03 .con-tit i {
    width: 20px;
    height: 17px;
    margin-right: 8px;
  }

  .network .section--03 .con-tit p {
    font-size: 2rem;
  }

  .network .section--03 .conBox {
    margin: 0 0 8px;
  }

  .network .section--03 .conBox p {
    font-size: 1.5rem;
  }

  .network .section--03 .conBox span {
    font-size: 1.4rem;
  }

  .network .section--03 .con-tel {
    font-size: 1.4rem;
  }
}

@media (max-width: 500px) {
  .network .section--01 {
    padding: 60px 0 0;
  }

  .network .section--01 .page-title .sub-navigation-inner {
    margin-top: 20px;
  }
  
  .network .section--01 .text-wrap {
    height: 250px;
    font-size: 2.4rem;
  }

  .network .section--02 {
    padding: 40px 0;
  }

  .network .section--03 {
    padding: 50px 0 75px;
  }

  .network .section--03 .list {
    gap: 15px 0;
  }

  .network .section--03 .item {
    width: 100%;
    padding: 15px;
  }

  .network .section--03 .con-tit {
    margin: 0 0 15px;
  }

  .network .section--03 .con-tit p {
    font-size: 1.8rem;
  }

  .network .section--03 .conBox p {
    font-size: 1.4rem;
  }

  .network .section--03 .conBox span {
    font-size: 1.3rem;
  }

  .network .section--03 .con-tel {
    font-size: 1.3rem;
  }
}
/* E:Network */

/* Company - Global - global */
.global .section--01 {
  padding: 120px 0 0;
}


.global .section--01 .page-title {
  position: relative;
}

.global .section--01 .page-title .sub-navigation-inner {
  justify-content: end;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1310px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 15px;
}

.global .section--01 .text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 430px;
  padding: 0 15px;
  background-image: url("/child/img/sub/company/network/section01_background.png");
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

.global .section--01 .text-wrap p {
  max-width: 1230px;
  width: 100%;
}

.global .section--01 .text-wrap span {
  font-weight: 700;
}

.global .section--02 {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.global .section--02 .map_img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(888 / 1280 * 100%);
  overflow: hidden;
}

.global .section--02 .map_img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.global .section--03 {
  padding: 80px 0 120px;
}

.global .section--03 .demestic-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px 0;
}

.global .section--03 .domestic_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  width: 49%;
  min-height: 392px;
  height: 100%;
  padding: 35px 40px;
  border: 1px solid #e0e0e0;
}

.global .section--03 .domestic__name {
  display: flex;
  align-items: center;
  margin: 0 0 33px;
}

.global .section--03 .domestic__name i {
  display: block;
  width: 28px;
  height: 24px;
  margin-right: 15px;
  background-image: url("/child/img/sub/company/network/workplace_icon.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.global .section--03 .domestic__name p {
  font-size: 2.8rem;
  font-weight: 700;
}

.global .section--03 .domestic__contents {
  margin: 0 0 17px;
  padding-left: 8px;
}

.global .section--03 .domestic__contents:last-of-type {
  margin: 0;
}

.global .section--03 .domestic__contents p {
  position: relative;
  margin: 0 0 7px;
  font-size: 2rem;
  font-weight: 500;
}

.global .section--03 .domestic__contents p::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -9px;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #0d8afc;
}

.global .section--03 .domestic__contents span {
  display: block;
  font-size: 1.8rem;
  font-weight: 300;
  color: #666;
}

.global .section--03 .domestic__tel {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 400;
  color: #666;
}

.global .section--03 .domestic__tel a {
  color: #666;
}

.global .section--03 .domestic__tel span {
  display: block;
  margin: 0 5px;
}

@media (max-width: 1200px) {
  .global .section--01 {
    padding: 105px 0 0;
  }

  .global .section--01 .page-title .sub-navigation-inner {
    position: static;
    justify-content: center;
    transform: translate(0);
    margin-top: 35px;
    background-color: #fff;
  }
  
  .global .section--01 .page-title .sub-navigation-depth:first-of-type {
    padding-left: 0;
  }
  
  .global .section--01 .text-wrap {
    height: 400px;
    font-size: 3.6rem;
  }

  .global .section--02 {
    padding: 70px 0;
  }

  .global .section--03 {
    padding: 70px 0 105px;
  }

  .global .section--03 .demestic-list {
    gap: 35px 0;
  }

  .global .section--03 .domestic_item {
    padding: 30px 35px;
    min-height: 365px;
  }

  .global .section--03 .domestic__name {
    margin: 0 0 30px;
  }

  .global .section--03 .domestic__name i {
    width: 22px;
    height: 19px;
    margin-right: 10px;
  }

  .global .section--03 .domestic__name p {
    font-size: 2.6rem;
  }

  .global .section--03 .domestic__contents {
    margin: 0 0 15px;
    padding-left: 5px;
  }

  .global .section--03 .domestic__contents p {
    margin: 0 0 5px;
    font-size: 1.8rem;
  }

  .global .section--03 .domestic__contents span {
    font-size: 1.6rem;
  }

  .global .section--03 .domestic__tel {
    font-size: 1.6rem;
  }
}

@media (max-width: 1024px) {
  .global .section--01 {
    padding: 90px 0 0;
  }
  
  .global .section--01 .page-title .sub-navigation-inner {
    margin-top: 30px;
  }

  .global .section--01 .text-wrap {
    height: 350px;
    font-size: 3.4rem;
  }

  .global .section--02 {
    padding: 60px 0;
  }

  .global .section--03 {
    padding: 60px 0 90px;
  }

  .global .section--03 .demestic-list {
    gap: 30px 0;
  }

  .global .section--03 .domestic_item {
    min-height: 350px;
    padding: 25px 25px;
  }

  .global .section--03 .domestic__name {
    margin: 0 0 25px;
  }

  .global .section--03 .domestic__name p {
    font-size: 2.2rem;
  }

  .global .section--03 .domestic__contents p {
    font-size: 1.6rem;
  }

  .global .section--03 .domestic__contents span {
    font-size: 1.5rem;
  }

  .global .section--03 .domestic__tel {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .global .section--01 {
    padding: 75px 0 0;
  }

  .global .section--01 .page-title .sub-navigation-inner {
    margin-top: 25px;
  }
  
  .global .section--01 .text-wrap {
    height: 300px;
    font-size: 3rem;
  }

  .global .section--01 .global_text-wrap br {
    display: none;
  }

  .global .section--02 {
    padding: 50px 0;
  }

  .global .section--03 {
    padding: 60px 0 90px;
  }

  .global .section--03 .demestic-list {
    gap: 25px 0;
  }

  .global .section--03 .domestic_item {
    padding: 20px;
  }

  .global .section--03 .domestic__name {
    align-items: start;
    margin: 0 0 20px;
  }

  .global .section--03 .domestic__name i {
    width: 20px;
    height: 17px;
    margin-right: 8px;
  }

  .global .section--03 .domestic__name p {
    font-size: 1.8rem;
  }

  .global .section--03 .domestic__contents {
    margin: 0 0 8px;
  }

  .global .section--03 .domestic__contents p {
    font-size: 1.5rem;
  }

  .global .section--03 .domestic__contents span {
    font-size: 1.4rem;
  }

  .global .section--03 .domestic__tel {
    font-size: 1.4rem;
  }
}

@media (max-width: 500px) {
  .global .section--01 {
    padding: 60px 0 0;
  }

  .global .section--01 .page-title .sub-navigation-inner {
    margin-top: 20px;
  }
  
  .global .section--01 .text-wrap {
    height: 250px;
    font-size: 2.6rem;
  }

  .global .section--02 {
    padding: 40px 0;
  }

  .global .section--03 {
    padding: 50px 0 75px;
  }

  .global .section--03 .demestic-list {
    gap: 15px 0;
  }

  .global .section--03 .domestic_item {
    width: 100%;
    min-height: 235px;
    padding: 15px;
  }

  .global .section--03 .domestic__name {
    margin: 0 0 15px;
  }

  .global .section--03 .domestic__name p {
    font-size: 1.6rem;
  }

  .global .section--03 .domestic__contents p {
    font-size: 1.4rem;
  }

  .global .section--03 .domestic__contents span {
    font-size: 1.3rem;
  }

  .global .section--03 .domestic__tel {
    font-size: 1.3rem;
  }
}
/* E: Global */

/* S: Career */
.career .text-wrap {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #fff;
}

.career .text-wrap span {
  font-weight: 700;
}

.career .section--01 {
  padding: 120px 0 0;
}

.career .section--02 {
  background-image: url("/en/img/sub/career/career/section02_background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.career .section--02 .text-wrap {
  max-width: 1100px;
  width: 100%;
  padding: 0 15px;
  margin: -10px auto 70px;
}

.career .section--02 .list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
  justify-content: space-between;
  align-items: center;
}

.career .section--02 .item {
  display: flex;
  align-items: center;
  max-width: 620px;
  width: 48.5%;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.95);
  background-size: 128px 128px;
  background-repeat: no-repeat;
  background-position: right 0 bottom 0;
}

.career .section--02 .item.item--01 {
  background-image: url("/en/img/sub/career/career/section02_img01.png");
}

.career .section--02 .item.item--02 {
  background-image: url("/en/img/sub/career/career/section02_img02.png");
}

.career .section--02 .item.item--03 {
  background-image: url("/en/img/sub/career/career/section02_img03.png");
}

.career .section--02 .item.item--04 {
  background-image: url("/en/img/sub/career/career/section02_img04.png");
}

.career .section--02 .item-line {
  margin-right: 40px;
  width: 32px;
  height: 100%;
  background-color: rgba(13, 138, 252, 0.8);
}

.career .section--02 .textBox {
  max-width: 430px;
  width: 100%;
}

.career .section--02 .textBox p {
  margin-bottom: 23px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: #0d8afc;
}

.career .section--02 .textBox span {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
}

.career .section--03 {
  background-image: url("/en/img/sub/career/career/section03_background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.career .section--03 .page-title {
  margin: 0 0 80px;
}

.career .section--03 .list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
}

.career .section--03 .item {
  position: relative;
  max-width: 240px;
  width: 20%;
  height: 0;
  padding-top: calc(290 / 1280 * 100%);
  overflow: hidden;
}

.career .section--03 .item img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.career .section--04 {
  padding: 120px 0 0;
}

.career .section--04 .page-title {
  margin: 0 0 80px;
}

.career .section--04 .text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 430px;
  background-image: url("/en/img/sub/career/career/section04_background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.career .section--05 {
  background-color: #f8f8f8;
}

.career .section--05 .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 100px;
}

.career .section--05 .item:last-of-type {
  margin: 0;
}

.career .section--05 .img {
  position: relative;
  max-width: 620px;
  width: 49%;
  aspect-ratio: 1.631 / 1;
  overflow: hidden;
}

.career .section--05 .img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.career .section--05 .list .textBox {
  max-width: 620px;
  width: 49%;
  font-size: 2rem;
  line-height: 1.6;
  color: #666;
}

.career .section--05 .list .textBox p {
  margin-bottom: 25px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: #1b1b1b;
}

.career .section--06 .page-title {
  margin: 0 0 80px;
}

.career .section--06 .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 68px;
  padding: 0 20px;
  border-top: 1px solid #222;
  /* border-bottom: 1px solid #222; */
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.career .section--06 .item:last-of-type .label {
  border-bottom: 1px solid #222;
}

.career .section--06 .button {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #0d8afc;
}

.career .section--06 .button span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 18px;
  height: 2px;
  background-color: #fff;
}

.career .section--06 .button span:nth-of-type(2) {
  width: 2px;
  height: 18px;
}

.career .section--06 .conList {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

.career .section--06 .con-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 128px;
  margin: 20px 0;
  padding: 0 40px;
  background-color: #f2f2f2;
}

.career .section--06 .con-item p {
  margin-bottom: 15px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.career .section--06 .con-item span {
  font-size: 1.8rem;
  line-height: 1.7;
}

.career .section--06 .item.on .label {
  margin-bottom: 20px;
  border-bottom: 1px solid #222;
}

.career .section--06 .item.on .conList {
  height: fit-content;
}

.career .section--06 .conList {
  max-height: 0;
  height: 100%;
  /* background-color: #f5f5f5; */
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.career .section--06 .label.active {
  border-bottom: 1px solid #010101;
}

@media (max-width: 1200px) {
  .career .text-wrap {
    font-size: 3.6rem;
  }

  .career .section--01 {
    padding: 105px 0 0;
  }

  .career .section--02 .text-wrap {
    margin: -10px auto 60px;
  }

  .career .section--02 .list {
    gap: 35px 0;
  }

  .career .section--02 .item {
    height: 180px;
    background-size: 125px 125px;
  }

  .career .section--02 .item-line {
    margin-right: 35px;
    width: 30px;
  }

  .career .section--02 .textBox p {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }

  .career .section--02 .textBox span {
    font-size: 1.8rem;
  }

  .career .section--03 .page-title {
    margin: 0 0 70px;
  }

  .career .section--03 .list {
    gap: 0 15px;
  }

  .career .section--04 {
    padding: 105px 0 0;
  }

  .career .section--04 .page-title {
    margin: 0 0 70px;
  }

  .career .section--04 .text-wrap {
    height: 400px;
  }

  .career .section--05 .item {
    margin: 0 0 85px;
  }

  .career .section--05 .list .textBox {
    font-size: 1.8rem;
  }

  .career .section--05 .list .textBox p {
    margin-bottom: 20px;
    font-size: 2.6rem;
  }

  .career .section--06 .page-title {
    margin: 0 0 70px;
  }

  .career .section--06 .label {
    height: 65px;
    padding: 0 15px;
    font-size: 1.8rem;
  }

  .career .section--06 .button {
    width: 30px;
    height: 30px;
  }

  .career .section--06 .button span {
    width: 16px;
  }

  .career .section--06 .button span:nth-of-type(2) {
    height: 16px;
  }

  .career .section--06 .con-item {
    height: 115px;
    padding: 0 35px;
    margin: 18px 0;
  }

  .career .section--06 .con-item p {
    font-size: 1.8rem;
  }

  .career .section--06 .con-item span {
    font-size: 1.6rem;
  }
}

@media (max-width: 1024px) {
  .career .text-wrap {
    font-size: 3.2rem;
  }

  .career .section--01 {
    padding: 90px 0 0;
  }

  .career .section--02 .text-wrap {
    margin: -10px auto 50px;
  }

  .career .section--02 .list {
    gap: 30px 0;
  }

  .career .section--02 .item {
    height: 160px;
    background-size: 115px 115px;
  }

  .career .section--02 .item-line {
    margin-right: 30px;
    width: 25px;
  }

  .career .section--02 .textBox {
    max-width: 400px;
    padding-right: 20px;
  }

  .career .section--02 .textBox p {
    margin-bottom: 15px;
    font-size: 2.2rem;
  }

  .career .section--02 .textBox span {
    font-size: 1.6rem;
  }

  .career .section--02 .item.item--03 br {
    display: none;
  }

  .career .section--03 .page-title {
    margin: 0 0 60px;
  }

  .career .section--03 .list {
    gap: 0 15px;
  }

  .career .section--04 {
    padding: 90px 0 0;
  }

  .career .section--04 .page-title {
    margin: 0 0 60px;
  }

  .career .section--04 .text-wrap {
    height: 350px;
  }

  .career .section--05 .item {
    margin: 0 0 70px;
  }

  .career .section--05 .list .textBox {
    font-size: 1.6rem;
  }

  .career .section--05 .list .textBox p {
    margin-bottom: 15px;
    font-size: 2.2rem;
  }

  .career .section--06 .page-title {
    margin: 0 0 60px;
  }

  .career .section--06 .label {
    height: 60px;
    font-size: 1.6rem;
  }

  .career .section--06 .button {
    width: 28px;
    height: 28px;
  }

  .career .section--06 .button span {
    width: 15px;
  }

  .career .section--06 .button span:nth-of-type(2) {
    height: 15px;
  }

  .career .section--06 .con-item {
    height: 100px;
    padding: 0 30px;
    margin: 15px 0;
  }

  .career .section--06 .con-item p {
    font-size: 1.6rem;
  }

  .career .section--06 .con-item span {
    font-size: 1.5rem;
  }

  .career .section--06 .item.on .label {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .career .text-wrap {
    font-size: 2.8rem;
  }

  .career .section--01 {
    padding: 75px 0 0;
  }

  .career .section--02 .text-wrap {
    margin: -10px auto 40px;
  }

  .career .section--02 .list {
    gap: 25px 0;
  }

  .career .section--02 .item {
    height: 150px;
    background-size: 105px 105px;
  }

  .career .section--02 .item br {
    display: none;
  }

  .career .section--02 .item-line {
    margin-right: 15px;
    width: 20px;
  }

  .career .section--02 .textBox {
    max-width: 400px;
    padding-right: 10px;
  }

  .career .section--02 .textBox p {
    margin-bottom: 15px;
    font-size: 2rem;
  }

  .career .section--02 .textBox span {
    font-size: 1.5rem;
  }

  .career .section--03 .page-title {
    margin: 0 0 50px;
  }

  .career .section--03 .list {
    flex-wrap: wrap;
    gap: 20px 10px;
  }

  .career .section--03 .item {
    max-width: 32%;
    width: 31%;
    padding-top: calc(290 / 768 * 100%);
  }

  .career .section--04 {
    padding: 75px 0 0;
  }

  .career .section--04 .page-title {
    margin: 0 0 50px;
  }

  .career .section--04 .text-wrap {
    height: 300px;
  }

  .career .section--05 .item {
    margin: 0 0 55px;
  }

  .career .section--05 .list .textBox {
    font-size: 1.5rem;
  }

  .career .section--05 .list .textBox p {
    margin-bottom: 15px;
    font-size: 2rem;
  }

  .career .section--06 .page-title {
    margin: 0 0 50px;
  }

  .career .section--06 .label {
    height: 55px;
    font-size: 1.5rem;
  }

  .career .section--06 .button {
    width: 26px;
    height: 26px;
  }

  .career .section--06 .button span {
    width: 14px;
    height: 1px;
  }

  .career .section--06 .button span:nth-of-type(2) {
    height: 14px;
    width: 1px;
  }

  .career .section--06 .con-item {
    height: auto;
    padding: 15px 25px;
    margin: 12px 0;
  }

  .career .section--06 .con-item p {
    font-size: 1.5rem;
  }

  .career .section--06 .con-item span {
    font-size: 1.4rem;
  }
}

@media (max-width: 500px) {
  .career .text-wrap {
    padding: 0 10px;
    font-size: 2.4rem;
  }

  .career .section--01 {
    padding: 60px 0 0;
  }

  .career .section--02 .text-wrap {
    margin: -5px auto 30px;
  }

  .career .section--02 .list {
    gap: 15px 0;
  }

  .career .section--02 .item {
    max-width: 1005;
    width: 100%;
    height: 120px;
    background-size: 90px 90px;
  }

  .career .section--02 .item-line {
    margin-right: 10px;
    width: 15px;
  }

  .career .section--02 .textBox {
    max-width: 400px;
    padding-right: 10px;
  }

  .career .section--02 .textBox p {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }

  .career .section--02 .textBox span {
    font-size: 1.4rem;
  }

  .career .section--03 .page-title {
    margin: 0 0 40px;
  }

  .career .section--03 .list {
    gap: 15px 10px;
  }

  .career .section--04 {
    padding: 60px 0 0;
  }

  .career .section--04 .page-title {
    margin: 0 0 40px;
  }

  .career .section--04 .text-wrap {
    height: 250px;
  }

  .career .section--05 .item {
    flex-direction: column;
    align-items: start;
    margin: 0 0 40px;
  }

  .career .section--05 .item--01,
  .career .section--05 .item--03 {
    flex-direction: column-reverse;
  }

  .career .section--05 .img {
    max-width: 100%;
    width: 100%;
  }

  .career .section--05 .list .textBox {
    max-width: 100%;
    width: 100%;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .career .section--05 .list .textBox br {
    display: none;
  }

  .career .section--05 .list .textBox p {
    margin-bottom: 15px;
    font-size: 2rem;
  }

  .career .section--06 .page-title {
    margin: 0 0 40px;
  }

  .career .section--06 .label {
    height: 50px;
    padding: 0 10px;
    font-size: 1.4rem;
  }

  .career .section--06 .button {
    width: 24px;
    height: 24px;
  }

  .career .section--06 .button span {
    width: 12px;
    height: 1px;
  }

  .career .section--06 .button span:nth-of-type(2) {
    height: 12px;
    width: 1px;
  }

  .career .section--06 .con-item {
    padding: 10px 15px;
    margin: 10px 0;
  }

  .career .section--06 .con-item p {
    font-size: 1.4rem;
  }

  .career .section--06 .con-item span {
    font-size: 1.3rem;
  }

  .career .section--06 .item.on .label {
    margin-bottom: 10px;
  }
}



/* Company - Employment - Benefits*/
.benefits .section--01 {
  padding: 120px 0 0;
}

.benefits .section--02 {
  background-image: url("/en/img/sub/career/benefits/section02_background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.benefits .section--02 .text-wrap {
  margin: -10px 0 110px;
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  color: #fff;
}

.benefits .section--02 .text-wrap span {
  font-weight: 700;
}

.benefits .section--02 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
}

.benefits .section--02 .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 24%;
  margin: 0 0 74px;
  text-align: center;
}

.benefits .section--02 .item:last-of-type {
  margin: 0;
}

.benefits .section--02 .icon {
  position: relative;
  max-width: 200px;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 20px;
  overflow: hidden;
}

.benefits .section--02 .icon img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.benefits .section--02 .text {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

.benefits .section--02 .text span {
  font-size: 1.8rem;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .benefits .section--01 {
    padding: 105px 0 0;
  }

  .benefits .section--02 .text-wrap {
    margin: -10px 0 95px;
    font-size: 3.6rem;
  }

  .benefits .section--02 .item {
    margin: 0 0 65px;
  }

  .benefits .section--02 .icon {
    max-width: 180px;
    margin-bottom: 20px;
  }

  .benefits .section--02 .text {
    font-size: 1.8rem;
  }

  .benefits .section--02 .text span {
    font-size: 1.6rem;
  }
}

@media (max-width: 1024px) {
  .benefits .section--01 {
    padding: 90px 0 0;
  }

  .benefits .section--02 .text-wrap {
    margin: -10px 0 80px;
    font-size: 3.2rem;
  }

  .benefits .section--02 .item {
    margin: 0 0 55px;
  }

  .benefits .section--02 .icon {
    max-width: 150px;
    margin-bottom: 15px;
  }

  .benefits .section--02 .text {
    font-size: 1.6rem;
  }

  .benefits .section--02 .text span {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .benefits .section--01 {
    padding: 75px 0 0;
  }

  .benefits .section--02 .text-wrap {
    margin: -10px 0 65px;
    font-size: 2.8rem;
  }

  .benefits .section--02 .text-wrap br {
    display: none;
  }
  
  .benefits .section--02 .item {
    margin: 0 0 45px;
  }

  .benefits .section--02 .icon {
    max-width: 120px;
  }

  .benefits .section--02 .text {
    font-size: 1.5rem;
  }

  .benefits .section--02 .text span {
    font-size: 1.4rem;
  }
}

@media (max-width: 500px) {
  .benefits .section--01 {
    padding: 60px 0 0;
  }

  .benefits .section--02 .text-wrap {
    margin: -10px 0 50px;
    font-size: 2.4rem;
  }

  .benefits .section--02 .text-wrap br {
    display: none;
  }

  .benefits .section--02 .item {
    width: 31%;
    margin: 0 0 35px;
  }

  .benefits .section--02 .icon {
    max-width: 100px;
  }

  .benefits .section--02 .text {
    font-size: 1.4rem;
  }

  .benefits .section--02 .text br {
    display: none;
  }

  .benefits .section--02 .text span {
    font-size: 1.3rem;
  }
}


/* Technology - Product - Product Pipe */
.product .section--01 {
  padding: 120px 0 80px;
}

.product .section--02 {
  padding: 0 0 80px;
}

.product .section--02 .thumb {
  width: 100%;
  height: 0;
  padding-top: calc(440 / 1280 * 100%);
  margin-bottom: 40px;
  background-image: url("/en/img/sub/product/section01_thumbnail.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.product .section--02 .title, 
.product .section--03 .title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
}

.product .section--02 .title span,
.product .section--03 .title span {
  display: block;
  width: 35px;
  height: 2px;
  margin: 15px 0 40px;
  background-color: #0d8afc;
}

.product .section--03 .title span  {
  margin-bottom: 80px;
}

.product .section--02 .text {
  margin: -8px 0 -6px;
  font-size: 2rem;
  line-height: 1.6;
}

.product .section--02 .tab {
  display: flex;
  align-items: center;
  gap: 0 16px;
}

.product .section--02 .tab a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 64px;
  margin-top: 80px;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  background-color: #f9f9f9;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #6c6c6c;
}

.product .section--02 .tab a.on {
  background-color: #0d8afc;
  color: #fff;
  border-color: #0d8afc;
} 

.product .section--03 {
  padding-top: 0;
}

.product .section--03 .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 100px;
}

.product .section--03 .plant_item:last-of-type {
  margin: 0;
}

.product .section--03 .thumb {
  position: relative;
  max-width: 620px;
  width: 49%;
  aspect-ratio: 1.631 / 1;
  overflow: hidden;
}

.product .section--03 .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product .section--03 .textBox {
  max-width: 600px;
  width: 48%;
}

.product .section--03 .name {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.product .section--03 .text {
  font-size: 2rem;
  line-height: 1.6;
  color: #666;
}

.product .section--03 .more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  width: 240px;
  height: 56px;
  margin-top: 33px;
  border-radius: 10px;
  border: 1px solid #888;
  color: #888;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: all .25s ease-out;
}

.product .section--03 .more-btn i {
  display: block;
  width: 12px;
  height: 12px;
  transform: rotate(-45deg);
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transition: all .25s ease-out;
}

.product .section--03 .more-btn:hover {
  background-color: #0d8afc;
  border-color: #0d8afc;
  color: #fff;
}

.product .section--03 .more-btn:hover i {
  border-color: #fff;
}

@media (max-width: 1200px) {
  .product .section--01 {
    padding: 105px 0 70px;
  }
  
  .product .section--02 {
    padding: 0 0 70px;
  }

  .product .section--02 .thumb {
    margin-bottom: 35px;
  }
  
  .product .section--02 .title, 
  .product .section--03 .title {
    font-size: 3.2rem;
  }

  .product .section--02 .title span,
  .product .section--03 .title span {
    width: 30px;
    height: 2px;
    margin: 15px 0 35px;
  }

  .product .section--03 .title span  {
    margin-bottom: 70px;
  }
  
  .product .section--02 .text  {
    font-size: 1.8rem;
  }
  
  .product .section--02 .tab a {
    height: 55px;
    margin-top: 70px;
    font-size: 1.8rem;
  }
  
  .product .section--03 .item {
    margin: 0 0 85px;
  }

  .product .section--03 .name {
    font-size: 2.4rem;
    margin-bottom: 18px;
  }

  .product .section--03 .text {
    font-size: 1.8rem;
  }
  
  .product .section--03 .more-btn {
    gap: 0 15px;
    width: 220px;
    height: 50px;
    margin-top: 30px;
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .product .section--01 {
    padding: 90px 0 60px;
  }
  
  .product .section--02 {
    padding: 0 0 60px;
  }

  .product .section--02 .thumb {
    margin-bottom: 30px;
  }
  
  .product .section--02 .title, 
  .product .section--03 .title {
    font-size: 2.8rem;
  }

  .product .section--02 .title span,
  .product .section--03 .title span {
    width: 26px;
    height: 2px;
    margin: 15px 0 30px;
  }
  
  .product .section--03 .title span  {
    margin-bottom: 60px;
  }

  .product .section--02 .text {
    font-size: 1.6rem;
  }
  
  .product .section--02 .tab {
    gap: 0 10px;
  }
  
  .product .section--02 .tab a {
    height: 45px;
    margin-top: 60px;
    font-size: 1.6rem;
    border-radius: 8px;
  }
  
  .product .section--03 .item {
    margin: 0 0 70px;
  }

  .product .section--03 .name {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .product .section--03 .text {
    font-size: 1.6rem;
  }
  
  .product .section--03 .more-btn {
    gap: 0 12px;
    width: 200px;
    height: 45px;
    margin-top: 25px;
    font-size: 1.6rem;
  }
  
  .product .section--03 .more-btn i {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 768px) {
  .product .section--01 {
    padding: 75px 0 50px;
  }

  .product .section--02 {
    padding: 0 0 50px;
  }

  .product .section--02 .thumb {
    margin-bottom: 25px;
  }
  
  .product .section--02 .title, 
  .product .section--03 .title {
    font-size: 2.4rem;
  }

  .product .section--02 .title span,
  .product .section--03 .title span {
    width: 20px;
    height: 2px;
    margin: 10px 0 25px;
  }

  .product .section--03 .title span  {
    margin-bottom: 50px;
  }
  
  .product .section--02 .text {
    font-size: 1.5rem;
  }
    
  .product .section--02 .tab a {
    height: 40px;
    margin-top: 50px;
    font-size: 1.5rem;
  }
  
  .product .section--03 .item {
    margin: 0 0 55px;
  }

  .product .section--03 .name {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .product .section--03 .text {
    font-size: 1.5rem;
  }
  
  .product .section--03 .more-btn {
    gap: 0 10px;
    width: 180px;
    height: 40px;
    margin-top: 20px;
    font-size: 1.5rem;
  }
  
  .product .section--03 .more-btn i {
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #888;
    border-right: 1px solid #888;
  }
}

@media (max-width: 500px) {
  .product .section--01 {
    padding: 60px 0 40px;
  }

  .product .section--02 {
    padding: 0 0 40px;
  }
  
  .product .section--02 .thumb {
    margin-bottom: 20px;
  }
  
  .product .section--02 .title, 
  .product .section--03 .title {
    font-size: 2.2rem;
  }

  .product .section--02 .title span,
  .product .section--03 .title span {
    width: 15px;
    height: 2px;
    margin: 8px 0 20px;
  }
  
  .product .section--03 .title span  {
    margin-bottom: 40px;
  }

  .product .section--02 .text {
    font-size: 1.4rem;
  }
  
  .product .section--02 .tab {
    gap: 0 6px;
  }
  
  .product .section--02 .tab a {
    height: 42px;
    margin-top: 40px;
    font-size: 1.4rem;
    border-radius: 6px;
    text-align: center;
  }
  
  .product .section--03 .item {
    flex-direction: column;
    align-items: start;
    margin: 0 0 40px;
  }

  .product .section--03 .item--02,
  .product .section--03 .item--04,
  .product .section--03 .item--06 {
    flex-direction: column-reverse;
  }

  .product .section--03 .thumb {
    width: 100%;
    margin-bottom: 15px;
  }

  .product .section--03 .textBox {
    width: 100%;
  }

  .product .section--03 .name {
    font-size: 1.8rem;
  }

  .product .section--03 .text {
    font-size: 1.4rem;
  }
  
  .product .section--03 .more-btn {
    gap: 0 8px;
    width: 160px;
    height: 35px;
    margin-top: 15px;
    font-size: 1.4rem;
  }
  
  .product .section--03 .more-btn i {
    width: 7px;
    height: 7px;
  }
}

.product .section--type {
  padding-top: 0;
}

.product .section--type .thumb {
  position: relative;
  width: 100%;
  margin-bottom: 35px;
}

.product .section--type .thumb-bg {
  position: relative;
  width: 100%;
  aspect-ratio: 1.751 / 1;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.product .section--type .thumb02 .thumb-bg {
  aspect-ratio: 2.909 / 1;
}

.product .section--type .thumb-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product .section--type .thumb p {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40px;
  left: 40px;
  width: 240px;
  height: 56px;
  border-radius: 28px;
  background-color: #0d8afc;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
}

.product .section--type .con-text .title {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product .section--type .con-text .title span {
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 11px;
  background-color: #0d8afc;
}

.product .section--type .con-text .text {
  margin-top: 37px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product .section--type .con-text .text.dot {
  position: relative;
  padding-left: 10px;
}

.product .section--type .con-text .text.dot::after {
  content: "·";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 900;
  color: #0d8afc;
}

.product .section--type .con-text > span {
  display: block;
  margin-top: 3px;
  margin-bottom: -8px;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.product .section--type .item-wrap {
  position: relative;
  display: flex;
  align-items: start;
  gap: 0 40px;
  padding: 80px 0;
  margin-top: 80px;
}

.product .section--type .item-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 100vw;
  height: 100%;
  background-color: #f0f0f0;
}

.product .section--type .item-wrap .item {
  max-width: 400px;
  width: 32%;
  text-align: center;
}


.product .section--type .item-wrap .item .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(240 / 400 * 100%);
  margin: 0 0 15px;
  overflow: hidden;
}

.product .section--type .item-wrap .item .img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.product .section--type .item-wrap p {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}

.product .section--type .list-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 56px;
  margin: 80px auto 0;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  border-radius: 10px;
  background-color: #575757;
  color: #fff;
}

.product .section--type .block {
  margin-bottom: 95px;
}

.product .section--type .block.bg  {
  padding-top: 5px;
  margin-bottom: 120px;
}

.product .section--type .block:last-of-type {
  margin-bottom: 0;
}

.product .section--type .block .inner {
  display: flex;
  align-items: center;
  gap: 0 60px;
  margin-top: 80px;
}

.product .section--type .block .inner--02 {
  margin-top: 100px;
}

.product .section--type .block .inner .lt {
  width: 620px;
}

.product .section--type .block .inner .lt .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1.631 / 1;
  margin-bottom: 0;
  overflow: hidden;
}

.product .section--type .block .inner .lt .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product .section--type .block .inner .rt {
  width: calc(100% - 680px);
  padding-bottom: 20px;
}

.product .section--type .block .inner .rt .tit {
  margin-bottom: 21px;
  font-size: 2.8rem;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.product .section--type .block .inner .rt .txt {
  display: block;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: #666;
}

.product .section--type .block .inner .rt .txt.dot {
  display: block;
  position: relative;
  padding-left: 9px;
}

.product .section--type .block .inner .rt .txt.dot::after {
  content: "·";
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  font-weight: 800;
  color: #0d8afc;
}

.product .section--type .block .inner .rt .txt.dot.last {
  padding-left: 15px;
}

.product .section--type .block .inner .rt .txt.dot.last::after {
  content: "▶";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.2rem;
  line-height: 2.5;
  font-weight: 400;
}

.product .section--type .block .inner .rt ul li {
  color: #666;
  font-size: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.6;
  margin-bottom: 31px;
}

.product .section--type .block .inner .rt ul li:last-of-type {
  margin-bottom: 0;
}

.product .section--type .block .inner .rt ul li p {
  font-size: inherit;
  font-weight: 600;
  letter-spacing: inherit;
  line-height: inherit;
}

.product .section--type .block .inner .rt ul li span {
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.product .section--type .point {
  margin-top: 34px;
}

.product .section--type .point .txt {
  margin-top: 31px;
}

.product .section--type .point .txt:first-of-type {
  margin-top: 0;
}

.product .section--type .point .txt p {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.product .section--type .point .txt span {
  display: block;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.product .section--type .detail {
  position: relative;
  padding: 15px 0 5px;
}

.product .section--type .block.bg .detail {
  padding: 115px 0 120px;
}

.product .section--type .block.bg .detail::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 100vw;
  height: 100%;
  background-color: #f9f9f9;
}

.product .section--type .detail .con-text .txt {
  margin: 37px 0;
  font-size: 2rem;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.product .section--type .detail .down-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  width: 240px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid #888;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #888;
  transition: all .25s ease-out;
}

.product .section--type .detail .down-btn i {
  display: block;
  width: 15px;
  height: 15px;
  background-image: url('/en/img/icon/download-btn-icon.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-image .25s ease-out;
}

.product .section--type .detail .down-btn:hover {
  color: #fff;
  background-color: #0d8afc;
  border-color: #0d8afc;
}

.product .section--type .detail .down-btn:hover i {
  background-image: url('/en/img/icon/download-btn-icon_hover.png');
}


@media(max-width:1200px) {
  .product .section--type .thumb {
    margin-bottom: 30px;
  }
  
  .product .section--type .thumb p {
    top: 35px;
    left: 35px;
    width: 220px;
    height: 45px;
    border-radius: 25px;
    font-size: 2.2rem;
  }
  
  .product .section--type .con-text .title {
    font-size: 3.2rem;
  }
  
  .product .section--type .con-text .title span {
    width: 35px;
    height: 2px;
    margin-top: 9px;
  }
  
  .product .section--type .con-text .text {
    margin-top: 30px;
    font-size: 1.8rem;
  }
  
  .product .section--type .con-text .text.dot {
    padding-left: 8px;
  }
  
  .product .section--type .con-text > span {
    margin-top: 2px;
    margin-bottom: -6px;
    font-size: 1.8rem;
  }
  
  .product .section--type .con-text > span br {
    display: none;
  }
  
  .product .section--type .item-wrap {
    gap: 0 35px;
    padding: 70px 0;
    margin-top: 70px;
  }
  
  .product .section--type .item-wrap .item .img {
    margin: 0 0 12px;
  }
  
  .product .section--type .item-wrap p {
    font-size: 1.6rem;
  }
  
  .product .section--type .list-btn {
    width: 220px;
    height: 45px;
    margin: 70px auto 0;
    font-size: 1.8rem;
    border-radius: 8px;
  }
    
  .product .section--type .block {
    margin-bottom: 85px;
  }

  .product .section--type .block.bg  {
    margin-bottom: 105px;
  }

  .product .section--type .block:last-of-type {
    margin-bottom: 0;
  }

  .product .section--type .block .inner {
    gap: 0 50px;
    margin-top: 70px;
  }
  
  .product .section--type .block .inner--02 {
    margin-top: 90px;
  }

  .product .section--type .block .inner .lt {
    width: 500px;
  }

  .product .section--type .block .inner .rt {
    width: calc(100% - 550px);
  }

  .product .section--type .block .inner .rt .tit {
    margin-bottom: 15px;
    font-size: 2.4rem;
  }

  .product .section--type .block .inner .rt .txt {
    font-size: 1.8rem;
  }
  
  .product .section--type .block .inner .rt .txt br {
    display: none;
  }
  
  .product .section--type .block .inner .rt ul li {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .product .section--type .block .inner .rt ul li:last-of-type {
    margin-bottom: 0;
  }

  .product .section--type .block .inner .rt ul li  br{
    display: none;
  }
    
  .product .section--type .point {
    margin-top: 30px;
  }
  
  .product .section--type .point .txt {
    margin-top: 25px;
  }

  .product .section--type .point .txt:first-of-type {
    margin-top: 0;
  }

  .product .section--type .point .txt p {
    font-size: 1.8rem;
  }

  .product .section--type .point .txt span {
    font-size: 1.8rem;
  }
  
  .product .section--type .block.bg .detail {
    padding: 100px 0 105px;
  }

  .product .section--type .detail .con-text .txt {
    margin: 30px 0;
    font-size: 1.8rem;
  }

  .product .section--type .detail .down-btn {
    gap: 0 15px;
    width: 220px;
    height: 40px;
    border-radius: 8px;
    font-size: 1.6rem;
  }

  .product .section--type .detail .down-btn i {
    width: 12px;
    height: 12px;
  }
}

@media(max-width:1024px) {
  .product .section--type .thumb {
    margin-bottom: 25px;
  }
  
  .product .section--type .thumb p {
    top: 30px;
    left: 30px;
    width: 200px;
    height: 40px;
    border-radius: 23px;
    font-size: 2rem;
  }
  
  .product .section--type .con-text .title {
    font-size: 2.8rem;
  }
  
  .product .section--type .con-text .title span {
    width: 30px;
    height: 2px;
    margin-top: 8px;
  }
  
  .product .section--type .con-text .text {
    margin-top: 25px;
    font-size: 1.6rem;
  }
  
  .product .section--type .con-text .text.dot {
    padding-left: 6px;
  }
  
  .product .section--type .con-text > span {
    margin-top: 1px;
    margin-bottom: -5px;
    font-size: 1.6rem;
  }
  
  .product .section--type .item-wrap {
    gap: 0 30px;
    padding: 60px 0;
    margin-top: 60px;
  }
  
  .product .section--type .item-wrap .item .img {
    margin: 0 0 10px;
  }
  
  .product .section--type .item-wrap p {
    font-size: 1.5rem;
  }
  
  .product .section--type .list-btn {
    width: 200px;
    height: 40px;
    margin: 60px auto 0;
    font-size: 1.6rem;
    border-radius: 7px;
  }
  
  .product .section--type .block {
    margin-bottom: 75px;
  }
  
  .product .section--type .block.bg  {
    margin-bottom: 90px;
  }

  .product .section--type .block:last-of-type {
    margin-bottom: 0;
  }

  .product .section--type .block .inner {
    gap: 0 40px;
    margin-top: 60px;
  }

  .product .section--type .block .inner--02 {
    margin-top: 80px;
  }

  .product .section--type .block .inner .lt {
    width: 400px;
  }

  .product .section--type .block .inner .rt {
    width: calc(100% - 440px);
  }

  .product .section--type .block .inner .rt .tit {
    margin-bottom: 12px;
    font-size: 2.2rem;
  }

  .product .section--type .block .inner .rt .txt {
    font-size: 1.6rem;
  }
  
  .product .section--type .block .inner .rt ul li {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .product .section--type .block .inner .rt ul li:last-of-type {
    margin-bottom: 0;
  }
  
  .product .section--type .point {
    margin-top: 25px;
  }
  
  .product .section--type .point .txt {
    margin-top: 20px;
  }
  
  .product .section--type .point .txt:first-of-type {
    margin-top: 0;
  }

  .product .section--type .point .txt p {
    font-size: 1.6rem;
  }

  .product .section--type .point .txt span {
    font-size: 1.6rem;
  }

  .product .section--type .block.bg .detail {
    padding: 90px 0;
  }
  
  .product .section--type .detail .con-text .txt {
    margin: 25px 0;
    font-size: 1.6rem;
  }

  .product .section--type .detail .down-btn {
    gap: 0 12px;
    width: 200px;
    height: 35px;
    border-radius: 8px;
    font-size: 1.5rem;
  }

  .product .section--type .detail .down-btn i {
    width: 12px;
    height: 12px;
  }
}

@media(max-width:768px) {
  .product .section--type .thumb {
    margin-bottom: 20px;
  }
  
  .product .section--type .thumb p {
    top: 20px;
    left: 20px;
    width: 180px;
    height: 35px;
    border-radius: 20px;
    font-size: 1.8rem;
  }
  
  .product .section--type .con-text .title {
    font-size: 2.4rem;
  }
  
  .product .section--type .con-text .title span {
    width: 25px;
    height: 2px;
    margin-top: 6px;
  }
  
  .product .section--type .con-text .text {
    margin-top: 20px;
    font-size: 1.5rem;
  }
  
  .product .section--type .con-text > span {
    margin-bottom: -4px;
    font-size: 1.5rem;
  }
  
  .product .section--type .item-wrap {
    gap: 0 25px;
    padding: 50px 0;
    margin-top: 50px;
  }
  
  .product .section--type .item-wrap .item .img {
    margin: 0 0 8px;
  }
  
  .product .section--type .item-wrap p {
    font-size: 1.4rem;
  }
  
  .product .section--type .list-btn {
    width: 180px;
    height: 35px;
    margin: 50px auto 0;
    font-size: 1.5rem;
    border-radius: 6px;
  }
  
  .product .section--type .block {
    margin-bottom: 65px;
  }

  .product .section--type .block.bg  {
    margin-bottom: 80px;
  }
  
  .product .section--type .block:last-of-type {
    margin-bottom: 0;
  }

  .product .section--type .block .inner {
    gap: 25px 0;
    flex-direction: column;
    align-items: start;
    margin-top: 50px;
  }
  
  .product .section--type .block .inner--02 {
    margin-top: 70px;
  }

  .product .section--type .block .inner .lt {
    width: 100%;
  }

  .product .section--type .block .inner .rt {
    width: 100%;
    padding: 0;
  }

  .product .section--type .block .inner .rt .tit {
    margin-bottom: 10px;
    font-size: 2rem;
  }

  .product .section--type .block .inner .rt .txt {
    font-size: 1.5rem;
  }
    
  .product .section--type .block .inner .rt ul li {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .product .section--type .block .inner .rt ul li:last-of-type {
    margin-bottom: 0;
  }
  
  .product .section--type .point {
    margin-top: 20px;
  }
  
  .product .section--type .point .txt {
    margin-top: 15px;
  }

  .product .section--type .point .txt:first-of-type {
    margin-top: 0;
  }

  .product .section--type .point .txt p {
    font-size: 1.5rem;
  }

  .product .section--type .point .txt span {
    font-size: 1.5rem;
  }
  
  .product .section--type .detail {
    padding: 10px 0 5px;
  }
  
  .product .section--type .block.bg .detail {
    padding: 80px 0;
  }

  .product .section--type .detail .con-text .txt {
    margin: 20px 0;
    font-size: 1.5rem;
  }

  .product .section--type .detail .down-btn {
    gap: 0 10px;
    width: 180px;
    height: 30px;
    border-radius: 6px;
    font-size: 1.4rem;
  }

  .product .section--type .detail .down-btn i {
    width: 12px;
    height: 12px;
  }
}

@media(max-width:500px) {
  .product .section--type .thumb {
    margin-bottom: 15px;
  }
  
  .product .section--type .thumb p {
    top: 10px;
    left: 10px;
    min-width: 130px;
    width: auto;
    height: 30px;
    padding: 0 10px;
    border-radius: 18px;
    font-size: 1.6rem;
  }
  
  .product .section--type .con-text .title {
    font-size: 2.2rem;
  }
  
  .product .section--type .con-text .title span {
    width: 20px;
    height: 2px;
    margin-top: 5px;
  }
  
  .product .section--type .con-text .text {
    margin-top: 15px;
    font-size: 1.4rem;
  }
  
  .product .section--type .con-text > span {
    margin-bottom: -3px;
    font-size: 1.4rem;
  }
  
  .product .section--type .item-wrap {
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
    padding: 40px 0;
    margin-top: 40px;
  }
  
  .product .section--type .item-wrap .item {
    width: 100%;
  }
  
  .product .section--type .item-wrap p {
    font-size: 1.3rem;
  }
  
  .product .section--type .list-btn {
    width: 160px;
    height: 30px;
    margin: 40px auto 0;
    font-size: 1.4rem;
  }
  
  .product .section--type .block {
    margin-bottom: 55px;
  }
  
  .product .section--type .block.bg  {
    margin-bottom: 70px;
  }

  .product .section--type .block:last-of-type {
    margin-bottom: 0;
  }

  .product .section--type .block .inner {
    gap: 20px 0;
    margin-top: 40px;
  }
  
  .product .section--type .block .inner--02 {
    margin-top: 60px;
  }

  .product .section--type .block .inner .rt .tit {
    font-size: 1.8rem;
  }

  .product .section--type .block .inner .rt .txt {
    font-size: 1.4rem;
  }
  
  .product .section--type .block .inner .rt ul li {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  .product .section--type .block .inner .rt ul li:last-of-type {
    margin-bottom: 0;
  }
  
  .product .section--type .point {
    margin-top: 15px;
  }
  
  .product .section--type .point .txt {
    margin-top: 10px;
  }

  .product .section--type .point .txt:first-of-type {
    margin-top: 0;
  }

  .product .section--type .point .txt p {
    font-size: 1.4rem;
  }

  .product .section--type .point .txt span {
    font-size: 1.4rem;
  }

  .product .section--type .detail {
    padding: 8px 0 3px;
  }
  
  .product .section--type .block.bg .detail {
    padding: 70px 0;
  }
  
  .product .section--type .detail .con-text .txt {
    margin: 15px 0;
    font-size: 1.4rem;
  }

  .product .section--type .detail .down-btn {
    gap: 0 8px;
    width: 160px;
    border-radius: 5px;
    font-size: 1.3rem;
  }

  .product .section--type .detail .down-btn i {
    width: 11px;
    height: 11px;
  }
}
/* E: Product */

/* S: Rnd */
.rnd .section--01 {
  padding: 120px 0 0;
}

.rnd .section--02 {
  padding: 0;
}

.rnd .section--02 .text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 430px;
  background-image: url("/en/img/sub/rnd/section02_background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

.rnd .section--02 .text-wrap p {
  max-width: 985px;
  width: 100%;
  padding: 0 15px;
}

.rnd .section--02 .text-wrap span {
  font-weight: 700;
}

.rnd .section--03 {
  padding-top: 73px;
}

.rnd .section--03 .txt {
  margin-bottom: 73px;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.rnd .section--03 .list {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: -20px;
}

.rnd .section--03 .list li {
  width: 25%;
  padding: 20px;
}

.rnd .section--03 .list li .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1.132 / 1;
  margin-bottom: 29px;
  overflow: hidden;
}

.rnd .section--03 .list li .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rnd .section--03 .list li p {
  font-size: 2rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1200px) {
  .rnd .section--01 {
    padding: 105px 0 0;
  }

  .rnd .section--02 .text-wrap {
    height: 400px;
    font-size: 3.6rem;
  }

  .rnd .section--03 {
    padding-top: 65px;
  }
  
  .rnd .section--03 .txt {
    margin-bottom: 65px;
    font-size: 1.8rem;
  }
  
  .rnd .section--03 .list {
    gap: 8px 0;
    margin: -15px;
  }
  
  .rnd .section--03 .list li {
    padding: 15px;
  }
  
  .rnd .section--03 .list li .thumb {
    margin-bottom: 25px;
  }
  
  .rnd .section--03 .list li p {
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .rnd .section--01 {
    padding: 90px 0 0;
  }

  .rnd .section--02 .text-wrap {
    height: 350px;
    font-size: 3.2rem;
  }
  
  .rnd .section--03 {
    padding-top: 55px;
  }
  
  .rnd .section--03 .txt {
    margin-bottom: 55px;
    font-size: 1.6rem;
  }
  
  .rnd .section--03 .list {
    gap: 5px 0;
    margin: -10px;
  }
  
  .rnd .section--03 .list li {
    padding: 10px;
  }
  
  .rnd .section--03 .list li .thumb {
    margin-bottom: 20px;
  }
  
  .rnd .section--03 .list li p {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .rnd .section--01 {
    padding: 75px 0 0;
  }

  .rnd .section--02 .text-wrap {
    height: 300px;
    font-size: 2.8rem;
  }
  
  .rnd .section--03 {
    padding-top: 45px;
  }
  
  .rnd .section--03 .txt {
    margin-bottom: 45px;
    font-size: 1.5rem;
  }
  
  .rnd .section--03 .list {
    margin: -8px;
  }
  
  .rnd .section--03 .list li {
    width: 50%;
    padding: 8px;
  }
  
  .rnd .section--03 .list li .thumb {
    margin-bottom: 15px;
  }
  
  .rnd .section--03 .list li p {
    font-size: 1.5rem;
  }
}

@media (max-width: 500px) {
  .rnd .section--01 {
    padding: 60px 0 0;
  }

  .rnd .section--02 .text-wrap {
    height: 250px;
    font-size: 2.4rem;
  }
   
  .rnd .section--03 {
    padding-top: 35px;
  }
  
  .rnd .section--03 .txt {
    margin-bottom: 35px;
    font-size: 1.4rem;
  }
  
  .rnd .section--03 .list {
    margin: -6px;
  }
  
  .rnd .section--03 .list li {
    padding: 6px;
  }
  
  .rnd .section--03 .list li .thumb {
    margin-bottom: 10px;
  }
  
  .rnd .section--03 .list li p {
    font-size: 1.4rem;
  }

}

.patent .section--03 {
  padding-top: 115px;
}

.patent .section--03 .heading {
  margin-bottom: 37px;
}

.patent .section--03 .title {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.patent .section--03 .title span {
  display: block;
  width: 40px;
  height: 2px;
  margin: 11px 0 37px;
  background-color: #0d8afc;
}

.patent .section--03 .text {
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.patent .section--03 .list {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  margin: -20px;
}

.patent .section--03 .list li {
  width: 33.333%;
  padding: 20px;
}

.patent .section--03 .list .img {
  position: relative;
  width: 100%;
  aspect-ratio: 0.706 / 1;
  margin-bottom: 37px;
  border: 1px solid #f0f0f0;
}

.patent .section--03 .list .img  img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.patent .section--03 .list  .tit {
  margin-bottom: 18px;
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em; 
}

.patent .section--03 .list .txt {
  position: relative;
  margin: 0;
  padding-left: 8px;
  line-height: 1.33;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: left;
}

.patent .section--03 .list .txt::after {
  content: "·";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  font-weight: inherit;
}

@media(max-width:1200px) {
  .patent .section--03 {
    padding-top: 105px;
  }

  .patent .section--03 .heading {
    margin-bottom: 35px;
  }

  .patent .section--03 .title {
    font-size: 3.2rem;
  }

  .patent .section--03 .title span {
    width: 38px;
    height: 2px;
    margin: 11px 0 35px;
  }

  .patent .section--03 .text {
    font-size: 1.8rem;
  }

  .patent .section--03 .list {
    margin: -15px;
  }

  .patent .section--03 .list li {
    padding: 15px;
  }

  .patent .section--03 .list .img {
    margin-bottom: 30px;
  }

  .patent .section--03 .list  .tit {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }

  .patent .section--03 .list .txt {
    padding-left: 8px;
    font-size: 1.6rem;
  }
}

@media(max-width:1024px) {
  .patent .section--03 {
    padding-top: 90px;
  }

  .patent .section--03 .heading {
    margin-bottom: 30px;
  }

  .patent .section--03 .title {
    font-size: 2.8rem;
  }

  .patent .section--03 .title span {
    width: 30px;
    height: 2px;
    margin: 8px 0 25px;
  }

  .patent .section--03 .text {
    font-size: 1.6rem;
  }

  .patent .section--03 .list {
    margin: -10px;
  }

  .patent .section--03 .list li {
    padding: 10px;
  }

  .patent .section--03 .list .img {
    margin-bottom: 25px;
  }

  .patent .section--03 .list  .tit {
    margin-bottom: 12px;
    font-size: 1.6rem;
  }

  .patent .section--03 .list .txt {
    padding-left: 6px;
    font-size: 1.5rem;
  }
}

@media(max-width:768px) {
  .patent .section--03 {
    padding-top: 80px;
  }

  .patent .section--03 .heading {
    margin-bottom: 25px;
  }

  .patent .section--03 .title {
    font-size: 2.4rem;
  }

  .patent .section--03 .title span {
    width: 25px;
    height: 2px;
    margin: 6px 0 20px;
  }

  .patent .section--03 .text {
    font-size: 1.5rem;
  }

  .patent .section--03 .list {
    margin: -8px;
    gap: 15px 0;
  }

  .patent .section--03 .list li {
    width: 50%;
    padding: 8px;
  }

  .patent .section--03 .list .img {
    margin-bottom: 20px;
  }

  .patent .section--03 .list  .tit {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }

  .patent .section--03 .list .txt {
    padding-left: 6px;
    font-size: 1.4rem;
  }
}

@media(max-width:500px) {
  .patent .section--03 {
    padding-top: 70px;
  }

  .patent .section--03 .heading {
    margin-bottom: 20px;
  }

  .patent .section--03 .title {
    font-size: 2.2rem;
  }

  .patent .section--03 .title span {
    width: 20px;
    height: 2px;
    margin: 5px 0 15px;
  }

  .patent .section--03 .text {
    font-size: 1.4rem;
  }

  .patent .section--03 .list {
    margin: -5px;
    gap: 10px 0;
  }

  .patent .section--03 .list li {
    padding: 5px;
  }

  .patent .section--03 .list .img {
    margin-bottom: 15px;
  }

  .patent .section--03 .list  .tit {
    margin-bottom: 8px;
    font-size: 1.4rem;
  }

  .patent .section--03 .list .txt {
    font-size: 1.3rem;
  }
}
/* E:Patent */
.quality .section--01 {
  padding: 120px 0 0;
}

.quality .section--02 {
  padding: 0;
}

.quality .section--02 .text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 430px;
  background-image: url("/en/img/sub/rnd/section02_background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

.quality .section--02 .text-wrap p {
  max-width: 985px;
  width: 100%;
  padding: 0 15px;
}

.quality .section--02 .text-wrap span {
  font-weight: 700;
}


@media (max-width: 1200px) {
  .quality .section--01 {
    padding: 105px 0 0;
  }

  .quality .section--02 .text-wrap {
    height: 400px;
    font-size: 3.6rem;
  }
}

@media (max-width: 1024px) {
  .quality .section--01 {
    padding: 90px 0 0;
  }

  .quality .section--02 .text-wrap {
    height: 350px;
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .quality .section--01 {
    padding: 75px 0 0;
  }

  .quality .section--02 .text-wrap {
    height: 300px;
    font-size: 2.8rem;
  }
}

@media (max-width: 500px) {
  .quality .section--01 {
    padding: 60px 0 0;
  }

  .quality .section--02 .text-wrap {
    height: 250px;
    font-size: 2.4rem;
  }
  
}
/* S:management */


.management .section--03 .heading {
  margin-bottom: 93px;
  margin-top: -5px;
}

.management .section--03 .title {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.management .section--03 .title span {
  display: block;
  width: 40px;
  height: 2px;
  margin: 11px 0 33px;
  background-color: #0d8afc;
}

.management .section--03 .text {
  font-size: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.6;
}

.management .section--03 .list {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  margin: -20px;
}

.management .section--03 .list li {
  width: 25%;
  padding: 20px;
}

.management .section--03 .list li .box {
  width: 100%;
}

.management .section--03 .list li .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1.132 / 1;
}

.management .section--03 .list li .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.management .section--03 .list li p {
  margin-top: 30px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
}

@media (max-width: 1200px) {
  .management .section--03 .heading {
    margin-bottom: 85px;
  }

  .management .section--03 .title {
    font-size: 3.2rem;
  }

  .management .section--03 .title span {
    width: 35px;
    height: 2px;
    margin: 10px 0 30px;
  }

  .management .section--03 .text {
    font-size: 1.8rem;
  }
  
  .management .section--03 .list {
    margin: -18px;
  }
  
  .management .section--03 .list li {
    padding: 18px;
  }

  .management .section--03 .list li p {
    margin-top: 30px;
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {

  .management .section--03 .heading {
    margin-bottom: 75px;
  }

  .management .section--03 .title {
    font-size: 2.8rem;
  }

  .management .section--03 .title span {
    width: 30px;
    height: 2px;
    margin: 8px 0 25px;
  }

  .management .section--03 .text {
    font-size: 1.6rem;
  }

  .management .section--03 .list {
    margin: -15px;
  }

  .management .section--03 .list li {
    padding: 15px;
  }

  .management .section--03 .list li p {
    margin-top: 25px;
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
 
  
  .management .section--03 .heading {
    margin-bottom: 65px;
  }

  .management .section--03 .title {
    font-size: 2.4rem;
  }

  .management .section--03 .title span {
    width: 25px;
    height: 2px;
    margin: 8px 0 20px;
  }

  .management .section--03 .text {
    font-size: 1.5rem;
  }

  .management .section--03 .list {
    gap: 8px 0;
    margin: -10px;
  }

  .management .section--03 .list li {
    width: 50%;
    padding: 10px;
  }

  .management .section--03 .list li p {
    margin-top: 20px;
    font-size: 1.5rem;
  }
}

@media (max-width: 500px) {

  .management .section--03 .heading {
    margin-bottom: 55px;
  }

  .management .section--03 .title {
    font-size: 2.2rem;
  }

  .management .section--03 .title span {
    width: 20px;
    height: 2px;
    margin: 5px 0 15px;
  }

  .management .section--03 .text {
    font-size: 1.4rem;
  }
  
  .management .section--03 .list {
    gap: 5px 0;
    margin: -8px;
  }

  .management .section--03 .list li {
    padding: 8px;
  }

  .management .section--03 .list li p {
    margin-top: 15px;
    font-size: 1.4rem;
  }
}
/* S: management */

/* S: Status */
.status .section--03 .heading {
  margin-bottom: 37px;
}

.status .section--03 .title {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.status .section--03 .title span {
  display: block;
  width: 40px;
  height: 2px;
  margin: 11px 0 37px;
  background-color: #0d8afc;
}

.status .section--03 .text {
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.status .section--03 .list {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  margin: -20px;
}

.status .section--03 .list li {
  width: 33.333%;
  padding: 20px;
}

.status .section--03 .list li .thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.706 / 1;
  border: 1px solid #f0f0f0;
  margin-bottom: 37px;
}

.status .section--03 .list li .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.status .section--03 .list li .tit {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.status .section--03 .list li .txt {
  position: relative;
  padding-left: 8px;
  font-size: 1.8rem;
  line-height: 1.33;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.status .section--03 .list li .txt::after {
  content: "·";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
}

@media(max-width:1200px) {
  .status .section--03 .heading {
    margin-bottom: 30px;
  }

  .status .section--03 .title {
    font-size: 3.2rem;
  }

  .status .section--03 .title span {
    width: 35px;
    height: 2px;
    margin: 10px 0 35px;
  }

  .status .section--03 .text {
    font-size: 1.8rem;
  }

  .status .section--03 .list {
    margin: -15px;
  }

  .status .section--03 .list li {
    padding: 15px;
  }

  .status .section--03 .list li .thumb {
    margin-bottom: 30px;
  }

  .status .section--03 .list li .tit {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }

  .status .section--03 .list li .txt {
    padding-left: 8px;
    font-size: 1.6rem;
  }
}

@media(max-width:1024px) {
  .status .section--03 .heading {
    margin-bottom: 25px;
  }

  .status .section--03 .title {
    font-size: 2.8rem;
  }

  .status .section--03 .title span {
    width: 30px;
    height: 2px;
    margin: 8px 0 30px;
  }

  .status .section--03 .text {
    font-size: 1.6rem;
  }

  .status .section--03 .list {
    margin: -10px;
  }

  .status .section--03 .list li {
    padding: 10px;
  }

  .status .section--03 .list li .thumb {
    margin-bottom: 25px;
  }

  .status .section--03 .list li .tit {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }

  .status .section--03 .list li .txt {
    padding-left: 6px;
    font-size: 1.5rem;
  }
}

@media(max-width:768px) {
  .status .section--03 .heading {
    margin-bottom: 20px;
  }

  .status .section--03 .title {
    font-size: 2.4rem;
  }

  .status .section--03 .title span {
    width: 25px;
    height: 2px;
    margin: 8px 0 25px;
  }

  .status .section--03 .text {
    font-size: 1.5rem;
  }

  .status .section--03 .list {
    margin: -8px;
    gap: 20px 0;
  }

  .status .section--03 .list li {
    width: 50%;
    padding: 8px;
  }

  .status .section--03 .list li .thumb {
    margin-bottom: 20px;
  }

  .status .section--03 .list li .tit {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }

  .status .section--03 .list li .txt {
    font-size: 1.4rem;
  }
}

@media(max-width:500px) {
  .status .section--03 .heading {
    margin-bottom: 15px;
  }

  .status .section--03 .title {
    font-size: 2.2rem;
  }

  .status .section--03 .title span {
    width: 20px;
    height: 2px;
    margin: 5px 0 20px;
  }

  .status .section--03 .text {
    font-size: 1.4rem;
  }

  .status .section--03 .list {
    margin: -5px;
    gap: 15px 0;
  }

  .status .section--03 .list li {
    padding: 5px;
  }

  .status .section--03 .list li .thumb {
    margin-bottom: 15px;
  }

  .status .section--03 .list li .tit {
    margin-bottom: 8px;
    font-size: 1.4rem;
  }

  .status .section--03 .list li .txt {
    font-size: 1.3rem;
  }
}

/* E:Status */
.news .section--01 {
  padding-bottom: 0;
}

.news .page-title {
  margin-top: 0;
}
