@charset "UTF-8";

body {
  font-family: sans-serif;
  width: 100%;
  line-height: 1.9;
  color: #000;
  font-size: 1.3rem;
}
img,
video {
  width: 100%;
  margin: 0.5rem 0 1.5rem;
}
p {
  margin-bottom: 1rem;
}
.note {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.red {
  color: red;
  font-weight: bold;
}
.blue {
  color: blue;
  font-weight: bold;
}
.yellow {
  background: yellow;
  font-weight: bold;
}
.large {
  font-size: 1.4rem;
}
.underline{
  text-decoration: underline;
}
.narrow {
  width: 75%;
  margin: auto;
}
.center {
  text-align: center;
}

main {
  padding: 4%;
}
.pr {
  font-size: 0.7rem;
  text-align: right;
}
h2 {
  font-weight: bold;
  margin: 2rem 0 1.5rem;
  font-size: 1.5rem;
  line-height: 1.7;
  border-left: 0.3rem solid #ea5804;
  padding-left: 0.5rem;
}
.arrow {
  width: 80%;
  margin: auto;
  animation-name: slideBtn;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

.voice {
  position: relative;
  padding: 2rem 2rem 1.5rem;
  margin-bottom: 2rem;
  background: #f4f4f4;
}
.voice:before,
.voice:after {
  position: absolute;
  font-size: 2.5rem;
  color: #d1d1d1;
  font-family: serif;
}
.voice:before {
  content: '\201C';
  top: 0rem;
  left: 0.5rem;
}
.voice:after {
  content: '\201D';
  right: 0.5rem;
  bottom: -1.5rem;
}

.move {
  animation-name: slideBtn;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  margin-bottom: 2rem;
}

.cv {
  position: relative;
  animation-name: slideBtn;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
@keyframes slideBtn {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
.cta {
  position: absolute;
  width: 84%;
  top: 70%;
  left: 8%;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 50%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.5) 100%,
    rgba(255, 255, 255, 0) 0%
  );
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

@media screen and (min-width: 751px) {
  body {
    width: 650px;
    margin: auto;
  }

  a:hover {
    opacity: 0.8;
  }
}
