@charset "utf-8";

.cv-text,
.cv-list {
  text-align: center;
}

.cv-list {
  padding: 0 4%;
  position: relative;
}
.cv-list li {
  font-weight: bold;
  color: black;
  border-left: solid 8px #ff7600; /*左側の線*/
  background: #fffc6c; /*背景色*/
  margin-bottom: 5px; /*下のバーとの余白*/
  line-height: 1.5;
  padding: 0.5rem;
  list-style-type: none !important;
}

.cv-list .red {
  font-weight: bold;
  color: red;
}
.color {
  animation: color-change 2s linear infinite;
  font-size: 1.6rem;
}

/* 虹色 */
@keyframes color-change {
  0%,
  100% {
    color: #ff1493;
  }

  25% {
    color: #f200ff;
  }

  50% {
    color: #1f00ea;
  }

  75% {
    color: #9400d3;
  }
}

.rich-img {
  width: 66% !important;
}

@media screen and (max-width: 700px) {
  .br {
    display: block;
  }

  .cv-list {
    font-size: 1.2rem;
  }

  .color {
    font-size: 4rem;
    line-height: 70px;
  }
  .sml {
    margin-top: 10px;
  }
}

@media screen and (max-width: 380px) {
  .cv-text {
    font-size: 0.8rem;
  }
}
