#character {
  position: relative;
  width: 100%;
  height: 100%;
  background: #FFCD4C;
  z-index: 1;
}

.character-container {
  display: flex;
  flex-direction: column;
  width: 1440px;
}

.character-top {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  margin: 0;
  width: 100%;
}

.character-top img {
  width: 100%;
}

.character-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  margin: 0;
  width: 100%;
}

.character-bottom img {
  width: 100%;
}

.character-contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 200px;
  margin-bottom: 200px;
}

.character-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.intro-title {
  display: flex;
  flex-direction: row;
  width: 500px;
  justify-content: center;
}

.intro-title img {
  height: 85px;
  margin-top: 15px;
}

.intro-title p {
  font-family: 'GmarketSansBold';
  font-size: 66px;
  transform: skewX(10deg);
  color: #5826E8;
  letter-spacing: -5px;
  padding-left: 10px;
  margin: 0;
}

.intro-img2D {
  margin-top: 36px;
}

.intro-description {
  font-family: 'GmarketSansMedium';
  font-size: 24px;
  color: #5826E8;
  text-align: center;
  margin-top: 40px;
}

.character-img {
  width: 100%;
  height: 720px;
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  z-index: 1;
}

.img-row {
  display: flex;
  flex-direction: row;
}

.img-row div {
  width: 360px;
  height: 360px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fire {
  background: #F16E6E;
}

.light {
  background: #FFDE72;
}

.smoke {
  background: #F5EBFE;
}

.water {
  background: #D098F6;
}

.city {
  background: #8A8B8D;
}

.wall {
  background: #BD8856;
}

.sky {
  background: #80AFF5;
}

.plant {
  background: #4FBF80;
}

.img-box .img3D {
  transform: translateY(55%);
  transition: all .2s;
  width: 100%;
  height: 100%;
}

.img-box:hover .img3D {
  transform: translateY(0%);
}

.character-logo {
  position: absolute;
  align-self: baseline;
  margin-right: 160px;
  margin-top: 40px;
  z-index: 3;
  opacity: 0;
  transition: all .2s;
}

.character-logo-3 {
  position: absolute;
  align-self: baseline;
  margin-right: 110px;
  margin-top: 40px;
  z-index: 3;
  opacity: 0;
  transition: all .2s;
}

.img-box:hover .character-logo, .img-box:hover .character-logo-3 {
  opacity: 1;
}

.mobile {
  font-family: 'GmarketSansMedium';
  font-size: 24px;
  color: #5826E8;
  text-align: center;
  display: none;
}

@media (max-width: 1024px) {
  .character-container {
    width: 768px;
  }

  .character-contents {
    margin-top: 140px;
    margin-bottom: 100px;
  }

  .intro-title {
    width: 420px;
  }

  .intro-title img {
    height: 70px;
    margin-top: 12px;
  }

  .intro-title p {
    font-size: 55px;
  }

  .intro-img2D {
    width: 90%;
  }

  .intro-description {
    font-size: 20px;
  }

  .character-img {
    height: 384px;
    margin-top: 60px;
  }

  .img-row div {
    width: 192px;
    height: 192px;
  }

  .character-logo {
    margin-right: 80px;
    margin-top: 20px;
    height: 40px;
  }

  .character-logo-3 {
    margin-right: 60px;
    margin-top: 20px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .mobile {
    display: block;
    font-size: 20px;
  }

  .character-container {
    width: 100%;
  }

  .character-contents {
    margin-top: 140px;
    margin-bottom: 0;
  }

  .intro-title {
    width: 100%;
  }

  .intro-title img {
    height: 70px;
    margin-top: 12px;
  }

  .intro-title p {
    font-size: 55px;
  }

  .intro-img2D {
    width: 80%;
  }

  .intro-description {
    font-size: 20px;
  }

  .character-img {
    width: 100%;
    height: 100%;
    margin-top: 40px;
  }

  .img-row {
    flex-wrap: wrap;
  }

  .img-row div {
    width: 384px;
    height: 384px;
  }

  .character-logo {
    margin-top: 24px;
    margin-right: 0;
    height: 80px;
  }

  .character-logo-3 {
    margin-top: 24px;
    margin-right: 0;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .character-contents {
    margin-top: 80px;
  }

  .intro-title img {
    height: 46px;
    margin-top: 8px;
  }

  .intro-title p {
    font-size: 36px;
    letter-spacing: -2px;
  }

  .intro-img2D {
    width: 80%;
  }

  .intro-description {
    font-size: 14px;
    width: 86%;
  }

  .mobile {
    visibility: visible;
    font-size: 20px;
  }

  .character-img {
    width: 100%;
    height: 100%;
    margin-top: 20px;
  }

  .img-row div {
    width: 100vw;
    height: 100vw;
  }

  .character-logo {
    margin-top: 32px;
    margin-right: 240px;
    height: 40px;
  }

  .character-logo-3 {
    margin-top: 32px;
    margin-right: 215px;
    height: 40px;
  }

  .character-top {
    overflow-x: hidden;
  }

  .character-top img {
    width: 200%;
  }

  .character-bottom {
    overflow-x: hidden;
  }

  .character-bottom img {
    width: 200%;
  }
}
