section .container {
  display: flex;
  padding: 100px 20px;
}
@media screen and (max-width: 768px) {
  section .container {
    padding: 50px 15px 0;
    flex-direction: column;
    gap: 20px;
  }
  section .container:last-of-type {
    padding-bottom: 50px;
  }
}
section .container .contents {
  width: 50%;
  padding-right: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  section .container .contents {
    width: 100%;
    display: contents;
    padding-right: 0px;
  }
}
@media screen and (max-width: 768px) {
  section .container .contents hgroup {
    display: contents;
  }
}
section .container .contents .contents-title {
  font-size: 60px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 36px;
  width: fit-content;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  section .container .contents .contents-title {
    font-size: clamp(40px, 4vw, 52px);
    order: 1;
  }
}
section .container .contents .contents-title:after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: #0048CF;
  clip-path: polygon(calc(100% - 4px) 0%, 100% 0%, 4px 100%, 0% 100%);
  translate: 0 -26px;
}
@media screen and (max-width: 768px) {
  section .container .contents .contents-title:after {
    width: 14px;
    height: 14px;
    translate: 0 -18px;
  }
}
section .container .contents .contents-copy {
  font-size: 25px;
  font-weight: 700;
  color: #0048CF;
}
@media screen and (max-width: 768px) {
  section .container .contents .contents-copy {
    order: 3;
    font-size: clamp(20px, 4vw, 25px);
  }
}
section .container .img-area {
  width: 50vw;
  margin-right: -50vw;
}
@media screen and (max-width: 768px) {
  section .container .img-area {
    order: 2;
    width: 100vw;
    margin-right: 0;
    margin-inline: calc(50% - 50vw);
    padding-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  section .container .text {
    order: 4;
  }
}
section .container:nth-of-type(even) .contents {
  padding-right: 0;
  padding-left: 60px;
  order: 2;
}
@media screen and (max-width: 768px) {
  section .container:nth-of-type(even) .contents {
    padding-left: 0px;
  }
}
section .container:nth-of-type(even) .img-area {
  order: 1;
  width: 50vw;
  margin-left: calc((50vw - 50%) * -1);
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  section .container:nth-of-type(even) .img-area {
    order: 2;
    width: 100vw;
    margin-right: 0;
    margin-inline: calc(50% - 50vw);
    padding-left: 15px;
  }
}

.bg--line--wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 120vw;
  translate: -10vw 0;
  height: 100%;
  overflow: hidden;
}

/*# sourceMappingURL=concept.css.map */
