.apply-after {
  background-color: #808080;
  color: #fff;
  text-align: center;
  width: 75vw;
  margin: 4vw auto;
  padding: 3vw 0;
  font-size: 4.4vw;
  font-weight: bold;
  border-radius: 8px;
}

.button-appeal-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1vw;
  margin: 0 auto 1vw;
  width: fit-content;
}

.apply-semaru-icon {
  position: absolute;
  top: -3.5vw;
  left: -10vw;
  width: 13%;
  animation: timer-purapura 1s ease-in-out infinite;
}

.button-appeal-text {
  color: black;
  font-weight: bold;
  font-size: 4vw;
  text-align: center;
  margin: 0 auto;
}

.appeal-text-big {
  font-size: 4.5vw;
  position: relative;
  letter-spacing: initial;
}

.apply-before {
  width: 94%;
  margin: 5vw auto;
  padding: 1.4vw 0;
  border: 2px solid;
  border-radius: 8px;
  font-weight: bold;
  font-size: 4.4vw;
  text-align: center;
}

.apply-ttl {
  display: block;
  position: relative;
  left: 50%;
  opacity: 0;
  transform: translateX(-150%);
  margin: 2vw 0 auto;
  overflow: hidden;
  font-weight: bold;
  font-size: 3.6vw;
  text-align: center;
  white-space: nowrap;
}

.apply-ttl:first-of-type {
  opacity: 1;
  animation: flowing-anim-parent 2s forwards linear;
}

.apply-ttl.is-scrolled,
.apply-ttl:first-of-type {
  opacity: 1;
  animation: flowing-anim-parent 2s forwards linear;
}

.apply-ttl-span {
  display: block;
  position: relative;
  left: 50%;
  opacity: 0;
}

.yellow-underline {
  background: linear-gradient(transparent 70%, #fae800 70%);
}

.apply-ttl.is-scrolled .apply-ttl-span,
.apply-ttl:first-of-type .apply-ttl-span {
  opacity: 1;
  animation: flowing-anim-child 2s forwards linear;
}

.apply-ttl.is-scrolled .apply-ttl-span::after {
  content: "";
  position: absolute;
  top: 1vw;
  left: -20%;
  transform: skew(-30deg);
  width: 4vw;
  height: 8vw;
  overflow: hidden;
  background-color: #ffffff;
  animation: apply-ttl-shine 3s 3s linear infinite none;
}

@keyframes apply-ttl-shine {
  0% {
    left: -5%;
  }

  30% {
    left: 105%;
  }

  91% {
    left: 105%;
    opacity: 0;
  }
  99% {
    left: -5%;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flowing-anim-parent {
  0% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes flowing-anim-child {
  0% {
    transform: translateX(50%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.flex {
  display: flex;
  align-items: center;
}

.apply-img {
  max-width: 10%;
  margin-right: 1.2vw;
}

.apply-text {
  font-size: 4.2vw;
}

.apply-wrap {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.apply-cnt {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.apply-after {
  margin: 2vw auto;
  text-align: center;
  color: #fff;
  font-size: 5vw;
  font-weight: bold;
  background-color: #808080;
  border-radius: 3vw;
  width: 80vw;
  padding: 3vw;
}

.request-box,
.apply-box {
  text-align: center;
}

.clickAnime {
  opacity: 0;
  animation-name: clickAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}

.request-btn,
.apply-btn {
  position: relative;
  width: 46vw;
  padding: 2.5vw 2vw 2.8vw;
  border-radius: 6px;
  color: #ffffff;
  font-weight: bold;
  font-size: 4.4vw;
  text-align: center;
  animation-name: buttonsizeAnimation;
  animation-duration: 8s;
  animation-iteration-count: infinite;
}

.request-btn:after,
.apply-btn:after {
  content: "";
  position: absolute;
  top: -3.5px;
  left: -3.5px;
  width: 46vw;
  height: 100%;
  border: 1.5px solid #000000;
  border-radius: 6px;
  animation-name: buttonBorderAnimation;
  animation-duration: 8s;
  animation-iteration-count: infinite;
}

.apply-btn:after {
  animation-delay: 3s;
}

.request-btn:after {
  animation-delay: 1.5s;
}

.apply-btn {
  animation-delay: 3s;
}

.request-btn {
  animation-delay: 1.5s;
}

@keyframes buttonBorderAnimation {
  0% {
    top: -3.5px;
    left: -3.5px;
  }
  7% {
    top: 0;
    left: 0;
  }
  14%,
  100% {
    top: -3.5px;
    left: -3.5px;
  }
}

@keyframes buttonsizeAnimation {
  0% {
    transform: scale(1);
  }
  7% {
    transform: scale(0.9);
  }
  14%,
  100% {
    transform: scale(1);
  }
}

.request-btn {
  background-color: var(--main-color);
}

.request-attention {
  color: var(--main-color);
}
.apply-btn {
  background-color: #fe0000;
}

.apply-attention {
  color: #fe0000;
}

.apply-upper-txt {
  position: relative;
  font-size: 3.8vw;
}

.apply-upper-txt:after {
  content: "";
  position: absolute;
  top: 1vw;
  right: 1vw;
  transform: rotate(25deg);
  width: 0.3vw;
  height: 3vw;
  background-color: #000000;
}

.apply-upper-txt:before {
  content: "";
  position: absolute;
  top: 1vw;
  left: 1vw;
  transform: rotate(-25deg);
  width: 0.3vw;
  height: 3vw;
  background-color: #000000;
}
.apply-wrap {
  width: 820px;
  margin: 8px auto;
  text-align: center;
}

.button-wrap {
  display: flex;
  justify-content: space-between;
  width: 820px;
  margin: 0 auto;
}

.button-upper {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 5px;
}

.yellow-underline {
  background: linear-gradient(transparent 70%, #fae800 70%);
}

.red {
  color: #ff0000;
}

.button-container {
  width: 380px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  color: #ffffff;
  font-weight: bold;
}

.button-upper-text {
  font-size: 24px;
  position: relative;
  display: inline-block;
  padding: 0 40px;
  margin-bottom: 6px;
  line-height: 1.2;
  text-wrap: nowrap;
}
.button-upper-text-normal {
  color: #000;
}
.button-upper-txt-green {
  color: #06b9a3;
}

.invitation-button {
  background-color: #06b9a3;
  box-shadow: 0 5px 0 0 #035c51;
}

.invitation-button,
.apply-button {
  padding: 9px 13px 9px 13px;
  color: #fff;
  border-radius: 5px;
  font-size: 32px;
  font-weight: bold;
  position: relative;
  display: block;
}

.button-text-small {
  font-size: 0.7em;
}

.apply-button {
  background-color: #f41d27;
  box-shadow: 0 5px 0 0 #7a0e13;
}

.button-bottom-txt {
  margin: 5px auto;
  text-align: left;
  position: relative;
  top: 15px;
  width: 773px;
  left: 13px;
}

.button-container2 {
  width: 380px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  color: #000000;
}

.deadline-text-box {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

.upper-deadline-text {
  width: 650px;
  background: linear-gradient(transparent 70%, #fae800 70%);
  z-index: 1;
  margin: 0 auto;
}

.text-red {
  color: red;
}

.apply-button-txt span {
  vertical-align: baseline;
}

.apply-button-txt-small {
  font-size: 30px;
}

.apply-after {
  background-color: #808080;
  color: #fff;
  text-align: center;
  width: 600px;
  margin: 20px auto;
  padding: 20px 0;
  font-size: 24px;
  font-weight: bold;
  border-radius: 8px;
}
.button-appeal-text {
  font-size: 23px;
}

#feature {
    margin: 45px auto 25px;
    width: 1000px;
    position: relative;
  }

.section-title-box {
    display: flex;
    justify-content: left;
    margin: 0 auto;
    position: relative;
    align-items: center;
}
.section-title {
    padding: 0 10px;
    margin-bottom: 20px;
    color: #009380;
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    border-bottom: solid 1px #009380;
    width: fit-content;
}
.feature-text-url {
    text-decoration: underline !important;
    position: absolute;
    bottom: 70px;
    right: 0;
    text-align: right;
    color: #0013ff;
    font-weight: bold;
    text-decoration-color: #0013ff;
  }
  