* {
  word-break: normal;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  display: flex;
  font-weight: 700;
  line-height: 27.2px;
  font-size: 16px;
  font-family: "Source Han Sans JP", sans-serif;
  width: 100%;
  letter-spacing: 0.4px;
  color: #262626;
  overflow-x: hidden;
}
ul {
  list-style-type: none;
}
li a {
  text-decoration: none;
  color: inherit;
}
a {
  transition: 0.3s;
}
a:hover {
  cursor: pointer;
  opacity: 0.8;
}
.highlighter {
  background-color: #ffff008f;
}
.left-side {
  display: none;
}
.right-side {
  display: none;
}
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px 16px;
  background-color: #a5b3ff;
  border-bottom: solid 1px #262626;
  position: fixed;
  top: 0;
  z-index: 2;
}
.header-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 165px;
  height: 36px;
  border-radius: 18px;
  border: solid 1px #262626;
  background-color: #f0ff6f;
  box-shadow: 0 3px 0 #262626;
  font-size: 14px;
}
main {
  width: 100%;
  padding-top: 72px;
}
.fixed-button {
  position: fixed;
  z-index: 10;
  right: 6px;
  bottom: 70px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.fixed-button.show {
  opacity: 1;
  pointer-events: auto;
}
.fv {
  padding-top: 34px;
  background-color: #d1dcff;
}
.slider-fv {
  height: 434px;
}
.slider-fv .swiper-slide {
  cursor: grab;
}
.slider-fv .slide-inner {
  position: relative;
  width: 239px;
  height: 424px;
}
.slide-bg-purple {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 215px;
  height: 381px;
  background: linear-gradient(
    162.26deg,
    rgba(255, 82, 241, 0.3) 24.43%,
    rgba(99, 15, 255, 0.3) 75.76%
  );
  z-index: 0;
  transition: all 0.8s ease 0.3s;
  border: solid 1px #262626;
  border-radius: 19px;
}
.swiper-slide-active .slide-bg-purple {
  top: 10px;
  left: 10px;
  width: 239px;
  height: 424px;
}
/* ページ読み込み時にはアニメーションを無効にする
（swiperのjavascriptコードと連携） */
.initial-load .slider-fv .slide-bg-purple {
  transition: none !important;
}
.slide-inner img {
  position: relative;
  z-index: 1;
  border-radius: 19px;
  border: solid 1px #262626;
  width: 239px;
  height: 424px;
}
.slider-fv .swiper-slide-active img {
  animation: img-animation 1s ease 0s 1 alternate none running;
}
/* ページ読み込み時にはアニメーションを無効にする
（swiperのjavascriptコードと連携） */
.initial-load .slider-fv .swiper-slide-active img {
  animation: none !important;
}
@keyframes img-animation {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}
.fv-text {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 11px;
  margin-top: -129px;
  z-index: 1;
}
.fv-text p {
  text-align: center;
  line-height: 32px;
}
.fv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -2px;
  background-color: #74eaf0;
  width: 113px;
  height: 24px;
  margin: 0 5px;
  border-radius: 12px;
  border: solid 1px #262626;
  box-shadow: 0 2px 0 #262626;
}
.fv-button img {
  display: block;
}
.worries {
  position: relative;
  padding: 111px 16px 97px;
  background: linear-gradient(0deg, #eff0f0 0%, #eff0f0 90%, #e0fcff 100%);
}
.worries-border {
  position: relative;
  padding: 45px 16px 16px;
  margin-bottom: 32px;
  border: solid 1px #262626;
  border-radius: 15px;
}
.worries-border > img {
  display: block;
  position: absolute;
  left: 46px;
  top: -23px;
}
.worries-border * {
  text-align: center;
}
.worries-border > p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.worries-border h2 {
  font-size: 22px;
  line-height: 33px;
  margin-bottom: 24px;
}
.worries-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.worries-flex-item {
  width: calc((100% - 6px) / 2);
  padding: 14px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 6px;
  border: solid 1px #262626;
}
.worries-flex-item p {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}
.worries-bottom-flex {
  display: flex;
}
.worries-bottom-flex p {
  padding-top: 16px;
  line-height: 32px;
}
.worries-bottom-flex-wave {
  background-image: url(images/wave-line.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  padding-bottom: 8px;
}
.wave-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.about {
  padding: 49px 16px 16px;
  background-color: #e0fcff;
}
.about h2 {
  font-size: 22px;
  line-height: 33px;
  text-align: center;
  margin-bottom: 17px;
}
.about p {
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  margin-bottom: 40px;
}
.about-flex {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}
.about-flex-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 13px 20px 12px;
  background-color: #fff;
  border: solid 1px #262626;
  border-radius: 6px;
}
.about-flex-item p {
  font-size: 16px;
  margin-bottom: 0;
}
.support {
  position: relative;
  padding: 128px 16px 91px;
  background: linear-gradient(
    0deg,
    rgba(255, 224, 248, 1) 0%,
    rgba(255, 224, 248, 1) 90%,
    rgba(224, 252, 255, 1) 100%
  );
}
.wavy-heading {
  width: fit-content;
  margin: 0 auto 45px;
  text-align: center;
  background-image: url(images/wave-line.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  padding-bottom: 8px;
}
.wavy-heading p {
  font-size: 14px;
  line-height: 19px;
}
.wavy-heading h2 {
  font-size: 22px;
  line-height: 33px;
}
.support-flex {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.support-flex-item {
  padding: 34px 16px 34px 7px;
  background-color: #fff;
  border: solid 1px #262626;
  border-radius: 6px;
}
.support-flex-item h3 {
  width: fit-content;
  border: solid 1px #262626;
  border-radius: 16px;
  background-color: #74eaf0;
  margin: -50px auto 15px;
  padding: 0 16px;
  text-align: center;
}
.support-flex-item-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.support-flex-img {
  width: 36%;
  text-align: center;
}
.support-flex-item-inner p {
  width: 64%;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}
.work-styles {
  padding: 31px 24px 17px;
  background-color: #e0fcff;
}
.work-styles-main-text {
  margin-bottom: 31px;
  font-size: 14px;
  line-height: 28px;
  text-align: center;
}
.work-styles-flex-heading {
  position: relative;
  width: fit-content;
  margin-bottom: 8px;
  line-height: 19px;
}
.work-styles-flex {
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
.work-style-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  width: 337px;
  height: 103px;
  background-color: #fff;
  border: solid 1px #262626;
  border-radius: 100px;
  max-width: 100%;;
}
.work-style-item-img {
  width: 75px;
  height: auto;
  text-align: center;
}
.work-style-item p {
  width: 182px;
  line-height: 24px;
}
.work-styles .top-entry-box {
  margin-bottom: 65px;
}
.which-style {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.which-style-item img {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}
.which-style-item p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  margin-bottom: 2px;
}
.which-style-item h3 {
  font-size: 20px;
  line-height: 30px;
}
.graph-paper {
  position: relative;
  width: 100%;
  height: auto;
  background: #ffffff;
  overflow: hidden;
  border-radius: 10px 0 10px 10px;
}
.graph-paper:not(:last-of-type) {
  margin-bottom: 16px;
}
.graph-paper::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 28px;
  height: 28px;
  background: #e0fcff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
  rotate: 90deg;
}
.graph-paper-inner {
  width: 100%;
  height: 100%;
  border: 1px solid #333333;
  border-radius: 10px;
  background-image: linear-gradient(to right, #e0fcff 1px, transparent 1px),
    linear-gradient(to bottom, #e0fcff 1px, transparent 1px);
  background-size: 15px 15px;
  background-position: 0 0;
  position: relative;
  padding: 31px;
}
.graph-paper-inner > img {
  position: absolute;
  right: -1px;
  top: -1px;
}
.graph-paper-inner h3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  margin-bottom: 16px;
}
.graph-paper-inner p {
  font-size: 14px;
  line-height: 21px;
}
.videos {
  padding: 116px 16px 16px;
  background: linear-gradient(0deg, #b0e1ff 0%, #b0e1ff 80%, #e0fcff 100%);
}
.videos-main-text {
  margin-bottom: 32px;
  line-height: 24px;
  text-align: center;
}
.tiktok-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.tiktok-item {
  width: 325px;
  overflow: hidden;
}
.tiktok-embed {
  margin: 0 !important;
}
.tiktok-item blockquote {
  /* aspect-ratio: 323/610; */
  background-color: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
}

.css-vptvdy {
  min-width: 0 !important;
}

.voices {
  padding: 95px 32px 16px;
  background: linear-gradient(0deg, #d1dcff 0%, #d1dcff 90%, #b0e1ff 100%);
}
.voice-flex {
  display: flex;
  gap: 17px;
}
.voice-flex-left {
  width: 75px;
}
.voice-flex-left img {
  width: 100%;
  height: auto;
  margin-bottom: 4px;
}
.voice-flex-left p {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin: 0 -15px;
}
.voice-flex-right {
  position: relative;
  width: calc(100% - 92px);
  padding: 16px 16px 19px;
  background-color: #fff;
  border: solid 1px #262626;
  border-radius: 6px;
  box-shadow: 4px 4px 0px 0px #acc2fa;
}
.voice-flex-right img {
    width: 100%;
  height: auto;
}

.voice-flex-right::before {
  content: "";
  position: absolute;
  top: 37px;
  left: 0;
  border-style: solid;
  border-width: 9.5px 8px 9.5px 0;
  border-color: transparent #000000 transparent transparent;
  translate: -100% -50%;
}
.voice-flex-right::after {
  content: "";
  position: absolute;
  top: 37px;
  left: 0;
  border-style: solid;
  border-width: 7.9px 6.7px 7.9px 0;
  border-color: transparent #fff transparent transparent;
  translate: -100% -50%;
}
.voice-flex-right-main {
  line-height: 24px;
  margin-bottom: 8px;
}
.voice-flex-right-hash {
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
}
.voice-flex-right-link {
  width: fit-content;
  margin: 17px 0 0 auto;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: #728ac6;
  border-bottom: solid 1px;
}
.voice-flex-right-link a {
  transition: 0.3s;
}
.voice-flex-right-link a:hover {
  opacity: 0.7;
}
.creators {
  padding: 91px 0 16px;
  background: linear-gradient(0deg, #e0fcff 0%, #e0fcff 80%, #d1dcff 100%);
  overflow: hidden;
}
.creators-main-text {
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
}
.slider-creator-upper {
  margin-bottom: 14px;
}
.slider-creator-upper .swiper-wrapper,
.slider-creator-lower .swiper-wrapper {
  transition-timing-function: linear;
}
.slider-creator-upper .swiper-wrapper,
.slider-creator-lower .swiper-wrapper {
  transition-timing-function: linear;
  will-change: transform;
  transform: translateZ(0);
}

.slider-creator-upper .swiper-slide,
.slider-creator-lower .swiper-wrapper {
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* ループ時のちらつきを軽減 */
.slider-creator-upper {
  overflow: hidden;
}
.slider-creator-flex img {
  margin-bottom: 8px;
}
.slider-creator-flex p {
  font-size: 14px;
  text-align: center;
  line-height: 22px;
}
.slider-creator-flex p:last-of-type {
  font-weight: 600;
  font-size: 12px;
  line-height: 21px;
}
.with-us {
  padding: 112px 16px 16px;
  background: linear-gradient(0deg, #e0fcff 0%, #e0fcff 80%, #d1dcff 100%);
}
.two-influencers {
  text-align: center;
  margin-bottom: -70px;
  position: relative;
  z-index: 0;
}
.two-influencers img {
  width: 95%;
  height: auto;
}
.top-entry-box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
  padding: 32px 31px;
  border: solid 2px #262626;
  border-radius: 40px;
  background-color: #fff;
  box-shadow: 0 11px 0 -3px #c3a2ff, 0 10px 0 0 #262626;
}
.top-entry-box h2 {
  font-size: 22px;
  line-height: 33px;
}
.top-entry-box-bottom {
  width: 100%;
}
.top-entry-conversion {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 11px;
}
.top-entry-conversion p {
  position: relative;
  width: fit-content;
  margin-bottom: 11px;
  line-height: 19px;
}
.top-entry-conversion p:before {
  content: "";
  position: absolute;
  background-color: #262626;
  transform: rotate(-115deg);
  transform-origin: left center;
  left: -12px;
  top: 110%;
  width: 28px;
  height: 1px;
}
.top-entry-conversion p::after {
  content: "";
  position: absolute;
  background-color: #262626;
  transform: rotate(-65deg);
  transform-origin: left center;
  right: -37px;
  top: 110%;
  width: 28px;
  height: 1px;
}
.top-entry-conversion a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 46px;
  border-radius: 32px;
  border: solid 1px #262626;
  background-color: #f0ff6f;
  box-shadow: 3px 5px 0 #262626;
  transition: all 0.3s;
}
.top-entry-conversion a:hover {
  transform: translate(3px, 5px);
  box-shadow: none;
  opacity: 1;
}
.top-entry-conversion a::after {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 7px;
  right: 14px;
  top: 19px;
  background-image: url("images/arrow-black.svg");
  background-repeat: no-repeat;
}
.top-entry-conversion + p {
  font-weight: 600;
}
.flow {
  padding: 112px 16px 64px;
  background: linear-gradient(0deg, #d1dcff 0%, #d1dcff 80%, #e0fcff 100%);
}
.flow-flex-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flow-flex {
  display: flex;
  padding: 16px 16px 16px 8px;
  background-color: #fff;
  border: solid 1px #262626;
  border-radius: 6px;
}
.flow-flex-left {
  width: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 7px;
}
.flow-flex-left p {
  text-align: center;
  font-size: 36px;
  color: #a5b3ff;
}
.flow-flex-left span {
  display: block;
  font-size: 14px;
  color: #262626;
}
.flow-flex-right {
  width: 78%;
  padding-left: 14px;
  border-left: solid 2px #d9d9d9;
}
.flow-flex-right h3 {
  line-height: 24px;
  margin-bottom: 8px;
}
.flow-flex-right p {
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0em;
}
.faq {
  padding: 0 16px 16px;
  background-color: #d1dcff;
}
.faq-container {
  margin-bottom: 30px;
}
.faq-item {
  margin-bottom: 10px;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  border: solid 1px #262626;
}
.faq-question {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  cursor: pointer;
  position: relative;
}
.faq-prefix {
  color: #a0b8ff;
  font-size: 20px;
  margin-top: -3px;
  margin-right: 8px;
}
.faq-question-text {
  flex-grow: 1;
  margin-right: 16px;
  line-height: 24px;
}
.question-toggle {
  width: 16px;
  height: auto;
  padding-top: 5px;
  display: flex;
}
.answer-toggle {
  width: 16px;
  height: auto;
  display: flex;
  padding-top: 9px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, border-top 0.3s;
  padding: 0 16px;
  border-top: 1px solid transparent;
  overflow: hidden;
  cursor: pointer;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  border-top: 1px solid #262626;
}
.faq-answer-content {
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  padding: 0;
  margin-right: 16px;
}
.faq-answer-wrapper {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
}
.faq-answer-main {
  display: flex;
  align-items: flex-start;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.top-conversion {
  padding: 112px 16px 80px;
  background: linear-gradient(0deg, #fddfff 0%, #fddfff 80%, #d1dcff 100%);
}
.main-footer {
  padding: 32px 16px 16px;
  background-color: #262626;
  color: #fff;
}
.main-footer-upper {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.main-footer-lower {
  margin-bottom: 80px;
  font-weight: 500;
  font-size: 12px;
}
.main-footer-copyright {
  font-size: 12px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  body {
    background: linear-gradient(
      0deg,
      rgba(239, 240, 240, 1) 0%,
      rgba(239, 240, 240, 1) 10%,
      rgba(209, 220, 255, 1) 100%
    );
  }
  header {
    display: none;
  }
  .left-side {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: calc((100% - 400px) / 5 * 4);
    height: 100vh;
    padding: 158px 30px 33px;
    background: linear-gradient(
      0deg,
      rgba(239, 240, 240, 1) 0%,
      rgba(239, 240, 240, 1) 10%,
      rgba(209, 220, 255, 1) 100%
    );
  }
  .left-side-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 48px;
    margin-bottom: 30px;
  }
  .left-side-conversion {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .left-side-conversion p {
    position: relative;
    width: fit-content;
    margin-bottom: 19px;
  }
  .left-side-conversion p:before {
    content: "";
    position: absolute;
    background-color: #262626;
    transform: rotate(-118deg);
    transform-origin: left center;
    left: -10px;
    top: 91%;
    width: 27px;
    height: 1px;
  }
  .left-side-conversion p::after {
    content: "";
    position: absolute;
    background-color: #262626;
    transform: rotate(-62deg);
    transform-origin: left center;
    right: -35px;
    top: 91%;
    width: 27px;
    height: 1px;
  }
  .left-side-conversion a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 61px;
    border-radius: 32px;
    border: solid 1px #262626;
    background-color: #f0ff6f;
    box-shadow: 0 4px 0 #262626;
    transition: all 0.2s;
  }
  .left-side-conversion a:hover {
    transform: translateY(4px);
    box-shadow: none;
    opacity: 1;
  }
  .left-side-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .left-side-footer-upper {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .left-side-footer-lower {
    display: flex;
    gap: 16px;
    font-size: 14px;
    font-weight: 500;
  }
  main {
    width: 400px;
    border: solid 2px #262626;
    border-radius: 30px 30px 0 0;
    margin-top: 64px;
    padding-top: 59px;
    box-sizing: content-box;
  }
  .fixed-button {
    display: none;
  }
  .fv {
    padding-top: 0;
  }
  .right-side {
    position: sticky;
    top: 0;
    display: block;
    width: calc((100% - 400px) / 5);
    height: 100vh;
    background: linear-gradient(
      0deg,
      rgba(239, 240, 240, 1) 0%,
      rgba(239, 240, 240, 1) 10%,
      rgba(209, 220, 255, 1) 100%
    );
  }
  .right-side small {
    position: absolute;
    right: 32px;
    bottom: 33px;
    writing-mode: vertical-rl;
    font-size: 12px;
    font-weight: 500;
  }
}

.entry {
  padding: 34px 16px 48px;
  background-color: #d1dcff;
}
.entry h1 {
  margin-bottom: 16px;
  font-size: 22px;
  line-height: 33px;
  text-align: center;
}
.entry-main-text {
  margin-bottom: 34px;
  font-size: 14px;
  line-height: 28px;
  text-align: center;
}
.entry-box {
  padding: 32px 25px;
  border: solid 2px #262626;
  border-radius: 40px;
  background-color: #fff;
  box-shadow: 0 11px 0 -3px #c3a2ff, 0 10px 0 0 #262626;
}
.entry-box ul {
  margin-bottom: 32px;
}
.entry-box-flex {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 4px;
}
.entry-box-flex p {
  font-size: 14px;
  line-height: 22px;
}
.entry-conversion {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 11px;
}
.entry-conversion p,
.work-styles-flex-heading,
.videos-h3 {
  position: relative;
  width: fit-content;
  margin-bottom: 8px;
  line-height: 19px;
  text-align: center;
}
.entry-conversion p:before,
.work-styles-flex-heading::before,
.videos-h3::before {
  content: "";
  position: absolute;
  background-color: #262626;
  transform: rotate(-110deg);
  transform-origin: left center;
  left: -14px;
  top: 96%;
  width: 34px;
  height: 1px;
}
.entry-conversion p::after,
.work-styles-flex-heading::after,
.videos-h3::after {
  content: "";
  position: absolute;
  background-color: #262626;
  transform: rotate(-70deg);
  transform-origin: left center;
  right: -43px;
  top: 96%;
  width: 34px;
  height: 1px;
}
.entry-conversion a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 46px;
  border-radius: 32px;
  border: solid 1px #262626;
  background-color: #f0ff6f;
  box-shadow: 3px 5px 0 #262626;
  transition: all 0.3s;
}
.entry-conversion a:hover {
  transform: translate(3px, 5px);
  box-shadow: none;
  opacity: 1;
}
.entry-conversion a::after {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 7px;
  right: 14px;
  top: 19px;
  background-image: url("images/arrow-black.svg");
  background-repeat: no-repeat;
}
.entry-box-annotation {
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}
