/* Main Common */
.section {
  min-height: 100vh;
  height: 100%;
  padding: 120px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-title {
  display: flex;
  align-items: center;
  color: #0d8afc;
  margin-top: -4px;
}

.section-title > span {
  display: block;
  width: 80px;
  height: 2px;
  margin: 0 40px 0 0;
  background-color: #0d8afc;
}

.section-title h3 span {
  display: block;
  font-size: 3.2rem;
  font-family: "Montserrat";
  font-weight: 700;
  line-height: 1;
}

.view-more-btn a {
  display: flex;
  align-items: center;
  position: relative;
  width: 123px;
  height: 50px;
  vertical-align: middle;
}

.view-more-btn a img {
  z-index: 1;
}

.view-more-btn a p {
  position: absolute;
  top: 5px;
  left: -1px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  z-index: 1;
}

.view-more-btn a p span {
  display: block;
  transform: translateY(100%);
  transition: all 0.3s ease-out;
}

.view-more-btn a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -16px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0d8afc;
  z-index: 0;
  opacity: 0.8;
}

.view-more-btn a:hover p span {
  transform: translateY(0);
}

@media (min-width: 1201px) {
  .view-more-btn a:hover p span {
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .section {
    min-height: fit-content;
    padding: 105px 0;
  }

  .section-title > span {
    width: 70px;
    margin: 0 30px 0 0;
  }

  .section-title h3 span {
    font-size: 3rem;
  }

  .view-more-btn a {
    width: 115px;
    height: 45px;
  }

  .view-more-btn a p {
    top: 4px;
    font-size: 1.5rem;
  }

  .view-more-btn a::before {
    width: 45px;
    height: 45px;
  }

  .view-more-btn a p span {
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 90px 0;
  }

  .section-title > span {
    width: 60px;
    margin: 0 20px 0 0;
  }

  .section-title h3 span{
    font-size: 2.8rem;
  }

  .view-more-btn a {
    width: 105px;
    height: 40px;
  }

  .view-more-btn a p {
    top: 2px;
    font-size: 1.4rem;
  }

  .view-more-btn a::before {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 75px 0;
  }

  .section-title > span {
    width: 60px;
    margin: 0 20px 0 0;
  }

  .section-title h3 span  {
    font-size: 2.6rem;
  }

  .view-more-btn a {
    width: 90px;
    height: 35px;
  }

  .view-more-btn a p {
    top: 0px;
    font-size: 1.3rem;
  }

  .view-more-btn a::before {
    right: -10px;
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 500px) {
  .section {
    padding: 60px 0;
  }

  .section-title > span {
    width: 50px;
    margin: 0 15px 0 0;
  }

  .section-title h3 span{
    font-size: 2.2rem;
  }

  .view-more-btn a {
    width: 75px;
    height: 30px;
  }

  .view-more-btn a p {
    top: -2px;
    font-size: 1.2rem;
  }

  .view-more-btn a::before {
    width: 30px;
    height: 30px;
  }
}

/* Section--01 MainVisual */
.section--01 {
  width: 100%;
  height: calc(100vh - 104px);
  padding: 0px;
  position: relative;
  background-color: #000;
}

.section--01 .main_visual {
  position: relative;
  width: 100%;
  height: 100%;
}

.section--01 .text {
  position: absolute;
  top: calc(50% + 25px);
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1381px;
  width: 100%;
  padding: 0px 51px;
  z-index: 2;
  color: #fff;
}

.section--01 .visual_ani.ani01 {
  margin-bottom: 56px;
  font-size: 8.8rem;
  font-weight: 700;
}

.section--01 .visual_ani.ani02 {
  margin-bottom: 16px;
  font-size: 3.6rem;
  font-weight: 700;
}

.section--01 .visual_ani.ani03 {
  margin-bottom: 68px;
  font-size: 2.4rem;
  line-height: 1.5;
}

.section--01 .visual_ani.ani03 span {
  display: block;
  font-weight: 700;
}

.section--01 .background {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section--01 .background.background--01 {
  background-image: url("/en/img/main/main_visual01.png");
}

.section--01 .background.background--02 {
  background-image: url("/en/img/main/main_visual02.png");
}

.section--01 .background.background--03 {
  background-image: url("/en/img/main/main_visual03.png");
}

.section--01 .scroll-down {
  position: absolute;
  width: 24px;
  height: 58px;
  left: 50%;
  bottom: 33px;
  transform: translateX(-50%);
  z-index: 5;
  animation: scrollIconAni 0.8s ease-out alternate infinite;
  cursor: pointer;
}

@keyframes scrollIconAni {
  0% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

/* Swiper */
.section--01 .swiper-container {
  height: 100%;
}

.section--01 .swiper-wrapper {
  height: 100%;
}

.section--01 .swiper-slide {
  height: 100%;
  overflow: hidden;
}

.section--01 .swiper-controls {
  position: absolute;
  z-index: 3;
  top: calc(50% + 22px);
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1710px;
  width: 100%;
  height: fit-content;
  padding: 0 15px;
  color: #fff;
}

.section--01 .swiper-controls .arrow {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.section--01 .swiper-controls .arrow .prev {
  width: 16px;
  height: 28px;
  background-image: url("/en/img/main/visual_arrow_prev.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
  transition: opacity 0.3s ease-out;
}

.section--01 .swiper-controls .arrow .next {
  width: 16px;
  height: 28px;
  background-image: url("/en/img/main/visual_arrow_next.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
  transition: opacity 0.3s ease-out;
}

.section--01 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 10px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
}

.section--01 .swiper-pagination-bullet:first-of-type {
  margin-left: 0;
}

.section--01 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 1;
}

.section--01 .controls-navi {
  display: flex;
  align-items: center;
}

.section--01 .controls-navi .swiper-pagination-bullets {
  margin: 0;
}

.section--01 .controls-navi .btns .btn-stop {
  width: 8px;
  height: 12px;
  margin-left: 10px;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}


/* .section--01 .visual_ani.ani02 p {
  transform: translateY(100%);
}

.section--01 .swiper-slide.swiper-slide-active .visual_ani.ani02 p {
  animation: textAni .5s ease-out forwards;
} */
 
.section--01 .visual_ani.ani01 p {
  transform: translateX(-10%);
  opacity: 0;
}

.section--01 .visual_ani.ani02 p {
  transform: translateX(-10%);
  opacity: 0;
}

.section--01 .visual_ani.ani03 p {
  transform: translateX(-10%);
  opacity: 0;
}

.section--01 .visual_title.aos-animate .visual_ani.ani01 p {
  animation: textAni .8s ease-out forwards;
}
.section--01 .visual_title.aos-animate .visual_ani.ani02 p {
  animation: textAni .8s ease-out forwards;
  animation-delay: .2s;
}
.section--01 .visual_title.aos-animate .visual_ani.ani03 p {
  animation: textAni .8s ease-out forwards;
  animation-delay: .2s;
}

@keyframes textAni {
  0% {
    transform: translateX(-10%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (min-width: 1201px) {
  .section--01 .swiper-controls .arrow .prev:hover {
    opacity: 1;
  }

  .section--01 .swiper-controls .arrow .next:hover {
    opacity: 1;
  }
}

@media (max-width: 1200px) {
  .section--01 {
    height: 800px;
  }

  .section--01 .text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .section--01 .visual_ani.ani01 {
    margin-bottom: 65px;
    font-size: 7.4rem;
  }
  
  .section--01 .visual_ani.ani02 {
    margin-bottom: 15px;
    font-size: 3.4rem;
  }
  
  .section--01 .visual_ani.ani03 {
    margin-bottom: 75px;
    font-size: 2.2rem;
  }
  
  .section--01 .swiper-controls {
    top: 60%;
  }

  .section--01 .swiper-controls .arrow .prev {
    height: 22px;
    width: 13px;
    opacity: 1;
  }

  .section--01 .swiper-controls .arrow .next {
    height: 22px;
    width: 13px;
    opacity: 1;
  }
  
  .section--01 .visual_ani.ani01 p {
    transform: translateY(10%);
    opacity: 0;
  }
  
  .section--01 .visual_ani.ani02 p {
    transform: translateY(10%);
    opacity: 0;
  }
  
  .section--01 .visual_ani.ani03 p {
    transform: translateY(10%);
    opacity: 0;
  }
  
  .section--01 .visual_title.aos-animate .visual_ani.ani01 p {
    animation: textAni .8s ease-out forwards;
  }
  .section--01 .visual_title.aos-animate .visual_ani.ani02 p {
    animation: textAni .8s ease-out forwards;
    animation-delay: .2s;
  }
  .section--01 .visual_title.aos-animate .visual_ani.ani03 p {
    animation: textAni .8s ease-out forwards;
    animation-delay: .2s;
  }
  
  @keyframes textAni {
    0% {
      transform: translateY(10%);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
}

@media (max-width: 1024px) {
  .section--01 {
    height: 700px;
  }
  
  .section--01 .text {
    padding: 0 15px;
    text-align: center;
  }
 
  .section--01 .visual_ani.ani01 {
    margin-bottom: 55px;
    font-size: 6rem;
  }
  
  .section--01 .visual_ani.ani02 {
    margin-bottom: 12px;
    font-size: 3.2rem;
  }
  
  .section--01 .visual_ani.ani03 {
    margin-bottom: 65px;
    font-size: 2rem;
  }

  .section--01 .controls-navi {
    justify-content: center;
  }
  
  .section--01 .swiper-controls {
    display: none;
    max-width: none;
    width: auto;
    top: 70%;
    z-index: 4;
  }

  .section--01 .swiper-controls .arrow {
    margin: 0;
  }

  .section--01 .swiper-controls .arrow .prev {
    position: absolute;
    top: 50%;
    left: 0;
  }

  .section--01 .swiper-controls .arrow .next {
    position: absolute;
    top: 50%;
    right: 0;
  }
}

@media (max-width: 768px) {
  .section--01 {
    height: 600px;
  }
  
  .section--01 .visual_ani.ani01 {
    margin-bottom: 45px;
    font-size: 5.6rem;
  }
  
  .section--01 .visual_ani.ani02 {
    font-size: 2.8rem;
  }
  
  .section--01 .visual_ani.ani03 {
    margin-bottom: 55px;
    font-size: 1.8rem;
  }
  
  .section--01 .swiper-controls {
    top: 80%;
  }

  .section--01 .swiper-controls .arrow .prev,
  .section--01 .swiper-controls .arrow .next {
    width: 11px;
    height: 18px;
  }

  .section--01 .scroll-down {
    display: none;
  }
}

@media (max-width: 500px) {
  .section--01 {
    height: 500px;
  }

  .section--01 .visual_ani.ani01 {
    margin-bottom: 40px;
    font-size: 4.2rem;
  }
  
  .section--01 .visual_ani.ani02 {
    margin-bottom: 10px;
    font-size: 2.4rem;
  }
  
  .section--01 .visual_ani.ani03 {
    margin-bottom: 45px;
    font-size: 1.6rem;
  }

  .section--01 .swiper-controls {
    top: 85%;
  }
}

/* Section--02 */
.section--02 {
  position: relative;
  background-image: url("/en/img/main/section02_background.png");
  overflow: hidden;
}

.section--02::after {
  content: "DONGWON PIPE";
  display: block;
  position: absolute;
  bottom: -14px;
  right: -3px;
  font-size: 9.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  opacity: 0.05;
}

/* .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 .container {
  position: relative;
  z-index: 1;
}

.section--02 .line li {
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}

.section--02 .section-text {
  position: relative;
  margin: 85px 0 82px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.section--02 .section-text h4 {
  margin: 0 0 25px;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
}

.section--02 .section-text p {
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.6;
}

.section--02 .company_contents {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  justify-content: space-around;
  color: #fff;
  margin: 0 0 89px;
}

.section--02 .company_contents .icon {
  margin: 0 0 47px;
}

.section--02 .company_contents li {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  /* max-width: 260px; */
  width: 25%;
}

.section--02 .company_contents li:first-of-type {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.section--02 .company_contents li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 279px;
  background-color: rgba(255, 255, 255, 0.1);
}

.section--02 .company_contents li .text--01 {
  margin: 0 0 28px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}

.section--02 .company_contents li .count_number {
  display: flex;
  align-items: baseline;
}

.section--02 .company_contents .count {
  margin: 0 0 25px;
  font-size: 6.4rem;
  font-weight: 800;
  line-height: 1;
}

.section--02 .company_contents span {
  font-size: 2.8rem;
  font-weight: 600;
}

.section--02 .company_contents li .text--02 {
  font-size: 2rem;
  font-weight: 500;
  color: #bbbbbb;
  line-height: 1;
}

.section--02 .view-more-btn a {
  margin: 0 auto;
}

@media (max-width: 1200px) {
  
  .section--02::after {
    bottom: -12px;
    right: -3px;
    font-size: 8.4rem;
  }


  .section--02 .section-text {
    margin: 75px 0 72px;
  }

  .section--02 .section-text h4 {
    margin: 0 0 20px;
    font-size: 4.4rem;
  }

  .section--02 .section-text p {
    font-size: 1.8rem;
  }

  .section--02 .company_contents {
    margin: 0 0 80px;
  }

  .section--02 .company_contents .icon {
    margin: 0 0 40px;
  }

  .section--02 .company_contents li .text--01 {
    margin: 0 0 25px;
    font-size: 2.2rem;
  }

  .section--02 .company_contents .count {
    margin: 0 0 20px;
    font-size: 5.8rem;
  }

  .section--02 .company_contents span {
    font-size: 2.6rem;
  }

  .section--02 .company_contents li .text--02 {
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .section--02::after {
    bottom: -10px;
    right: -2px;
    font-size: 7.4rem;
  }

  
  .section--02 .line li:nth-child(-n + 2) {
    display: none;
  }

  .section--02 .section-text {
    margin: 65px 0 62px;
  }

  .section--02 .section-text h4 {
    margin: 0 0 15px;
    font-size: 4rem;
  }

  .section--02 .section-text p {
    font-size: 1.6rem;
  }

  .section--02 .company_contents {
    margin: 0 0 70px;
  }

  .section--02 .company_contents li {
    max-width: 50%;
    width: 50%;
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section--02 .company_contents li:nth-child(-n + 2) {
    padding: 0 0 30px;
  }
  
  .section--02 .company_contents li:first-of-type {
    border-left: none;
  }
  
  .section--02 .company_contents li:nth-of-type(2n) {
    border-right: none;
  }

  .section--02 .company_contents li::after {
    display: none;
  }
  
  .section--02 .company_contents .icon {
    margin: 0 0 30px;
  }

  .section--02 .company_contents li .text--01 {
    margin: 0 0 20px;
    font-size: 2rem;
  }

  .section--02 .company_contents li .text--01 {
    font-size: 1.8rem;
  }

  .section--02 .company_contents .count {
    margin: 0 0 15px;
    font-size: 5.2rem;
  }

  .section--02 .company_contents span {
    font-size: 2.2rem;
  }

  .section--02 .company_contents li .text--02 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .section--02::after {
    bottom: -8px;
    right: -1px;
    font-size: 6rem;
  }

  .section--02 .section-text {
    margin: 55px 0 52px;
  }

  .section--02 .section-text h4 {
    font-size: 3.6rem;
  }

  .section--02 .section-text p {
    font-size: 1.5rem;
  }

  .section--02 .company_contents {
    margin: 0 0 60px;
  }

  .section--02 .company_contents li:nth-child(-n + 2) {
    padding: 0 0 35px;
  }

  .section--02 .company_contents .icon {
    width: 60px;
    height: 60px;
    margin: 0 0 20px;
  }

  .section--02 .company_contents li .text--01 {
    margin: 0 0 15px;
    font-size: 1.6rem;
  }

  .section--02 .company_contents .count {
    margin: 0 0 12px;
    font-size: 4.6rem;
  }

  .section--02 .company_contents span {
    font-size: 2rem;
  }

  .section--02 .company_contents li .text--02 {
    font-size: 1.5rem;
  }
}

@media (max-width: 500px) {
  .section--02::after {
    bottom: -4px;
    right: -1px;
    font-size: 4.4rem;
  }
  
  .section--02 .section-text {
    margin: 45px 0 42px;
  }

  .section--02 .section-text h4 {
    font-size: 3rem;
  }

  .section--02 .section-text p {
    font-size: 1.4rem;
  }

  .section--02 .section-text p br {
    display: none;
  }

  .section--02 .company_contents {
    margin: 0 0 50px;
  }

  .section--02 .company_contents li:nth-child(-n + 2) {
    padding: 0 0 30px;
  }
  
  .section--02 .company_contents li .count_number {
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
  }

  .section--02 .company_contents .icon {
    width: 55px;
    height: 55px;
    margin: 0 0 15px;
  }

  .section--02 .company_contents li .text--01 {
    margin: 0 0 12px;
    font-size: 1.6rem;
    text-align: center;
  }

  .section--02 .company_contents .count {
    font-size: 4rem;
    margin-bottom: 0;
  }

  .section--02 .company_contents span {
    font-size: 1.8rem;
  }

  .section--02 .company_contents li .text--02 {
    font-size: 1.4rem;
    text-align: center;
  }
}

/* Section--03 */
.section--03 {
  position: relative;
  background-image: url("/en/img/main/section03_background.png");
}

.section--03 .background_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section--03 .background_list {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: opacity 0.4s ease-out;
}

.section--03 .background_list.list--01 {
  background-image: url("/en/img/main/section03_background1.png");
}

.section--03 .background_list.list--02 {
  background-image: url("/en/img/main/section03_background2.png");
}

.section--03 .background_list.list--03 {
  background-image: url("/en/img/main/section03_background3.png");
}

.section--03 .container {
  position: relative;
  z-index: 3;
}

.section--03 .technology_contents {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 143px 0 0;
}

.section--03 .technology__item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  max-width: 400px;
  width: 33%;
  height: 400px;
  margin: 0 20px;
  padding: 0 0 0 65px;
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.3s ease-out;
}

.section--03 .item__title {
  margin: 0 0 23px;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
}

.section--03 .item_conText span {
  display: block;
  max-width: 285px;
  margin: 0 0 45px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}

.section--03 .background_list.on {
  opacity: 1;
  z-index: 2;
}

.section--03 .technology__item.on {
  background-color: #0d8afc;
  border: 1px solid #0d8afc;
}

@media (max-width: 1200px) {
  .section--03 .technology_contents {
    margin: 125px 0 0;
  }

  .section--03 .technology__item {
    margin: 0 15px;
    padding: 0 0 0 45px;
  }

  .section--03 .item__title {
    margin: 0 0 20px;
    font-size: 3rem;
  }

  .section--03 .item_conText span {
    margin: 0 0 40px;
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .section--03 .technology_contents {
    margin: 105px 0 0;
  }

  .section--03 .technology__item {
    height: 350px;
    margin: 0 10px;
    padding: 0 25px;
  }

  .section--03 .item__title {
    margin: 0 0 15px;
    font-size: 2.8rem;
  }

  .section--03 .item_conText span {
    margin: 0 0 35px;
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .section--03 .technology_contents {
    flex-direction: column;
    margin: 85px 0 0;
  }

  .section--03 .technology__item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
    height: 200px;
    margin: 0 0 20px;
  }

  .section--03 .item_conText {
    margin-right: 20px;
  }

  .section--03 .item__title {
    margin: 0 0 12px;
    font-size: 2.6rem;
  }

  .section--03 .item_conText span {
    max-width: 100%;
    margin: 0;
    font-size: 1.5rem;
  }

  .section--03 .item_conText span br {
    display: none;
  }
}

@media (max-width: 500px) {
  .section--03 .technology_contents {
    margin: 65px 0 0;
  }

  .section--03 .technology__item {
    height: 150px;
    margin: 0 0 15px;
  }

  .section--03 .item_conText {
    margin-right: 15px;
  }

  .section--03 .item__title {
    font-size: 2.2rem;
  }

  .section--03 .item_conText span {
    font-size: 1.4rem;
  }
}

/* Section--04 */
.section--04 {
  background-image: url("/en/img/main/section04_background.png");
}

.section--04 .list_tab_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 75px 0 40px;
  padding-right: 16px;
}

.section--04 .view-more-btn a p {
  color: #000;
}

.section--04 .list_tab {
  display: flex;
  align-items: center;
  width: 100%;
}

.section--04 .list_tab li {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 240px;
  width: 100%;
  height: 56px;
  margin: 0 20px 0 0;
  border: 1px solid #888;
  border-radius: 10px;
}

.section--04 .list_tab li .button--tab {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 500;
  color: #888;
}

.section--04 .list_tab li.on {
  background-color: #0d8afc;
  border: 1px solid #0d8afc;
}

.section--04 .list_tab li.on .button--tab {
  color: #fff;
}

.section--04 .view-more-btn {
  display: none;
}

.section--04 .view-more-btn.on {
  display: block;
}

.section--04 .tab_con{
  display: none;
}

.section--04 .tab_con.on{
  display: block;
}


@media (max-width: 1200px) {
  .section--04 .list_tab_wrap {
    margin: 65px 0 35px;
  }

  .section--04 .list_tab li {
    max-width: 210px;
    height: 55px;
  }

  .section--04 .list_tab li .button--tab {
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .section--04 .list_tab_wrap {
    margin: 55px 0 30px;
  }

  .section--04 .list_tab li {
    max-width: 180px;
    height: 50px;
    margin: 0 15px 0 0;
  }

  .section--04 .list_tab li .button--tab {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .section--04 .list_tab_wrap {
    margin: 45px 0 25px;
  }

  .section--04 .list_tab li {
    max-width: 150px;
    height: 45px;
    margin: 0 10px 0 0;
  }

  .section--04 .list_tab li .button--tab {
    font-size: 1.5rem;
  }
}

@media (max-width: 500px) {
  .section--04 .list_tab_wrap {
    margin: 35px 0 20px;
  }

  .section--04 .list_tab li {
    max-width: 120px;
    height: 40px;
    margin: 0 5px 0 0;
  }

  .section--04 .list_tab li .button--tab {
    font-size: 1.4rem;
  }
}

/* Section--05 */
.section--05 {
  display: flex;
  flex-wrap: wrap;
  min-height: 380px;
  height: 380px;
  padding: 0;
}

.section--05 .section_band {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  color: #fff;
}

.section--05 .section_band.band--01 {
  background-image: url("/en/img/main/section05_background01.png");
}

.section--05 .section_band.band--02 {
  background-image: url("/en/img/main/section05_background02.png");
}

.section--05 .band__title {
  margin: 10px 0;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.section--05 .band__title span {
  display: block;
}

.section--05 .band_item > span {
  display: block;
  margin: 0 0 37px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
}

.section--05 .view-more-btn a {
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .section--05 {
    min-height: 330px;
    height: 330px;
  }

  .section--05 .band__title {
    font-size: 3.6rem;
  }

  .section--05 .band_item > span {
    margin: 0 0 35px;
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .section--05 {
    min-height: 280px;
    height: 280px;
  }

  .section--05 .band__title {
    font-size: 3.4rem;
  }

  .section--05 .band_item > span {
    margin: 0 0 30px;
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .section--05 {
    flex-direction: column;
    min-height: 230px;
    height: fit-content;
  }

  .section--05 .section_band {
    width: 100%;
    height: 230px;
  }

  .section--05 .band__title {
    margin: 8px 0;
    font-size: 3rem;
  }

  .section--05 .band_item > span {
    margin: 0 0 25px;
    font-size: 1.5rem;
  }
}

@media (max-width: 500px) {
  .section--05 .section_band {
    height: 150px;
  }

  .section--05 .band__title {
    font-size: 2.6rem;
  }

  .section--05 .band_item > span {
    margin: 0 0 15px;
    font-size: 1.4rem;
  }
}

/* Popup */
#popup {
	position: relative;
  }
  
  .popup-layer {
	z-index: 10000;
	position: absolute;
	background: #fff;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,.25);
	animation: popup-fade .65s ease-in-out .35s forwards;
	opacity: 0;
	max-width:800px;
  }
  
  @keyframes popup-fade {
	0% { opacity: 0;
	  -webkit-transform: translateY(25px);
	  -ms-transform: translateY(25px);
	  transform: translateY(25px); }
	100% { opacity: 1;
	  -webkit-transform: translateY(0);
	  -ms-transform: translateY(0);
	  transform: translateY(0); }
  }
  .popup-layer__body {
	background: #fff;
  }
  
  .popup-layer__body img {
	display: block;
	margin: 0 auto;
	border: none;
	max-width: 100%;
  }
  
  .popup-layer__foot {
	background: #424242;
  }
  
  .popup-layer__foot ul {
	display:flex;
	flex-wrap: wrap;
  }
  
  .popup-layer__foot li {
	width:50%;
	padding:10px;
  }
  
  .popup-layer__foot li:first-child {
	padding-right:0;
  }
  
  .popup-layer__foot li:last-child {
	text-align: right;
  }
  
  .popup-layer__foot span {
	font-size: 1.5rem;
	color: #fff;
	cursor: pointer;
	transition:all 0.3s ease;
  }
  
  .popup-layer__foot label:hover span { opacity: .7; }
  
  /* .popup-layer-foot { background: #424242; }
  .popup-layer-foot span { font-size: 15px; color: #fff; }
  .popup-layer-foot label:hover span { opacity: .7; }
  .popup-layer-foot li:first-child { padding-right: 0; }
  .popup-layer-foot li:last-child { text-align: right; } */
  
  
  @media (max-width: 1024px){
	/* .popup-layer { z-index: 999; } */
	.popup-layer { top: 95px !important; left: 0 !important; margin: 0 5px; }
  }
  @media (max-width: 768px){
  
	.popup-layer {
	  width:calc(100% - 10px);
	}
  
	.popup-layer img {
	  max-width: none;
	  width:100%;
	  height: auto !important;
	}
	.popup-layer-foot span { font-size: 14px; }
  
  }
  @media (max-width: 375px){
	.popup-layer-foot li { width: 100%; }
	.popup-layer-foot li:last-child { text-align: left; }
  }