
.infoTab {
  width: 650px;
  margin: 0 auto;
  background-color: #D1E5EB;
  padding: 15px 30px 15px 45px;
}
.infoTab p {
  text-align: center;
  margin-bottom: 15px
}
.animDream {
  width: 600px;
  margin: 0 auto;
  margin-top: 100px;
}
.notice {
  color: white;
  text-align: center;
  margin: 20px 0 20px 0;
  font-weight: bold;
}
#sector_D, #sector_R, #sector_E, #sector_A, #sector_M {
  cursor: pointer;
}
.tab_1, .tab_2, .tab_3, .tab_4, .tab_5 {
  display: none;
  -webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
