/* ==========================================================================
   CHOI JAE HOON
   ========================================================================== */
.m-relative {
  position: relative;
}

/*-------- animation delay ----------*/
.js-inview.-delay1 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.js-inview.-delay2 {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.js-inview.-delay3 {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

/*----------- slideTextAnimation --------------*/
.c-slidetext {
  display: inline-block;
  position: relative;
}

.c-slidetext__inner {
  display: inline-block;
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
}

.c-slidetext__inner img {
  position: absolute;
  left: 0;
  top: 0;
  max-width: none;
  display: block;
}

.c-slidetext.on .c-slidetext__inner {
  -webkit-animation: slideText 0.5s linear 0.5s forwards;
  animation: slideText 0.5s linear 0.5s forwards;
}

.c-slidetext.on:nth-of-type(2) .c-slidetext__inner {
  -webkit-animation: slideText 1s linear 0.7s forwards;
  animation: slideText 1s linear 0.7s forwards;
}

.c-slidetext.m-vertical .c-slidetext__inner {
  width: 100%;
  height: 0;
}

.c-slidetext.m-vertical.on .c-slidetext__inner {
  -webkit-animation: slideText-v 0.5s linear 0.5s forwards;
  animation: slideText-v 0.5s linear 0.5s forwards;
}

.c-slidetext.-long1.on .c-slidetext__inner {
  -webkit-animation: slideText 0.9s linear 0.5s forwards;
  animation: slideText 0.9s linear 0.5s forwards;
}

@-webkit-keyframes slideText {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes slideText {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes slideText-v {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}

@keyframes slideText-v {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}

@media screen and (max-width: 639px) {
  main {
    overflow-x: hidden;
  }
}

/*-----------------------------------*/
.l-contents {
  height: 100%;
}

.p-brand__mvContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.p-brand__logo {
  position: static;
}

.p-brand__logo img {
  width: 100%;
  height: auto;
}

.p-brand__desc {
  margin-bottom: 0;
}

.p-brand__mvContainer {
  position: relative;
}

/* .p-brand__mvContainer::before {
		content: "";
		width: 100%;
		height: 100%;
		background-color: #ede1d1;
		position: absolute;
		left: 0;
		top: 0;
} */

.p-brand__mvTitle {
  opacity: 0;
  -webkit-transition-duration: 1.25s;
  transition-duration: 1.25s;
  -webkit-transition-delay: 1.25s;
  transition-delay: 1.25s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.p-brand__mv.on .p-brand__mvContainer::before {
  -webkit-animation: "slideup"1s ease 0.75s forwards;
  animation: "slideup"1s ease 0.75s forwards;
}

.p-brand__mv.on .p-brand__mvTitle {
  opacity: 1;
}

@-webkit-keyframes slideup {
  0% {
    height: 100%;
  }

  100% {
    height: 0;
  }
}

@keyframes slideup {
  0% {
    height: 100%;
  }

  100% {
    height: 0;
  }
}

@media screen and (min-width: 640px) {
  .p-brand__mv {
    background-image: url(../img/bg-mv-01.jpg);
    background-position: top center;
    height: 658px;
    padding-top: 0;
  }

  .p-brand__mvContainer {
    width: 41.67%;
    height: 658px;
  }

  .p-brand__mvTitle {
    width: 387px;
    margin-top: clamp(125px, -0.032px + 8.68vw, 270px);
    margin-left: auto;
    margin-right: 95px;
  }

  .p-brand__logo {
    width: 100%;
    max-width: 387px;
    padding: 0 40px;
  }

  .p-brand__container {
    padding-top: 135px;
  }

  .p-brand__body {
    padding-bottom: 135px;
  }
}

@media screen and (max-width: 639px) {
  .p-brand__mv {
    height: 130.2083333333vw;
    background-image: url(../img/bg-mv-01-sp.jpg);
    overflow: hidden !important;
  }

  .p-brand__mvContainer {
    height: 100%;
  }

  .p-brand__logo {
    position: absolute;
    width: 41.8666666667vw;
    -webkit-transform: none;
    transform: none;
    top: 21.3333333333vw;
    left: 8vw;
  }

  .p-brand__title {
    display: inline-block;
    width: 47.7333333333vw;
  }

  .p-brand__container {
    padding-top: 19.53125vw;
  }

  .p-brand__body {
    padding-bottom: 22.1354166667vw;
  }
}

.simpleParallax {
  position: absolute;
  width: 100%;
  height: 670px;
}

@media screen and (max-width: 639px) {
  .simpleParallax {
    height: 71.6145833333vw;
  }
}

.m-h100 .simpleParallax {
  height: 100%;
}

.p-brand__section {
  position: relative;
}

.p-brand__section .p-brand__inner {
  max-width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}

@media screen and (max-width: 639px) {
  .p-brand__section .p-brand__inner {
    padding: 0 5.2083333333vw;
  }
}

.p-brand__section .p-brand__inner .inner-box p {
  color: #4c4948;
  font-size: 14px;
  line-height: 2.4285714286;
}

@media screen and (max-width: 639px) {
  .p-brand__section .p-brand__inner .inner-box p {
    font-size: 2.8645833333vw;
    line-height: 1.8181818182;
  }
}

.p-brand__section .p-brand__inner .txt-area {
  margin-top: 25px;
  margin-bottom: 45px;
}

@media screen and (max-width: 639px) {
  .p-brand__section .p-brand__inner .txt-area {
    margin-top: 4vw;
    margin-bottom: 0;
  }
}

.p-brand__section .p-brand__inner .txt {
  margin-top: 25px;
}

@media screen and (max-width: 639px) {
  .p-brand__section .p-brand__inner .txt {
    margin-top: 5.2083333333vw;
  }
}

.p-brand__section.m-sec01 {
  padding-top: 100px;
  padding-bottom: 150px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 {
    padding-top: 20.8333333333vw;
    padding-bottom: 19.53125vw;
  }
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .sec-title img {
    width: 14.8173913043vw;
  }
}

.p-brand__section.m-sec01 .p-brand__inner {
  width: 946px;
  margin-bottom: 0;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner {
    width: 100%;
    margin-bottom: 0;
  }
}

.p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(1) {
  width: 530px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(1) {
    width: 71.6145833333vw;
  }
}

.p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(2) .c-slidetext {
  width: 218px;
  height: 118px;
  position: absolute;
  top: 375px;
  left: 202px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext {
    position: absolute;
    width: 33.984375vw;
    height: 18.4895833333vw;
    top: -12vw;
    left: 55.467vw;
  }

  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext img {
    width: 33.984375vw;
    height: 18.4895833333vw;
  }
}

.p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(2) .c-slidetext:nth-of-type(2) {
  width: 181px;
  height: 110px;
  top: 434px;
  left: 243px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext:nth-of-type(2) {
    width: 28.73vw;
    height: 17.46vw;
    top: -2.133vw;
    left: 61.333vw;
  }

  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext:nth-of-type(2) img {
    width: 28.73vw;
    height: 17.46vw;
  }
}

.p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(2) {
  width: 350px;
  margin-top: 45px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(2) {
    margin-top: 0;
    padding-top: 8.4635416667vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(2) .cnt {
    width: 46.2239583333vw;
  }
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(2) .img {
    margin-top: -17.7083333333vw;
    width: 39.0625vw;
    position: relative;
  }
}

.p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(3) {
  padding-top: 45px;
  width: 350px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(3) {
    padding-top: 10.4166666667vw;
    width: 35.15625vw;
  }

  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(3) .img {
    margin-left: -5.2083333333vw;
    width: 35.15625vw;
  }
}

.p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(3) .c-slidetext {
  width: 119px;
  height: 94px;
  position: absolute;
  left: -60px;
  bottom: -46px;
}

.p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(3) p {
  margin-top: 65px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(3) p {
    margin-top: 19.53125vw;
  }
}

.p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(4) {
  padding-top: 95px;
  width: 470px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(4) {
    width: 58.59375vw;
    margin-right: -5.2083333333vw;
    padding-top: 17.578125vw;
  }
}

.p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(5) {
  padding-top: 150px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(5) {
    padding-top: 16.9270833333vw;
  }
}

.p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(5) .bg {
  position: absolute;
  width: 520px;
  top: -18px;
  left: -280px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(5) .bg {
    display: none;
  }
}

.p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(5) .img {
  position: relative;
  width: 450px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(5) .img {
    width: 42.96875vw;
    left: -5.2083333333vw;
  }
}

.p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(6) {
  padding-top: 100px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(6) {
    padding-top: 10.4166666667vw;
    width: 45.3125vw;
  }
}

.p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(6) .img1 {
  position: relative;
  z-index: 1;
  width: 340px;
  margin-left: 64px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(6) .img1 {
    width: 34.5052083333vw;
    margin-left: auto;
    margin-right: 0;
  }
}

.p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(6) .img2 {
  margin-top: -30px;
  width: 220px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(6) .img2 {
    width: 26.0416666667vw;
    padding-bottom: 0;
  }
}

.p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(6) .img2 .c-slidetext {
  width: 174px;
  height: 116px;
  position: absolute;
  right: -250px;
  bottom: 0;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(6) .img2 .c-slidetext {
    width: 20.1293532335vw;
    height: 15.5621890545vw;
    right: -16vw;
    bottom: -8vw;
  }

  .p-brand__section.m-sec01 .p-brand__inner .inner-box:nth-of-type(6) .img2 .c-slidetext img {
    width: 20.1293532335vw;
    height: 15.5621890545vw;
  }
}

.p-brand__section.m-sec02 {
  padding-top: 95px;
  padding-bottom: 85px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec02 {
    padding-top: 7.8125vw;
    padding-bottom: 7.8125vw;
  }
}

.p-brand__section.m-sec02 .c-inner {
  max-width: 1050px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec02 .c-inner {
    max-width: 100%;
  }
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec02 .sec-title img {
    width: 22.7478260869vw;
  }
}

.p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(1) {
  width: 530px;
  margin-top: 45px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(1) {
    width: 57.2916666667vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-top: 0;
  }
}

.p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(1) .cnt {
  padding-left: 32px;
  margin-bottom: 45px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(1) .cnt {
    margin-bottom: 0;
    padding-left: 0;
    padding-top: 8.4635416667vw;
  }
}

.p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(1) .img {
  width: 470px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(1) .img {
    width: 57.2916666667vw;
    margin-left: -5.2083333333vw;
  }
}

.p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext {
  width: 202px;
  height: 88px;
  position: absolute;
  right: -180px;
  bottom: -45px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(2) .c-slidetext {
    width: 34.1691542284vw;
    height: 14.8855721391vw;
    right: -28vw;
    top: -2.6666666667vw;
    bottom: auto;
  }

  .p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(2) .c-slidetext img {
    width: 34.1691542284vw;
    height: 14.8855721391vw;
  }
}

.p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(2) {
  width: 520px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(2) {
    width: 100%;
  }
}

.p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(2) .img1 {
  width: 350px;
  margin-right: 0;
  margin-left: auto;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(2) .img1 {
    width: 37.7604166667vw;
    margin-top: -89.84375vw;
    margin-right: -5.2083333333vw;
  }
}

.p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(2) .img2 {
  width: 250px;
  margin-top: -123px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(2) .img2 {
    width: 49.4791666667vw;
    margin-top: 7.8125vw;
    margin-right: -5.2083333333vw;
    margin-left: auto;
  }
}

.p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(2) .img3 {
  width: 220px;
  margin-top: -114px;
  margin-right: 0;
  margin-left: auto;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(2) .img3 {
    width: 35.15625vw;
    margin-top: -27.9947916667vw;
    margin-left: 0;
    margin-right: auto;
  }
}

.p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(3) .c-slidetext {
  width: 218px;
  height: 118px;
  position: absolute;
  left: -95px;
  top: 740px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(3) .c-slidetext {
    width: 33.984375vw;
    height: 18.4895833333vw;
    left: auto;
    right: 5.238vw;
    top: -129.524vw;
  }

  .p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(3) .c-slidetext img {
    width: 33.984375vw;
    height: 18.4895833333vw;
  }
}

.p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(3) .c-slidetext:nth-of-type(2) {
  width: 181px;
  height: 110px;
  top: 799px;
  left: -54px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(3) .c-slidetext:nth-of-type(2) {
    width: 28.73vw;
    height: 17.46vw;
    left: auto;
    right: 4.921vw;
    top: -120vw;
  }

  .p-brand__section.m-sec02 .p-brand__inner .inner-box:nth-of-type(3) .c-slidetext:nth-of-type(2) img {
    width: 28.73vw;
    height: 17.46vw;
  }
}

.p-brand__section.m-sec03 {
  padding-top: 100px;
  padding-bottom: 150px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 {
    padding-top: 20.8333333333vw;
    padding-bottom: 22.1354166667vw;
  }
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 .sec-title img {
    width: 12.3130434782vw;
  }
}

.p-brand__section.m-sec03 .p-brand__inner {
  width: 945px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 .p-brand__inner {
    width: 100%;
  }
}

.p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(1) {
  width: 530px;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(1) {
    width: 100%;
    padding-left: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(1) .img {
    width: 71.6145833333vw;
    margin-right: auto;
    margin-left: 0;
    position: relative;
    z-index: 1;
  }
}

.p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext {
  width: 218px;
  height: 118px;
  position: absolute;
  top: 600px;
  left: 405px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext {
    width: 33.984375vw;
    height: 18.4895833333vw;
    right: auto;
    left: 0;
    top: -11.733vw;
    z-index: 1;
  }

  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext img {
    width: 33.984375vw;
    height: 18.4895833333vw;
  }
}

.p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext:nth-of-type(2) {
  width: 181px;
  height: 110px;
  top: 659px;
  left: 446px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext:nth-of-type(2) {
    width: 28.73vw;
    height: 17.46vw;
    right: auto;
    left: 5.867vw;
    top: -1.867vw;
  }

  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext:nth-of-type(2) img {
    width: 28.73vw;
    height: 17.46vw;
  }
}

.p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(2) {
  width: 350px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  padding-top: 135px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(2) {
    width: 100%;
    display: block;
    padding-top: 0;
  }
}

.p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(2) .cnt {
  margin-bottom: 40px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(2) .cnt {
    margin-bottom: 0;
    width: 100%;
    padding-top: 9.1145833333vw;
  }
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(2) .img {
    width: 39.0625vw;
    margin-top: -9.1145833333vw;
    z-index: 1;
  }
}

.p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(3) {
  padding-top: 125px;
  width: 350px;
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(3) {
    width: 35.15625vw;
    margin-right: -5.2083333333vw;
    padding-top: 4.5572916667vw;
  }

  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(3) p {
    margin-top: 19.53125vw;
  }
}

.p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(4) {
  width: 470px;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  padding-top: 175px;
  margin-left: 55px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(4) {
    width: 58.59375vw;
    margin-left: -5.2083333333vw;
    padding-top: 11.71875vw;
  }
}

.p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(4) .c-slidetext {
  width: 112px;
  height: 94px;
  position: absolute;
  top: -70px;
  left: -90px;
}

.p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(5) {
  position: relative;
  z-index: 1;
  width: 320px;
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
  padding-top: 100px;
  margin-left: 55px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(5) {
    width: 32.5520833333vw;
    padding-top: 9.1145833333vw;
    margin-left: 0;
  }
}

.p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(6) {
  padding-top: 150px;
  width: 450px;
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
  margin-top: -18px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(6) {
    padding-top: 16.9270833333vw;
    width: 42.96875vw;
    margin-top: 0;
    margin-right: -5.2083333333vw;
  }
}

.p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(6) .bg {
  position: absolute;
  width: 520px;
  top: -18px;
  right: -280px;
}

.p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(6) .img {
  position: relative;
  width: 450px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(6) .img {
    width: 42.96875vw;
  }
}

.p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(7) {
  width: 385px;
  padding-left: 220px;
  margin-top: -253px;
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(7) {
    width: 45.3125vw;
    padding-left: 0;
    margin-top: -27.34375vw;
  }
}

.p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(7) .img {
  width: 220px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(7) .img {
    width: 25.78125vw;
    margin-right: 0;
    margin-left: auto;
  }
}

.p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(7) .c-slidetext {
  width: 209px;
  height: 186px;
  position: absolute;
  left: -20px;
  bottom: -95px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(7) .c-slidetext {
    width: 18.9452736316vw;
    height: 15.9004975122vw;
    left: 4vw;
    bottom: -6.5104166667vw;
  }

  .p-brand__section.m-sec03 .p-brand__inner .inner-box:nth-of-type(7) .c-slidetext img {
    width: 18.9452736316vw;
    height: 15.9004975122vw;
  }
}

.p-brand__section.m-sec04 {
  padding-top: 100px;
  padding-bottom: 115px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec04 {
    padding-top: 20.8333333333vw;
    padding-bottom: 18.2291666667vw;
  }
}

.p-brand__section.m-sec04 .sec-title {
  padding-bottom: 5px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec04 .sec-title {
    padding-bottom: 1.067vw;
  }

  .p-brand__section.m-sec04 .sec-title img {
    width: 15.2347826087vw;
  }
}

.p-brand__section.m-sec04 .txt-area {
  margin-right: -50px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec04 .p-brand__inner .inner-box .txt-area {
    margin-right: -6.66666666667vw;
  }
}

.p-brand__section.m-sec04 .p-brand__inner {
  width: 890px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec04 .p-brand__inner {
    width: 100%;
  }
}

.p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(1) {
  width: 530px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(1) {
    width: 71.6145833333vw;
  }
}

.p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext {
  width: 218px;
  height: 118px;
  position: absolute;
  top: -48px;
  left: -90px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext {
    width: 33.984375vw;
    height: 18.4895833333vw;
    left: auto;
    top: -10.933vw;
    left: 57.867vw;
  }

  .p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext img {
    width: 33.984375vw;
    height: 18.4895833333vw;
  }
}

.p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext:nth-of-type(2) {
  width: 196px;
  height: 99px;
  top: 28px;
  left: -73px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext:nth-of-type(2) {
    width: 31.111vw;
    height: 15.714vw;
    top: 1.867vw;
    left: 60.533vw;
  }

  .p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(1) .c-slidetext:nth-of-type(2) img {
    width: 31.111vw;
    height: 15.714vw;
  }
}

.p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(2) {
  width: 308px;
  padding-top: 130px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(2) {
    width: 100%;
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(2) .img {
  width: 295px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(2) .img {
    width: 39.0625vw;
    margin-top: -9.1145833333vw;
    position: relative;
  }
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(2) .cnt {
    width: 40.3645833333vw;
    padding-top: 9.765625vw;
  }
}

.p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(3) {
  width: 320px;
  padding-top: 44px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(3) {
    width: 32.5520833333vw;
    padding-top: 13.671875vw;
    margin-right: 0;
    margin-left: auto;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

.p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(4) {
  width: 450px;
  padding-top: 170px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(4) {
    width: 42.96875vw;
    padding-top: 8.4635416667vw;
    margin-left: -5.2083333333vw;
    margin-right: auto;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(4) .c-slidetext {
  width: 113px;
  height: 76px;
  position: absolute;
  right: -60px;
  bottom: -85px;
}

.p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(5) {
  width: 380px;
  padding-bottom: 160px;
  margin-top: -360px;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(5) {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    margin-top: -14.3229166667vw;
    padding-bottom: 0;
    width: 100%;
    padding-left: 44.2708333333vw;
  }
}

.p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(5) .img {
  width: 220px;
  position: relative;
  margin-left: auto;
  margin-right: 0;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(5) .img {
    width: 26.0416666667vw;
    margin: 0;
  }
}

.p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(5) .bg {
  width: 520px;
  position: absolute;
  bottom: 0;
  left: -270px;
  z-index: 1;
}

@media screen and (max-width: 639px) {
  .p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(5) .c-slidetext {
    width: 19.1144278604vw;
    height: 12.8557213929vw;
    position: absolute;
    right: 6.6666666667vw;
    bottom: -3.2552083333vw;
  }

  .p-brand__section.m-sec04 .p-brand__inner .inner-box:nth-of-type(5) .c-slidetext img {
    width: 19.1144278604vw;
    height: 12.8557213929vw;
  }
}

.p-brand__more {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #5c655e;
}

@media screen and (max-width: 639px) {
  .p-brand__more {
    padding-top: 13.0208333333vw;
    padding-bottom: 13.0208333333vw;
  }
}

.p-brand__more-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 639px) {
  .p-brand__more-inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 6.9010416667vw;
    gap: 3.90625vw 0;
  }
}

.p-brand__more-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  margin-right: 35px;
}

@media screen and (max-width: 639px) {
  .p-brand__more-img {
    gap: 0 3.90625vw;
    margin-right: 0;
  }
}

.p-brand__more-img:last-of-type {
  margin-right: 0;
}

.p-brand__more-img .img {
  width: 230px;
}

@media screen and (max-width: 639px) {
  .p-brand__more-img .img {
    width: 35.8072916667vw;
  }
}

.p-about {
  padding-top: 100px;
  padding-bottom: 100px;
}

.p-about__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 730px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 30px;
  border: 1px solid #040000;
}

.p-about__img {
  width: 165px;
}

.p-about__txt {
  width: 475px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 639px) {
  .p-about {
    padding-top: 20.8333333333vw;
    padding-bottom: 20.8333333333vw;
  }

  .p-about__box {
    display: flex;
    gap: 7vw;
    flex-direction: column;
    justify-content: flex-start;
    width: 89.58333vw;
    padding: 9.11vw 5.21vw 7.81vw 5.21vw;
  }

  .p-about__img {
    width: 40vw;
  }

  .p-about__txt {
    width: 100%;
    font-size: 3.2vw;
  }
}

.p-profile {
  padding-top: 100px;
  padding-bottom: 100px;
}

.p-profile__box {
  display: flex;
  justify-content: space-between;
  padding: 80px 40px;
  border: 1px solid #040000;
}

.p-profile__img {
  width: 227px;
}

.p-profile__txt-area {
  width: 675px;
}

.p-profile__title {
  margin-bottom: 15px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.2;
}

.p-profile__title:not(:first-child) {
  margin-top: 55px;
}

.p-profile__txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 639px) {
  .p-profile {
    padding-top: 20.8333333333vw;
    padding-bottom: 20.8333333333vw;
  }

  .p-profile__box {
    display: flex;
    gap: 8vw;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 89.58333vw;
    margin-left: auto;
    margin-right: auto;
    padding: 9.11vw 5.21vw 7.81vw 5.21vw;
  }

  .p-profile__img {
    width: 34.6666666667vw;
  }

  .p-profile__txt-area {
    width: 100%;
  }

  .p-profile__title {
    margin-bottom: 2.6666666667vw;
    font-size: 4vw;
  }

  .p-profile__title:not(:first-child) {
    margin-top: 8vw;
  }

  .p-profile__txt {
    font-size: 3.2vw;
  }
}

.p-movie__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.p-movie__video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  max-width: 100%;
  height: 100% !important;
}

@media screen and (max-width: 639px) {
  .p-movie__inner {
    padding: 0 5.2083333333vw;
  }
}
