:root {
  --color-top-bg: #f9f9f9;
  --color-sub-copy: #707070;
  --color-accent-text: #fe7878;
  --color-step-title: #2f2f2f;
  --color-buyers: #ffa858;
  --color-feature-sub-text: #767676;
  --color-link-text: #2eaaef;
  --color-flowing-text: #252525;
  --color-footer-link: #c6c6c6;
}

@font-face {
  font-family: "kitchenkatakana";
  src: url("/fonts/kitchenkatakana.ttf") format("truetype");
}

html {
  position: relative;
}

/*
body::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: url(https://jun619.xsrv.jp/mb/img/pc.png);
  z-index: 9999;
  pointer-events: none;
  text-align: center;
  zoom: 0.5;
  opacity: 0.5;
}*/

.twContent {
  background-color: #f5f5f5;
}

.start-area {
  display: none;
}

.mod-main {
  background: var(--color-top-bg);
  overflow: hidden;
}

.wrapper_contents {
  padding-top: 0;
}

.smart-banner {
  position: fixed;
  top: 48px;
  left: 0;
  z-index: 999;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .smart-banner {
    top: 86px;
  }
}

@media screen and (min-width: 1025px) {
  .smart-banner {
    top: 105px;
  }
}

.smart-banner-inner {
  display: grid;
  grid-template-columns: 16px 40px auto 104px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  background: linear-gradient(135deg, #dfeaff 0%, #ffd6f3 100%);
}

.smart-banner-text {
  color: var(--color-text);
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
}

.smart-banner-download {
  text-align: center;
  border-radius: 6px;
  background: linear-gradient(135deg, #ea2ce2 0%, #ff8d4e 100%);
  position: relative;
}

.smart-banner-download::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 6px;
  background: var(--unnamed, linear-gradient(135deg, #ff8d4e 0%, #ea2ce2 100%));
}

@media (hover: none) {
  .smart-banner-download {
    -webkit-tap-highlight-color: transparent;
    transition: none;
  }
  .smart-banner-download:active::before {
    opacity: 0;
  }
}

@media (hover: hover) {
  .smart-banner-download {
    backface-visibility: hidden;
  }
  .smart-banner-download:hover::before {
    opacity: 0;
  }
  .smart-banner-download:active::before {
    opacity: 0;
  }
}

.smart-banner-download a {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  line-height: 100%;
  display: block;
  padding: 10px 16px;
  border-radius: 6px;
  position: relative;
}

.top-header {
  position: fixed;
  top: 32px;
  right: 64px;
  z-index: 999;
}

.top-header-nav ul {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  align-items: center;
}

.top-header-nav li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  padding-bottom: 10px;
}

.top-nav-link {
  margin: 0 20px;
}

@media (hover: none) {
  .top-nav-link a {
    -webkit-tap-highlight-color: transparent;
    transition: none;
  }
  .top-nav-link a:active {
    border-bottom: 1px solid #363636;
  }
}

@media (hover: hover) {
  .top-nav-link a {
    backface-visibility: hidden;
  }
  .top-nav-link a:hover {
    border-bottom: 1px solid #363636;
  }
  .top-nav-link a:active {
    border-bottom: 1px solid #363636;
  }
}

.top-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.top-login-btn {
  width: 112px;
}

.top-login-btn a {
  border: 1px solid var(--color-text);
  padding: 9px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

@media (hover: none) {
  .top-login-btn a {
    -webkit-tap-highlight-color: transparent;
    transition: none;
  }
  .top-login-btn a:active {
    background-color: #363636;
    color: #fff;
  }
}

@media (hover: hover) {
  .top-login-btn a {
    backface-visibility: hidden;
  }
  .top-login-btn a:hover {
    background-color: #363636;
    color: #fff;
  }
  .top-login-btn a:active {
    background-color: #363636;
    color: #fff;
  }
}

.x-login-btn {
  width: 120px;
}

.x-login-btn a {
  color: #fff;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: opacity 0.2s ease, color 0.2s ease;
}

@media (hover: none) {
  .x-login-btn a {
    -webkit-tap-highlight-color: transparent;
    transition: none;
  }
  .x-login-btn a:active {
    opacity: 0.5;
  }
}

@media (hover: hover) {
  .x-login-btn a {
    backface-visibility: hidden;
  }
  .x-login-btn a:hover {
    opacity: 0.5;
  }
  .x-login-btn a:active {
    opacity: 0.5;
  }
}

.x-login-btn a::before {
  content: "";
  display: block;
  width: 16px;
  min-width: 16px;
  height: 18px;
  min-height: 18px;
  background-color: #fff;
  -webkit-mask-image: url(../../images/shared/icon-x.svg);
  mask-image: url(../../images/shared/icon-x.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-right: 8px;
}

.top-new-register-btn {
  margin-left: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ea2ce2 0%, #ff8d4e 100%);
  position: relative;
}

.top-new-register-btn::before {
  content: "";
  background: linear-gradient(135deg, #ff8d4e 0%, #ea2ce2 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  transition: opacity 0.2s ease;
}

@media (hover: none) {
  .top-new-register-btn {
    -webkit-tap-highlight-color: transparent;
    transition: none;
  }
  .top-new-register-btn:active::before {
    opacity: 0;
  }
}

@media (hover: hover) {
  .top-new-register-btn {
    backface-visibility: hidden;
  }
  .top-new-register-btn:hover::before {
    opacity: 0;
  }
  .top-new-register-btn:active::before {
    opacity: 0;
  }
}

.top-new-register-btn a {
  color: #fff;
  padding: 10px 16px;
  position: relative;
}

.tw-header {
  background: #f5f5f5;
  border: none;
}

.fv {
  position: relative;
  z-index: 1;
  height: 100vh;
  width: 100%;
  min-height: 812px;
  max-height: 812px;
  overflow: hidden;
}

.fv-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fv-logo-box {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 374px;
  height: 168px;
  overflow: hidden;
}

.fv-logo-box h1 {
  font-size: 10px;
  position: absolute;
  top: 0;
  z-index: -10;
}

.logo-neppri {
  position: absolute;
  top: 30px;
  left: 43px;
}

.fv-content {
  padding: 0 0 0 82px;
  display: grid;
  grid-template-columns: 49.1% minmax(674px, 49.8%);
  gap: 1.3%;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1480px;
}

.fv-content-copy {
  position: relative;
  max-width: 670px;
}

.fv-content-copy .copy-bg-img {
  position: absolute;
  left: 369px;
  top: -123px;
  z-index: -1;
}

.fv-content-copy .fv-copy {
  font-size: 44px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.22px;
  background: linear-gradient(135deg, #ff8d4e 0%, #ea2ce2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fv-content-copy .fv-sub-copy {
  color: var(--color-sub-copy);
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  margin: 16px 0 48px;
  padding-right: 6px;
}

.fv-content-copy .fv-app-download {
  display: flex;
  gap: 12px;
}

.fv-content-copy .fv-app-download a {
  display: inline-block;
}

.fv-content-copy .fv-app-download a img {
  display: block;
}

.app-batch img {
  transition: opacity 0.2s ease;
}

@media (hover: none) {
  .app-batch img {
    -webkit-tap-highlight-color: transparent;
    transition: none;
  }
  .app-batch img:active {
    opacity: 1;
  }
}

@media (hover: hover) {
  .app-batch img {
    backface-visibility: hidden;
  }
  .app-batch img:hover {
    opacity: 0.5;
  }
  .app-batch img:active {
    opacity: 1;
  }
}

.fv-content-images {
  position: relative;
  max-width: 674px;
}

.fv-content-images .fv-ellipse-img {
  display: block;
  margin: 0 110px 0 auto;
  height: auto;
}

.fv-content-images .fv-mock-img {
  height: auto;
  filter: drop-shadow(36px 43px 60px rgba(0, 0, 0, 0.12));
  position: absolute;
  top: 58%;
  left: 46%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.fv-content-images .fv-pic-men-img {
  height: auto;
  filter: drop-shadow(-2px 12px 43px rgba(0, 0, 0, 0.16));
  position: absolute;
  top: -22px;
  left: 64px;
  z-index: 4;
}

.fv-content-images .fv-pic-woman-img {
  height: auto;
  filter: drop-shadow(0px 17px 49px rgba(0, 0, 0, 0.15));
  position: absolute;
  top: 162px;
  right: 64.56px;
  z-index: 2;
}

.fv-content-images .fv-pic-illust-img {
  height: auto;
  filter: drop-shadow(0px 43px 69px rgba(0, 0, 0, 0.1));
  position: absolute;
  top: 245px;
  left: 4px;
  z-index: 1;
}

.fv-scroll-assist {
  position: absolute;
  left: 24px;
  bottom: 12%;
}

.fv-scroll-assist span {
  display: block;
  width: 1px;
  height: 80px;
  background-color: var(--color-footer-nav);
  margin: 0 9px 9px;
}

.fv-scroll-assist p {
  color: var(--color-footer-nav);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  writing-mode: vertical-rl;
}

.fv-rotate-text {
  position: absolute;
  z-index: -2;
  top: -288px;
  right: -152px;
}

.fv-rotate-text img {
  animation: 100s linear infinite RotateText;
}

@keyframes RotateText {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.about {
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}

.about-inner {
  max-width: 1480px;
  margin: 0 auto;
  position: relative;
}

.about-title-box {
  position: relative;
  margin: 0 auto 72px;
}

.about-ellipse-img {
  position: absolute;
  top: 0;
  left: 94px;
}

.about-title-wrap {
  position: relative;
  text-align: center;
  z-index: 1;
}

.about-sub-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 150%;
  padding-top: 8px;
  background: linear-gradient(135deg, #ff8d4e 0%, #ea2ce2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.about-title {
  font-size: 34px;
  font-weight: 900;
  line-height: 150%;
  margin-bottom: 40px;
  color: var(--color-text);
}

.about-title > em {
  font-size: 1.3529411765em;
  font-weight: 600;
  font-style: normal;
}

.about-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 200%;
  color: var(--color-text);
}

.gradient-text {
  color: var(--color-accent-text);
}

.about-dot-img {
  position: absolute;
  right: 58.19px;
  top: -52px;
}

.about-content {
  display: grid;
  grid-template-columns: 384px 384px 384px;
  gap: 24px;
  justify-content: center;
}

.about-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 40px;
  background: #fff;
  position: relative;
  padding: 64px 56px 40px;
}

.about-item-num {
  width: 100px;
  height: 54px;
  text-align: center;
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
}

.about-item-num > img {
  height: 100%;
}

.about-item-sub-title {
  color: #767676;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin-top: 16px;
}

.about-item-title {
  font-size: 20px;
  color: var(--color-text);
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 32px;
}

.about-item-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  color: #767676;
  font-family: Hiragino Sans;
}

.about-ellipse-line-img {
  position: absolute;
  right: -8px;
  bottom: 0;
  z-index: -1;
}

.use {
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.use .section-sub-title {
  margin-bottom: 105px;
}

.user__inner {
  padding: 0 120px;
  margin: 0 auto;
}

.use-ellipse-img {
  position: absolute;
  top: -26px;
  left: -18px;
  z-index: -1;
}

.section-title {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 78px;
  font-weight: 900;
  line-height: 120%;
  background: linear-gradient(135deg, #ff8d4e 0%, #ea2ce2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub-title {
  font-size: 16px;
  color: var(--color-text);
  font-weight: 600;
  line-height: 150%;
}

.use-step {
  border: 2px solid var(--color-accent-text);
  border-radius: 30px;
  padding: 68px 72px 56px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
}

.use-step-title {
  background-color: var(--color-top-bg);
  text-align: center;
  padding: 0 10px;
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
}

.use-step-title span {
  font-size: 14px;
  color: var(--color-accent-text);
  font-weight: 500;
  line-height: 150%;
}

.use-step-title h3 {
  font-size: 32px;
  color: var(--color-accent-text);
  font-weight: 600;
  line-height: 150%;
}

.use-step-user {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.use-step-user img {
  display: block;
}

.use-step-user p {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  line-height: 150%;
  padding: 12px 16px;
  background-color: var(--color-accent-text);
  border-radius: 10px;
  position: relative;
}

.use-step-user p::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid var(--color-accent-text);
  border-left: 0;
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
}

.use-step-content {
  display: grid;
  grid-template-columns: 320px 320px 320px;
  gap: 48px;
}

.use-step-item {
  border-radius: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0px;
  position: relative;
  max-height: 620px;
}

.use-step-item h4 {
  color: var(--color-step-title);
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  margin: 6px 0 22px;
}

.use-step-item-num {
  color: var(--color-accent-text);
  text-align: center;
}

.use-step-item-num span {
  font-size: 14px;
  font-weight: 900;
  line-height: 10px;
  letter-spacing: 0.42px;
  display: block;
}

.use-step-item-num p {
  font-size: 32px;
  font-weight: 900;
  line-height: 32px;
  letter-spacing: 0.96px;
}

.use-step-item-images img {
  display: block;
}

.use-step-img {
  border-radius: 10px;
  box-shadow: 0px 15px 47px 0px rgba(0, 0, 0, 0.1);
}

.use-step-illust-img {
  border-radius: 10px;
  filter: drop-shadow(0px 4px 21px rgba(0, 0, 0, 0.12));
  position: absolute;
  top: 147px;
  left: 6px;
}

.use-step-price-img {
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 10px;
  filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.15));
  position: absolute;
  left: 50%;
  bottom: 156px;
  transform: translateX(-50%);
}

.bubble-sns {
  position: absolute;
  right: 21px;
  bottom: 60px;
}

.bubble-sns .bubble-twitter {
  position: relative;
  left: -39px;
  top: -10px;
}

.bubble-sns .bubble-instagram {
  position: relative;
  right: -7px;
  top: -14px;
}

.use-ellipse-rigth-img {
  position: absolute;
  right: -54px;
  margin-top: -252px;
  z-index: -1;
}

.use-buyers {
  margin-top: 106px;
  border-color: var(--color-buyers);
}

.use-buyers .use-step-title span {
  color: var(--color-buyers);
}

.use-buyers .use-step-title h3 {
  color: var(--color-buyers);
}

.use-buyers .use-step-user p {
  background-color: var(--color-buyers);
}

.use-buyers .use-step-user p::before {
  border-right-color: var(--color-buyers);
}

.use-buyers .use-step-item-num {
  color: var(--color-buyers);
}

.use-step-buy-btm {
  position: absolute;
  bottom: 47px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.use-step-print-num {
  filter: drop-shadow(0px 4px 29px rgba(0, 0, 0, 0.12));
  border-radius: 14px;
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
}

.use-step-qr {
  filter: drop-shadow(0px 4px 25px rgba(0, 0, 0, 0.14));
  border-radius: 5px;
  position: absolute;
  right: 28px;
  bottom: 40px;
}

.use-step-buy-03 {
  position: relative;
  left: -12px;
  top: -2px;
}

.feature {
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}

.feature-inner {
  padding: 0 120px;
}

.feature-title {
  position: relative;
  margin-bottom: 40px;
}

.feature-dot-img {
  position: absolute;
  top: -38px;
  left: 338px;
  z-index: -1;
}

.feature-contents {
  max-width: 1480px;
  margin: 0 auto;
}

.feature-item {
  display: grid;
  grid-template-columns: 47% auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.feature-item:nth-child(even) {
  margin: 120px 0;
  grid-template-columns: auto 47%;
  grid-template-areas: "img text";
}

.feature-item:nth-child(even) .feature-item-text-box {
  grid-area: text;
}

.feature-item:nth-child(even) .feature-item-img-box {
  grid-area: img;
}

.feature-item-sub-title {
  font-size: 16px;
  color: var(--color-feature-sub-text);
  font-weight: 400;
  line-height: 150%;
}

.feature-item-title {
  font-size: 32px;
  color: var(--color-text);
  font-weight: 600;
  line-height: 150%;
  margin: 8px 0 32px;
}

.feature-item-title span {
  font-family: "Hiragino Kaku Gothic ProN";
  background: linear-gradient(160deg, #ff8d4e 0%, #ea2ce2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-item-text {
  font-size: 16px;
  font-family: Hiragino sans;
  color: var(--color-text);
  font-weight: 400;
  line-height: 180%;
}

.feature-cost-img {
  height: auto;
  position: relative;
  top: 60px;
  left: 96px;
  z-index: 2;
}

.feature-rotate-text-img {
  position: relative;
  top: -24px;
  z-index: 1;
  animation: 60s linear infinite RotateText;
}

.feature-print-img {
  filter: drop-shadow(0px 48px 48px rgba(0, 0, 0, 0.1));
}

.feature-flowing-text {
  height: 400px;
  width: 100%;
  position: absolute;
  bottom: 284px;
  left: 0;
  z-index: -2;
  display: flex;
  overflow: hidden;
}

.feature-flowing-text span {
  color: #f3f3f3;
  font-size: 254.979px;
  font-weight: 900;
  line-height: 156.5%;
  display: inline-block;
  white-space: nowrap;
}

.feature-flowing-text span:nth-child(1) {
  animation: TextFlowingLoop 120s -60s linear infinite;
}

.feature-flowing-text span:nth-child(2) {
  animation: TextFlowingLoop2 120s linear infinite;
}

.feature-ellipse-img {
  position: absolute;
  right: -48px;
  bottom: -52px;
  z-index: -1;
}

@keyframes TextFlowingLoop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes TextFlowingLoop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

.conversion {
  position: relative;
  z-index: 1;
  height: 520px;
  min-height: 520px;
  width: 100%;
  background: linear-gradient(135deg, #ff8d4e 0%, #ea2ce2 100%);
}

.conversion .link-area {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 120px;
}

@media (hover: none) {
  .conversion .link-area {
    -webkit-tap-highlight-color: transparent;
    transition: none;
  }
}

@media (hover: hover) {
  .conversion .link-area {
    backface-visibility: hidden;
  }
  .conversion .link-area:hover .conversion-btn {
    background-color: #fff;
  }
  .conversion .link-area:hover .conversion-btn span {
    background: var(--unnamed, linear-gradient(135deg, #ff8d4e 0%, #ea2ce2 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.conversion-text-box {
  position: relative;
  z-index: 2;
  color: #fff;
}

.conversion-text-box h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 150%;
  margin: 8px 0 48px;
}

.conversion-text-box .sp-app-download p {
  font-size: 14px;
  font-weight: 600;
  line-height: 180%;
  margin-bottom: 8px;
}

.conversion-text-box .sp-app-download .sp-app-download-box {
  position: relative;
  left: -3px;
}

.conversion-text-box .sp-app-download .app-batch {
  display: inline-block;
}

.conversion-sub-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}

.conversion-btn {
  text-align: center;
  width: 207px;
  padding: 23px;
  border-radius: 10px;
  border: 1px solid #fff;
  transition: background-color 0.2s ease;
}

.conversion-btn span {
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  display: block;
  transition: background 0.2s ease;
}

.conversion-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
  background: linear-gradient(135deg, #ff8d4e 0%, #ea2ce2 100%);
}

.conversion-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.faq {
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
  overflow: hidden;
}

.faq-inner {
  padding: 0 120px;
}

.faq-title {
  position: relative;
  margin-bottom: 80px;
  padding-top: 120px;
}

.faq-dot-img {
  position: absolute;
  top: -24px;
  left: 134px;
  z-index: -1;
}

.faq-contents {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1480px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 20px;
  background: #fff;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq-text-box {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.faq-text-box span {
  font-size: 24px;
  color: var(--color-accent-text);
  font-weight: 900;
  line-height: 180%;
  display: block;
}

.faq-text-box .faq-item-text {
  display: inline-block;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 180%;
}

.faq-text-box .faq-item-text a {
  display: inline-block;
  color: var(--color-link-text);
  text-decoration-line: underline;
  font-weight: 500;
}

.faq-text-box .answer-text {
  font-weight: 500;
}

.faq-ellipse-img {
  position: absolute;
  right: -120px;
  top: -118px;
  z-index: -1;
}

.faq-ellipse-small-img {
  position: absolute;
  left: -82px;
  bottom: -90px;
  z-index: -1;
}

.illust-area {
  padding-bottom: 120px;
  position: relative;
}

.illust-area-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 734px;
  max-width: 1480px;
  margin: 0 auto;
}

.illust-area-inner img {
  position: absolute;
  display: block;
}

.illust-img-01 {
  top: 80px;
  left: 23%;
  box-shadow: 5px 4px 16px 0px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.illust-img-02 {
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  filter: drop-shadow(0px 21px 54px rgba(0, 0, 0, 0.12));
}

.illust-img-03 {
  top: 0;
  right: 12%;
  box-shadow: 5px 4px 16px 0px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.illust-img-04 {
  left: 7.7%;
  bottom: 0;
  box-shadow: 2px 13px 55px 0px rgba(0, 0, 0, 0.17);
  z-index: 5;
}

.illust-img-05 {
  right: 34%;
  bottom: 27px;
  filter: drop-shadow(0px 17px 49px rgba(0, 0, 0, 0.15));
  z-index: 6;
}

.illust-flowing-text {
  height: 150px;
  width: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  top: 32%;
  z-index: 3;
}

.illust-flowing-text span {
  color: var(--color-flowing-text);
  font-size: 150px;
  font-weight: 900;
  line-height: 100%;
  display: inline-block;
  white-space: nowrap;
}

.illust-flowing-text span:nth-child(1) {
  animation: TextFlowingLoop 240s -120s linear infinite;
}

.illust-flowing-text span:nth-child(2) {
  animation: TextFlowingLoop2 240s linear infinite;
}

.conversion-02 {
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 512px;
}

.conversion-02 .link-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, #ea2ce2 0%, #ff8d4e 100%);
  position: relative;
}

.conversion-02 .link-area::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff8d4e 0%, #ea2ce2 100%);
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.6s ease;
}

@media (hover: none) {
  .conversion-02 .link-area {
    -webkit-tap-highlight-color: transparent;
    transition: none;
  }
}

@media (hover: hover) {
  .conversion-02 .link-area {
    backface-visibility: hidden;
  }
  .conversion-02 .link-area:hover::before {
    opacity: 0;
  }
  .conversion-02 .link-area:hover .conversion-02-btn {
    background-color: #fff;
  }
  .conversion-02 .link-area:hover .conversion-02-btn span {
    background: var(--unnamed, linear-gradient(135deg, #ff8d4e 0%, #ea2ce2 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.conversion-02-text-box {
  color: #fff;
  text-align: center;
  position: relative;
}

.conversion-02-text-box h2 {
  font-size: 92px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: -0.98px;
}

.conversion-02-border {
  height: 1px;
  background-color: #fff;
  width: 89.5%;
  margin: 0 auto;
}

.conversion-02-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  margin: 32px 0 112px;
}

.conversion-02-btn {
  padding: 28px 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  transition: background-color 0.2s ease;
}

.conversion-02-btn span {
  font-size: 14px;
  font-weight: 900;
  line-height: 24px;
  display: block;
  transition: background 0.2s ease;
}

@media screen and (min-width: 600px) {
  .conversion-02-btn {
    padding: 28px 64px;
  }
  .conversion-02-btn span {
    font-size: 16px;
  }
}

.app-banner {
  padding: 8px;
  background-color: #fff;
}

.app-download-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-download-box p {
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 600;
  line-height: 180%;
  margin-right: 16px;
}

@media screen and (max-width: 1350px) {
  .fv-content {
    grid-template-columns: 1fr 674px;
  }
  .user__inner,
  .feature-inner,
  .conversion .link-area,
  .faq-inner {
    padding: 0 82px;
  }
  .about-ellipse-img {
    left: 64px;
  }
  .about-content {
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0 24px;
  }
  .use-step-content {
    gap: 24px;
  }
  .faq-ellipse-img {
    right: -82px;
  }
}

@media screen and (max-width: 1250px) {
  .fv-content {
    grid-template-columns: 1fr 572px;
  }
  .fv-content-images .fv-ellipse-img {
    margin: 0 auto;
  }
  .fv-content-images .fv-mock-img {
    left: 50%;
  }
  .fv-content-images .fv-pic-woman-img {
    right: 12.56px;
  }
  .user__inner,
  .feature-inner,
  .conversion .link-area,
  .faq-inner {
    padding: 0 24px;
  }
  .about-item-img {
    width: auto;
    height: 23.36vw;
  }
}

@media screen and (max-width: 1150px) {
  .use-step {
    padding: 68px 16px 56px;
  }
  .use-step-content {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 1024px) {
  .top-header {
    display: none;
  }
  .fv {
    height: auto;
    min-height: initial;
    max-height: initial;
  }
  .fv-inner {
    display: block;
  }
  .fv-logo-box {
    min-width: 216px;
    min-height: 96px;
    width: auto;
    height: 26.66vw;
  }
  .fv-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 100px;
    padding: 142px 16px 0;
  }
  .fv-content-copy .copy-bg-img {
    display: none;
  }
  .fv-content-copy .fv-copy {
    font-size: 32px;
    max-width: 490px;
  }
  .fv-content-copy .fv-app-download {
    justify-content: center;
  }
  .fv-content-images {
    left: 34px;
  }
  .fv-content-images .fv-ellipse-img {
    width: auto;
    height: 397px;
  }
  .fv-content-images .fv-mock-img {
    left: 38%;
    width: auto;
    height: 492px;
  }
  .fv-content-images .fv-pic-men-img {
    top: -32px;
    left: -74px;
    width: auto;
    height: 238px;
  }
  .fv-content-images .fv-pic-woman-img {
    top: 150px;
    right: -43.44px;
    width: auto;
    height: 228px;
  }
  .fv-content-images .fv-pic-illust-img {
    top: 226px;
    left: -138px;
    width: auto;
    height: 175px;
  }
  .fv-rotate-text {
    top: 14px;
    right: -110px;
  }
  .fv-rotate-text img {
    width: auto;
    height: 540px;
  }
  .fv-scroll-assist {
    display: none;
  }
  .about {
    padding-top: 62px;
  }
  .about-ellipse-img {
    left: -7px;
    top: 8px;
  }
  .about-title-wrap {
    padding: 54px 16px 0;
  }
  .about-sub-title {
    font-size: 18px;
  }
  .about-title {
    font-size: 32px;
  }
  .about-text {
    font-size: 16px;
  }
  .about-dot-img {
    top: 0;
    right: -20px;
    width: 274px;
    height: auto;
  }
  .about-content {
    padding: 0 16px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
  }
  .about-item {
    max-width: 384px;
  }
  .about-item-img {
    height: 292px;
  }
  .section-title {
    font-size: 68px;
  }
  .use .use-ellipse-img {
    display: none;
  }
  .use .section-sub-title {
    margin-bottom: 68.5px;
  }
  .use-step-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 32px;
  }
  .use-step-item {
    width: 320px;
  }
  .use-ellipse-rigth-img {
    right: 0;
    margin-top: -94px;
  }
  .feature .feature-dot-img {
    top: -64px;
    right: -24px;
    left: initial;
  }
  .feature .feature-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .feature .feature-item:nth-child(2) {
    margin: 100px 0;
  }
  .feature-item-title {
    font-size: 28px;
  }
  .feature-flowing-text {
    bottom: 550px;
  }
  .feature-ellipse-img {
    display: none;
  }
  .conversion-text-box h2 {
    font-size: 34px;
  }
  .faq .faq-dot-img {
    display: none;
  }
  .illust-img-01 {
    left: 3%;
  }
  .illust-img-03 {
    right: 0;
  }
  .illust-img-04 {
    left: -22px;
    bottom: -24px;
  }
  .illust-img-05 {
    left: 60%;
  }
  .conversion-02-text-box h2 {
    font-size: 56px;
  }
  .conversion-02-border {
    width: 71.5%;
  }
  .conversion-02-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 599px) {
  .logo-neppri {
    min-width: 76px;
    min-height: 23px;
    width: auto;
    height: 6.5vw;
    top: 18%;
    left: 9%;
  }
  .logo-neppri-bg {
    min-width: 216px;
    min-height: 96px;
    width: auto;
    height: 26.66vw;
  }
  .fv-content {
    gap: 54px;
  }
  .fv-content-copy .fv-copy {
    font-size: 20px;
    letter-spacing: 0.1px;
    max-width: 320px;
  }
  .fv-content-copy .fv-sub-copy {
    font-size: 12px;
    margin: 16px 0 32px;
    padding-right: 0;
  }
  .fv-content-copy .google-play-link img {
    width: 143px;
    height: 44px;
  }
  .fv-content-copy .app-store-link img {
    width: 115px;
    height: 44px;
  }
  .fv-content-images {
    left: 14px;
  }
  .fv-content-images .fv-ellipse-img {
    height: 66.1vw;
    margin: 0 auto;
  }
  .fv-content-images .fv-mock-img {
    height: 73vw;
    top: 1%;
    left: 41%;
    transform: translate(-50%, 0%);
  }
  .fv-content-images .fv-pic-men-img {
    height: 35.8vw;
    top: -3%;
    left: -12%;
  }
  .fv-content-images .fv-pic-woman-img {
    height: 35.8vw;
    top: 42%;
    right: initial;
    left: 73%;
  }
  .fv-content-images .fv-pic-illust-img {
    height: 28.5vw;
    top: 55%;
    left: -30%;
  }
  .fv-rotate-text {
    top: 28px;
    right: -76px;
  }
  .fv-rotate-text img {
    height: 79vw;
  }
  .about {
    padding-top: 42px;
    padding-bottom: 56px;
  }
  .about-ellipse-img {
    width: 45.061px;
    height: 50.426px;
  }
  .about-title-box {
    margin-bottom: 48px;
  }
  .about-sub-title {
    font-size: 14px;
  }
  .about-title {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .about-text {
    font-size: 14px;
    text-align: left;
  }
  .about-dot-img {
    width: 163.81px;
    height: 103.2px;
  }
  .about-item {
    padding: 40px;
    max-width: 328px;
  }
  .about-item:nth-child(2) .about-item-img {
    transform: scale(1.3);
    position: relative;
    right: 12px;
  }
  .about-item-num {
    height: 48px;
    top: -24px;
  }
  .about-item-img {
    width: 100%;
    height: auto;
  }
  .about-item-sub-title {
    font-size: 12px;
  }
  .about-item-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .about-item-text {
    font-size: 14px;
  }
  .about-ellipse-line-img {
    width: 210.858px;
    height: 235.965px;
    right: -16px;
  }
  .use {
    padding-bottom: 56px;
  }
  .user__inner {
    padding: 0 16px;
  }
  .section-title {
    font-size: 44px;
  }
  .section-sub-title {
    font-size: 14px;
  }
  .use-step {
    padding: 60.5px 16px 16px;
  }
  .use-step-title {
    top: -31px;
  }
  .use-step-title span {
    font-size: 14px;
  }
  .use-step-title h3 {
    font-size: 24px;
  }
  .use-step-user {
    gap: 20px;
  }
  .use-step-user img {
    width: 47px;
    height: 62px;
  }
  .use-step-user p {
    font-size: 14px;
  }
  .use-step-item {
    width: 100%;
    max-width: 296px;
    max-height: 617px;
  }
  .use-step-item h4 {
    font-size: 18px;
  }
  .use-step-item .use-step-illust-img {
    width: 126px;
    height: 126px;
    left: 18px;
  }
  .use-step-item .use-step-price-img {
    width: 272px;
  }
  .use-ellipse-rigth-img {
    margin-top: -16px;
    width: 83.79px;
    height: 133px;
  }
  .use-buyers {
    margin-top: 60.5px;
  }
  .use-step-buy-btm {
    width: 272px;
    height: 36px;
    bottom: 44px;
  }
  .feature {
    padding-bottom: 56px;
  }
  .feature .feature-dot-img {
    width: 195px;
    height: 122.85px;
    top: -30px;
  }
  .feature .feature-item:nth-child(2) {
    margin: 80px 0;
  }
  .feature-inner {
    padding: 0 16px;
  }
  .feature-item-sub-title {
    font-size: 14px;
  }
  .feature-item-title {
    font-size: 20px;
  }
  .feature-item-text {
    font-size: 14px;
  }
  .feature-item-img-box {
    position: relative;
    width: 100%;
  }
  .feature-cost-img {
    width: auto;
    height: 48.8vw;
    left: 0;
    top: 39.65px;
  }
  .feature-rotate-text-img {
    width: auto;
    height: 36.6vw;
    position: absolute;
    right: 0;
    top: 0;
  }
  .feature-store-img {
    width: 100%;
    height: auto;
  }
  .feature-print-img {
    width: 100%;
    height: auto;
  }
  .feature-flowing-text {
    height: 150px;
    bottom: initial;
    top: 62%;
    display: flex;
    align-items: center;
  }
  .feature-flowing-text span {
    font-size: clamp(6rem, 2.25rem + 16.6667vw, 8.5rem);
  }
  .conversion {
    height: 523px;
    min-height: 523px;
  }
  .conversion .link-area {
    padding: 0 28px;
  }
  .conversion-text-box h2 {
    font-size: 24px;
  }
  .conversion-sub-text {
    font-size: 16px;
  }
  .conversion-bg img {
    -o-object-position: right;
       object-position: right;
    opacity: 0.2;
  }
  .faq {
    padding-bottom: 80px;
  }
  .faq-inner {
    padding: 0 16px;
  }
  .faq-title {
    padding-top: 56px;
    margin-bottom: 40px;
  }
  .faq-item {
    padding: 32px 16px;
  }
  .faq-text-box {
    gap: 8px;
  }
  .faq-text-box span {
    font-size: 20px;
  }
  .faq-text-box .faq-item-text {
    font-size: 16px;
  }
  .faq-ellipse-img {
    width: 112px;
    height: 125px;
    right: -16px;
    top: -54px;
  }
  .faq-ellipse-small-img {
    left: -64px;
  }
  .illust-area {
    padding-bottom: 80px;
  }
  .illust-area-inner {
    min-height: 488px;
    height: 135.55vw;
    display: block;
  }
  .illust-flowing-text {
    height: 154px;
    top: 36.8%;
  }
  .illust-flowing-text span {
    font-size: clamp(4rem, -4.4375rem + 37.5vw, 9.625rem);
  }
  .illust-img-01 {
    width: auto;
    height: 32.74vw;
    top: 22.6%;
    left: 3.6%;
  }
  .illust-img-02 {
    width: auto;
    height: 85vw;
    top: 49%;
  }
  .illust-img-03 {
    width: auto;
    height: 48.2vw;
    top: 0;
    right: -23.13px;
  }
  .illust-img-04 {
    width: auto;
    height: 53vw;
    left: -33px;
    top: 61%;
    bottom: initial;
  }
  .illust-img-05 {
    width: auto;
    height: 50.2vw;
    left: 64.2%;
    top: 63%;
    bottom: initial;
  }
  .conversion-02 .sp-app-download p {
    font-size: 14px;
    font-weight: 600;
    line-height: 180%;
    margin-bottom: 8px;
  }
  .conversion-02-text-box h2 {
    font-size: 32px;
    letter-spacing: -0.32px;
  }
  .conversion-02-border {
    width: 71.2%;
  }
  .conversion-02-text {
    font-size: 13px;
  }
  .app-banner {
    display: none;
  }
}

.AN-mod-main {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.AN-br-for-tab {
  display: none;
}

.AN-br-for-sp {
  display: block;
}

.AN-bg-infinite-logo {
  position: absolute;
  top: 650px;
  z-index: -2;
  width: 110%;
  left: -10vw;
  display: flex;
  transform: skew(15deg, 345deg);
  font-family: "Red Hat Display";
  pointer-events: none;
}

.AN-bg-infinite-logo span {
  color: #ffffff;
  font-size: 170px;
  font-weight: 300;
  line-height: 145%;
  white-space: nowrap;
}

.AN-bg-infinite-logo span:nth-child(1) {
  animation: TextFlowingLoop 120s -60s linear infinite;
}

.AN-bg-infinite-logo span:nth-child(2) {
  animation: TextFlowingLoop2 120s linear infinite;
}

.banner {
  top: 99px;
  z-index: 9999;
}

.banner .carousel_pc {
  display: none;
}

.banner .carousel_sp {
  width: 100%;
}

.banner .slick-dots li {
  margin: 0;
}

.banner .slick-dots li button:before {
  font-size: 6px;
}

@media screen and (min-width: 600px) {
  .banner {
    position: fixed;
    top: unset;
    bottom: 0;
    width: 100%;
  }
  .banner .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    cursor: pointer;
  }
  .banner .carousel_pc {
    display: block;
    text-align: center;
    width: 100%;
  }
  .banner .carousel_pc div {
    display: inline-block;
    width: 100%;
    position: relative;
    max-width: 1200px;
  }
  .banner .carousel_sp {
    display: none;
  }
  .banner .slick-dots li button:before {
    font-size: 8px;
  }
}

.AN-fv-container {
  display: block;
  margin: 0 auto;
}

.AN-fv-container .AN-fv-stack-right {
  position: relative;
}

.AN-fv-container .AN-fv-stack-right.__pc {
  display: none;
}

.AN-fv-container .AN-fv-stack-right .AN-fv-img1 {
  position: relative;
  height: 109.6vw;
  top: 1.87vw;
  left: calc(50% - 48.2vw);
}

.AN-fv-container .AN-fv-stack-right .AN-fv-img2 {
  position: absolute;
  height: 88.9vw;
  z-index: -1;
  top: 34.03vw;
  left: calc(50% - 8.9vw);
  overflow: hidden;
}

.AN-fv-container .AN-fv-stack-left {
  display: block;
  padding: 0 30px;
}

.AN-fv-container .AN-fv-stack-left .AN-fv-noti {
  position: relative;
  top: -8px;
  left: -15px;
  display: inline-block;
  margin-bottom: -11px;
  color: #fe7878;
  font-size: 10.19px;
  font-weight: 900;
  line-height: 130%;
  transform: rotate(-7deg);
  letter-spacing: -0.05em;
}

.AN-fv-container .AN-fv-stack-left .AN-fv-noti::before {
  content: "";
  display: inline-block;
  position: relative;
  top: 7px;
  left: -2px;
  height: 20px;
  width: 14px;
  background-color: #fe7878;
  -webkit-mask-image: url(/images/shared/notice-hooray-left.svg);
  mask-image: url(/images/shared/notice-hooray-left.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transform: rotate(7deg);
}

.AN-fv-container .AN-fv-stack-left .AN-fv-noti::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 7px;
  left: 2px;
  height: 20px;
  width: 14px;
  background-color: #fe7878;
  -webkit-mask-image: url(/images/shared/notice-hooray-right.svg);
  mask-image: url(/images/shared/notice-hooray-right.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transform: rotate(7deg);
}

.AN-fv-container .AN-fv-stack-left .AN-fv-title {
  margin-left: -3px;
  color: #222222;
  font-size: 9.2vw;
  font-weight: 900;
  line-height: 130%;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.AN-fv-container .AN-fv-stack-left .AN-fv-title .AN-fv-title-gradient {
  background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-right: 0.04em;
}

.AN-fv-container .AN-fv-stack-left .AN-fv-title .AN-fv-title-kerning1 {
  letter-spacing: -0.15em;
}

.AN-fv-container .AN-fv-stack-left .AN-fv-title .AN-fv-title-kerning2 {
  letter-spacing: -0.1em;
}

.AN-fv-container .AN-fv-stack-left .AN-fv-title .AN-fv-title-kerning3 {
  letter-spacing: -0.1em;
}

.AN-fv-container .AN-fv-stack-left .AN-fv-title .AN-fv-title-kerning4 {
  letter-spacing: -0.25em;
}

.AN-fv-container .AN-fv-stack-left .AN-fv-title .AN-fv-title-kerning5 {
  letter-spacing: -0.2em;
}

.AN-fv-container .AN-fv-stack-left .AN-fv-desc {
  margin-top: 30px;
  color: #222222;
  font-size: 12px;
  font-weight: 400;
  line-height: 180%;
  text-align: justify;
}

.AN-fv-container .AN-fv-stack-left .AN-fv-desc br {
  display: none;
}

.AN-fv-container .AN-fv-stack-left .AN-fv-btn {
  margin-top: 30px;
  right: 0;
  left: 0;
  margin-left: 0;
  border-radius: 6px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 400;
  line-height: 150%;
  padding: 10px 24px 12px;
  display: inline-block;
  width: 100%;
}

.AN-fv-container .AN-fv-stack-left .AN-fv-btn p .AN-fv-btn-lg {
  display: inline;
  font-size: 12px;
  font-weight: 900;
}

.AN-feature1-container {
  display: block;
  margin-top: 100px;
}

.AN-feature1-container .AN-feature1-stack-left {
  display: flex;
  position: relative;
  justify-content: space-between;
  margin: 40px 11px 0 11px;
  height: 90.9vw;
}

.AN-feature1-container .AN-feature1-stack-left img {
  box-shadow: 14px 14px 29px -4px rgba(0, 0, 0, 0.15);
}

.AN-feature1-container .AN-feature1-stack-left .AN-feature1-img1 {
  position: relative;
  height: 60.8vw;
  width: 29.3vw;
  border: 3px solid #333333;
  border-radius: 8px;
}

.AN-feature1-container .AN-feature1-stack-left .AN-feature1-img2 {
  position: relative;
  top: 57px;
  height: 60.8vw;
  width: 29.3vw;
  border: 3px solid #333333;
  border-radius: 8px;
}

.AN-feature1-container .AN-feature1-stack-left .AN-feature1-img3 {
  position: relative;
  top: 112px;
  height: 60.8vw;
  width: 29.3vw;
  border: 3px solid #333333;
  border-radius: 8px;
}

.AN-feature1-container .AN-feature1-stack-right {
  position: relative;
}

.AN-feature1-container .AN-feature1-stack-right .AN-feature1-rotate-text {
  position: absolute;
  z-index: -1;
  top: -178px;
  right: -122px;
  width: 268px;
}

.AN-feature1-container .AN-feature1-stack-right .AN-feature1-rotate-text .AN-feature1-rotate-text-img {
  animation: 100s linear infinite RotateText;
}

.AN-feature1-container .AN-feature1-stack-right .AN-feature-feature {
  font-size: 13px;
  font-weight: 900;
  line-height: 210%;
  margin-left: 30px;
  background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 60px);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Red Hat Display";
}

.AN-feature1-container .AN-feature1-stack-right .AN-feature-title {
  margin-top: 10px;
  margin-left: -3px;
  color: #222222;
  font-size: 33px;
  font-weight: 900;
  line-height: 130%;
  padding: 0 30px;
}

.AN-feature1-container .AN-feature1-stack-right .AN-feature-title p {
  letter-spacing: -0.03em;
}

.AN-feature1-container .AN-feature1-stack-right .AN-feature-title .AN-fv-title-gradient {
  background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.AN-feature1-container .AN-feature1-stack-right .AN-feature-title .AN-fv-title-kerning1 {
  letter-spacing: -0.15em;
  padding-right: 0.1em;
}

.AN-feature1-container .AN-feature1-stack-right .AN-feature-title .AN-fv-title-kerning2 {
  padding-right: 0.04em;
}

.AN-feature1-container .AN-feature1-stack-right .AN-feature-title .AN-fv-title-kerning3 {
  letter-spacing: -0.09em;
}

.AN-feature1-container .AN-feature1-stack-right .AN-feature-title .AN-fv-title-kerning4 {
  letter-spacing: -0.15em;
}

.AN-feature1-container .AN-feature1-stack-right .AN-feature-title .AN-fv-title-kerning5 {
  letter-spacing: -0.06em;
}

.AN-feature1-container .AN-feature1-stack-right .AN-feature-desc {
  margin-top: 37px;
  color: #222222;
  font-size: 12px;
  font-weight: 400;
  line-height: 182%;
  padding: 0 30px;
  text-align: justify;
  letter-spacing: 0.05em;
}

.AN-feature1-container .AN-feature1-stack-right .AN-feature-desc p {
  margin-bottom: 1em;
}

.AN-feature2-container {
  position: relative;
  display: block;
  margin-top: 100px;
}

.AN-feature2-container .AN-feature-feature {
  font-size: 13px;
  font-weight: 900;
  line-height: 160%;
  margin-left: 30px;
  background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 60px);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Red Hat Display";
}

.AN-feature2-container .AN-feature-title {
  margin-top: 14px;
  margin-left: -3px;
  color: #222222;
  font-size: 32px;
  font-weight: 900;
  line-height: 130%;
  padding: 0 30px;
  letter-spacing: -0.05em;
}

.AN-feature2-container .AN-feature-title .AN-fv-title-gradient {
  font-weight: 900;
  background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.AN-feature2-container .AN-feature-title .AN-fv-title-gradient-1 {
  color: #fe7878;
  font-weight: 900;
}

.AN-feature2-container .AN-feature-title .AN-fv-title-gradient-2 {
  color: #ff5fcf;
}

.AN-feature2-container .AN-feature2-inner-container {
  display: block;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left {
  display: block;
  max-width: 100%;
  margin: 40px auto;
  padding: 0 30px;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature-desc {
  color: #222222;
  font-size: 12px;
  font-weight: 400;
  line-height: 180%;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature-desc .AN-fv-title-gradient-1 {
  color: #fe7878;
  font-weight: 900;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board {
  display: block;
  background-color: #ffffff;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-title {
  display: block;
  color: #222222;
  font-size: 20px;
  font-weight: 900;
  line-height: 180%;
  text-align: center;
  padding-top: 32px;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-title .AN-fv-title-gradient-1 {
  color: #fe7878;
  font-weight: 900;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-title .AN-fv-title-gradient-2 {
  color: #ff5fcf;
  font-weight: 900;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature-board-desc {
  color: #222222;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  padding: 10px 0 0 0;
  text-align: center;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature-board-desc .AN-fv-title-gradient-1 {
  color: #fe7878;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board-graph-container {
  display: flex;
  flex-direction: row;
  position: relative;
  margin-top: 30px;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board-graph-container .AN-feature2-graph-divider {
  position: absolute;
  height: 80%;
  width: 1px;
  min-width: 1px;
  top: 50px;
  left: 0;
  right: 0;
  margin: auto;
  background: #d9d9d9;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board-graph-container .AN-feature2-graph-stack {
  display: block;
  flex-grow: 1;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board-graph-container .AN-feature2-graph-stack .AN-feature2-graph-stack-label {
  text-align: center;
  font-size: 10px;
  line-height: 130%;
  letter-spacing: 0.05em;
  color: #222222;
  margin: 20px 0 15px 0;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board-graph-container .AN-feature2-graph-stack .AN-feature2-graph-stack-label .stack-lbl-str {
  font-size: 14.5px;
  font-weight: 900;
  letter-spacing: 0;
  margin-top: 5px;
  display: inline-block;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board-graph-container .AN-feature2-graph-stack .AN-feature2-graph-stack-label-2 {
  text-align: center;
  font-size: 10px;
  line-height: 130%;
  letter-spacing: 0.05em;
  margin: 20px 0 10px 0;
  color: #fe7878;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board-graph-container .AN-feature2-graph-stack .AN-feature2-graph-stack-label-2 .stack-lbl-str {
  font-size: 14.5px;
  font-weight: 900;
  letter-spacing: 0;
  margin-top: 5px;
  display: inline-block;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board-graph-container .AN-feature2-graph-stack .AN-feature2-graph-img {
  padding: 15px 9px 15px 18px;
  width: 100%;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right {
  display: block;
  margin-top: 50px;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature-desc {
  color: #222222;
  font-size: 12px;
  font-weight: 400;
  line-height: 180%;
  padding: 0 30px;
  text-align: justify;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature-desc .AN-fv-title-gradient-1 {
  color: #fe7878;
  font-weight: 900;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature-desc .AN-fv-title-gradient-2 {
  color: #ff5fcf;
  font-weight: 900;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board {
  overflow: hidden;
  display: block;
  background-color: #ffffff;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-board-title {
  display: block;
  color: #222222;
  font-size: 20px;
  font-weight: 900;
  line-height: 180%;
  text-align: center;
  padding-top: 32px;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-board-title .AN-fv-title-gradient-1 {
  color: #fe7878;
  font-weight: 900;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-board-title .AN-fv-title-gradient-2 {
  color: #ff5fcf;
  font-weight: 900;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-img {
  position: relative;
  width: 114px;
  margin-top: 9px;
  margin-left: 12px;
  margin-bottom: -16px;
  margin-right: -10px;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock {
  padding-top: 0;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label {
  letter-spacing: 0.05em;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label2 .pp-label-st1 {
  font-size: 18px;
  line-height: 180%;
  font-weight: 900;
  vertical-align: middle;
  font-family: "Red Hat Display";
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label2 .pp-label-reg {
  font-size: 11.5px;
  line-height: 180%;
  vertical-align: middle;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label2 .pp-arrow-right {
  vertical-align: middle;
  margin: 0 6px;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label2 .AN-fv-title-gradient {
  font-size: 27.5px;
  line-height: 150%;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  vertical-align: middle;
  font-family: "Red Hat Display";
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label2 .pp-label-st2 {
  font-size: 13px;
  line-height: 100%;
  font-weight: 800;
  background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  vertical-align: -webkit-baseline-middle;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-img {
  position: relative;
  width: 114px;
  margin-top: 9px;
  margin-left: 12px;
  margin-bottom: -16px;
  margin-right: -6px;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock {
  padding-top: 0;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock .AN-feature2-pp-seal-label2 .pp-label-st1 {
  font-size: 18px;
  line-height: 180%;
  font-weight: 900;
  vertical-align: middle;
  font-family: "Red Hat Display";
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock .AN-feature2-pp-seal-label2 .pp-label-reg {
  font-size: 11.5px;
  line-height: 180%;
  vertical-align: middle;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock .AN-feature2-pp-seal-label2 .pp-arrow-right {
  vertical-align: middle;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock .AN-feature2-pp-seal-label2 .AN-fv-title-gradient {
  font-size: 27.5px;
  line-height: 150%;
  font-weight: 900;
  background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  vertical-align: middle;
  font-family: "Red Hat Display";
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock .AN-feature2-pp-seal-label2 .pp-label-st2 {
  font-size: 13px;
  line-height: 100%;
  font-weight: 800;
  background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  vertical-align: -webkit-baseline-middle;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-btn {
  position: relative;
  margin: 24px auto 15px auto;
  border-radius: 6px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #ff5fcf;
  height: 51px;
  width: 85.07vw;
  border: 1px solid #ff5fcf;
  overflow: hidden;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-btn p {
  position: relative;
  display: inline;
  font-size: 12px;
  font-weight: 900;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-btn:hover {
  color: #fff;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-btn:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}

.AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-btn::before {
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  width: 0%;
  height: 100%;
  content: "";
  background: #ff5fcf;
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.26, 0.005, 0, 1.035);
}

.AN-feature3-container {
  margin-top: 100px;
  position: relative;
}

.AN-feature3-container .AN-feature3-stack-left {
  position: relative;
  margin-top: 4px;
}

.AN-feature3-container .AN-feature3-stack-left .AN-feature3-logo-container {
  position: absolute;
  width: auto;
  top: 79px;
  right: 6px;
}

.AN-feature3-container .AN-feature3-stack-left .AN-feature3-logo-container .AN-feature3-logo-container-text {
  position: absolute;
  top: -6px;
  width: 100%;
  text-align: center;
  font-size: 8.5px;
  z-index: 1;
}

.AN-feature3-container .AN-feature3-stack-left .AN-feature3-logo-container .AN-bg-feature3-lawson {
  vertical-align: middle;
  width: 83px;
}

.AN-feature3-container .AN-feature3-stack-left .AN-feature3-logo-container .AN-bg-feature3-mini {
  width: 34px;
}

.AN-feature3-container .AN-feature3-stack-left .AN-feature3-logo-container .AN-bg-feature3-seven {
  position: relative;
  left: 0;
  width: 182px;
}

.AN-feature3-container .AN-feature3-stack-left .AN-feature3-logo-container .AN-bg-feature3-fm {
  margin-left: 12px;
  width: 100px;
}

.AN-feature3-container .AN-feature3-stack-left .AN-bg-feature3-map {
  position: absolute;
  left: -28px;
  z-index: -1;
  width: 386px;
  max-width: none;
  top: -42px;
}

.AN-feature3-container .AN-feature3-stack-left .AN-bg-feature3-map.__pc {
  display: none;
}

.AN-feature3-container .AN-feature3-stack-right .AN-feature-feature {
  font-size: 13px;
  font-weight: 900;
  line-height: 160%;
  margin-left: 30px;
  background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 60px);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Red Hat Display";
}

.AN-feature3-container .AN-feature3-stack-right .AN-feature-title {
  margin-top: 10px;
  margin-left: -3px;
  color: #222222;
  font-size: 32px;
  font-weight: 900;
  line-height: 130%;
  letter-spacing: -0.05em;
  padding: 0 30px;
}

.AN-feature3-container .AN-feature3-stack-right .AN-feature-title .AN-fv-title-kerning1 {
  letter-spacing: -0.1em;
}

.AN-feature3-container .AN-feature3-stack-right .AN-feature-title .AN-fv-title-kerning2 {
  letter-spacing: -0.15em;
}

.AN-feature3-container .AN-feature3-stack-right .AN-feature-title .AN-fv-title-gradient {
  background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  font-size: 31px;
  font-weight: 900;
  font-family: "Red Hat Display";
}

.AN-feature3-container .AN-feature3-stack-right .AN-feature-desc {
  margin-top: 42px;
  color: #222222;
  font-size: 12px;
  font-weight: 400;
  line-height: 180%;
  padding: 0 30px;
  text-align: justify;
}

.AN-feature3-container .AN-feature3-stack-right .AN-feature-desc span {
  color: #222222;
  font-size: 10px;
  font-weight: 400;
  line-height: 180%;
}

.AN-feature3-container .AN-feature3-stack-right .AN-feature-desc .AN-feature-desc-note {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}

.AN-feature3-container .AN-feature3-stack-right .AN-feature-desc .AN-feature-desc-note p {
  font-size: 12px;
}

.AN-feature4-container {
  margin-top: 190px;
  margin-bottom: 30px;
}

.AN-feature4-container .AN-feature4-img-box {
  margin-top: 30px;
}

.AN-feature4-container .AN-feature4-img-box img {
  width: 122vw;
  margin-left: -13vw;
  max-width: none;
}

.AN-feature4-container .AN-feature4-stack-left .AN-feature-feature {
  position: relative;
  font-size: 13px;
  font-weight: 900;
  line-height: 160%;
  margin-left: 30px;
  background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 60px);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Red Hat Display";
}

.AN-feature4-container .AN-feature4-stack-left .AN-feature-feature .AN-feature4-rotate-text {
  position: absolute;
  z-index: -10;
  top: -380px;
  left: -60px;
  height: 196px;
  width: 202px;
}

.AN-feature4-container .AN-feature4-stack-left .AN-feature-feature .AN-feature4-rotate-text .AN-feature4-rotate-text-img {
  animation: 100s linear infinite RotateText;
}

.AN-feature4-container .AN-feature4-stack-left .AN-feature-title {
  margin-top: 10px;
  color: #222222;
  font-size: 32px;
  font-weight: 900;
  line-height: 130%;
  letter-spacing: -0.05em;
  margin-left: -3px;
  padding: 0 30px;
}

.AN-feature4-container .AN-feature4-stack-left .AN-feature-title .AN-fv-title-gradient {
  background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0;
}

.AN-feature4-container .AN-feature4-stack-left .AN-feature-title .AN-feature4-kerning1 {
  display: inline-block;
}

.AN-feature4-container .AN-feature4-stack-left .AN-feature-desc {
  margin-top: 26px;
  color: #222222;
  font-size: 12px;
  line-height: 180%;
  padding: 15px 30px 0;
}

.AN-feature4-container .AN-feature4-stack-left .AN-feature-desc .AN-feature-desc-inner p {
  margin-bottom: 1em;
}

.AN-feature4-container .AN-feature4-stack-left .AN-feature-desc-link {
  font-size: 12px;
  font-weight: 900;
  line-height: 180%;
  padding: 0 0;
  color: #2eaaef;
  text-decoration-line: underline;
}

.AN-feature4-container .AN-feature4-img-sp {
  display: block;
  margin: 33px -13px;
  width: calc(100% + 26px);
  max-width: none;
}

.AN-start-container {
  position: relative;
  padding-top: 100px;
  padding-bottom: 34px;
  background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100%);
}

.AN-start-container .AN-start-linkArea {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100%);
}

.AN-start-container .AN-bg-start-logo-box {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.AN-start-container .AN-bg-start-logo {
  pointer-events: none;
  position: absolute;
  top: 40vw;
  left: -10vw;
  z-index: 0;
  width: 110%;
  display: flex;
  overflow: hidden;
  text-transform: uppercase;
  transform: skew(15deg, 345deg);
}

.AN-start-container .AN-bg-start-logo span {
  margin-right: 0.5em;
  color: #ffffff;
  font-size: 170px;
  font-weight: 300;
  line-height: 145%;
  opacity: 0.3;
  white-space: nowrap;
  font-family: "Red Hat Display";
}

.AN-start-container .AN-bg-start-logo span:nth-child(1) {
  animation: TextFlowingLoop 120s -60s linear infinite;
}

.AN-start-container .AN-bg-start-logo span:nth-child(2) {
  animation: TextFlowingLoop2 120s linear infinite;
}

.AN-start-container .AN-start-stack-left {
  text-align: center;
}

.AN-start-container .AN-start-stack-left .AN-start-text {
  position: relative;
}

.AN-start-container .AN-start-stack-left .AN-start-desc {
  margin-left: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 160%;
  text-align: center;
}

.AN-start-container .AN-start-stack-left .AN-start-title {
  position: relative;
  display: inline-block;
  margin-top: 12px;
  font-size: 36px;
  font-weight: 900;
  line-height: 140%;
  letter-spacing: -0.05em;
  color: #ffffff;
  z-index: 1;
}

.AN-start-container .AN-start-stack-left .AN-start-title .AN-start-arrow {
  position: relative;
  vertical-align: baseline;
  margin-left: 8px;
  width: 36px;
  height: auto;
}

.AN-start-container .AN-start-img {
  position: relative;
  display: block;
  margin: 40px auto 0;
  width: 180px;
  border: 4px solid #333333;
  border-radius: 10px;
  box-shadow: 28px 28px 84px -7px rgba(0, 0, 0, 0.25);
}

.footer-banners-item {
  z-index: 2;
}

.footer-container {
  z-index: auto;
}

@media screen and (min-width: 768px) {
  .header-pc-nav .link-icon-home {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    background: linear-gradient(135deg, #ff8d4e 0%, #ea2ce2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .header-pc-nav .link-icon-home::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100% !important;
    height: 1px;
    background: linear-gradient(135deg, #ff8d4e 0%, #ea2ce2 100%) !important;
    content: "";
  }
  .header-glonav-pc {
    border-right: none;
    background-color: #f5f5f5;
  }
  .header-glonav-pc-inner {
    background-color: inherit;
    border-bottom: none;
  }
  .header-logo-box .header-logo {
    width: 154px;
  }
  .AN-br-for-tab {
    display: block;
  }
  .AN-br-for-sp {
    display: none;
  }
  .AN-bg-infinite-logo {
    width: 90%;
    top: 427px;
  }
  .AN-bg-infinite-logo span {
    font-size: 211px;
  }
  .AN-fv-container {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    width: 688px;
    margin: 66px auto;
  }
  .AN-fv-container .AN-fv-stack-right {
    position: absolute;
  }
  .AN-fv-container .AN-fv-stack-right .AN-fv-img1 {
    position: relative;
    width: 320px;
    height: auto;
    left: 29px;
    top: 6px;
  }
  .AN-fv-container .AN-fv-stack-right .AN-fv-img2 {
    position: absolute;
    width: 332px;
    height: auto;
    top: 140px;
    left: 194px;
    z-index: -2;
    max-width: none;
  }
  .AN-fv-container .AN-fv-stack-left {
    display: block;
    width: 100%;
    padding: 0;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-noti {
    font-size: 14px;
    top: 14px;
    left: -18px;
    margin-top: -12px;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-noti::before,
  .AN-fv-container .AN-fv-stack-left .AN-fv-noti::after {
    top: 11px;
    height: 26px;
    width: 18px;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-noti::before {
    left: -2px;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-noti::after {
    left: 2px;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-title {
    font-size: 46px;
    margin-left: -5px;
    margin-top: 23px;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-desc {
    font-size: 12px;
    margin-top: 26px;
    width: 415px;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-btn {
    font-size: 12px;
    width: 234px;
    margin-top: 41px;
    padding: 14px 24px 19px;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-btn p .AN-fv-btn-lg {
    font-size: 14px;
  }
  .AN-feature1-container {
    display: flex;
    flex-direction: row-reverse;
    width: 688px;
    margin: 203px auto 0;
  }
  .AN-feature1-container .AN-feature1-stack-left {
    display: block;
    position: relative;
    width: 192px;
    margin: 0px;
    height: auto;
  }
  .AN-feature1-container .AN-feature1-stack-left .AN-feature1-img1,
  .AN-feature1-container .AN-feature1-stack-left .AN-feature1-img2,
  .AN-feature1-container .AN-feature1-stack-left .AN-feature1-img3 {
    position: absolute;
    width: 123px;
    height: 255px;
  }
  .AN-feature1-container .AN-feature1-stack-left .AN-feature1-img1 {
    top: 260px;
    left: 18px;
  }
  .AN-feature1-container .AN-feature1-stack-left .AN-feature1-img2 {
    top: 132px;
    left: -119px;
  }
  .AN-feature1-container .AN-feature1-stack-left .AN-feature1-img3 {
    top: -9px;
    left: 18px;
  }
  .AN-feature1-container .AN-feature1-stack-right {
    width: 496px;
  }
  .AN-feature1-container .AN-feature1-stack-right .AN-feature1-rotate-text {
    top: -178px;
    right: -122px;
    width: 370px;
  }
  .AN-feature1-container .AN-feature1-stack-right .AN-feature-feature {
    font-size: 14px;
    padding: 0;
    margin: 0;
  }
  .AN-feature1-container .AN-feature1-stack-right .AN-feature-title {
    font-size: 45px;
    padding: 0;
    margin-top: 13px;
    line-height: 130%;
  }
  .AN-feature1-container .AN-feature1-stack-right .AN-feature-desc {
    font-size: 14px;
    padding: 0;
    margin-top: 45px;
  }
  .AN-feature2-container {
    margin: 183px auto 0;
    width: 688px;
  }
  .AN-feature2-container .AN-feature-feature {
    font-size: 14px;
    margin-left: 0;
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
  }
  .AN-feature2-container .AN-feature-title {
    font-size: 45px;
    margin-left: -3px;
    margin-top: 16px;
    padding: 0;
    line-height: 140%;
    text-align: left;
  }
  .AN-feature2-container .AN-feature2-inner-container {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left {
    width: 100%;
    padding: 0;
    margin: 40px auto;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature-desc {
    font-size: 14px;
    padding: 0;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-title {
    padding: 24px 0 0 0;
    font-size: 16px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature-board-desc {
    padding: 10px 0 0 0;
    font-size: 10px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-graph-container .AN-feature2-graph-stack .AN-feature2-graph-stack-label {
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 6px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-graph-container .AN-feature2-graph-stack .AN-feature2-graph-stack-label .stack-lbl-str {
    font-size: 20px;
    margin-top: 2px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-graph-container .AN-feature2-graph-stack .AN-feature2-graph-stack-label-2 {
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 3px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-graph-container .AN-feature2-graph-stack .AN-feature2-graph-stack-label-2 .stack-lbl-str {
    font-size: 20px;
    margin-top: 2px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-graph-container .AN-feature2-graph-stack .AN-feature2-graph-img {
    padding: 10px 30px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-graph-container .AN-feature2-graph-divider {
    height: 80%;
    top: 30px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right {
    width: 330px;
    margin-top: 0;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature-desc {
    padding: 0;
    height: 151.2px;
    font-size: 14px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-board-title {
    padding: 24px 0 0 0;
    font-size: 16px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-img {
    width: 95px;
    margin-top: 5px;
    margin-left: 24px;
    margin-right: 0px;
    margin-bottom: -11px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label {
    font-size: 10px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label2 .pp-label-st1 {
    font-size: 15px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label2 .pp-label-reg {
    font-size: 10px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label2 .pp-arrow-right {
    width: 16px;
    height: auto;
    margin: 0 3px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label2 .AN-fv-title-gradient {
    font-size: 21.5px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label2 .pp-label-st2 {
    font-size: 10px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-img {
    width: 95px;
    margin-top: 5px;
    margin-left: 24px;
    margin-right: 0px;
    margin-bottom: -4px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock .AN-feature2-pp-seal-label {
    font-size: 10px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock .AN-feature2-pp-seal-label2 .pp-label-st1 {
    font-size: 15px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock .AN-feature2-pp-seal-label2 .pp-label-reg {
    font-size: 10px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock .AN-feature2-pp-seal-label2 .pp-arrow-right {
    width: 16px;
    height: auto;
    margin: 0 3px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock .AN-feature2-pp-seal-label2 .AN-fv-title-gradient {
    font-size: 21.5px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock .AN-feature2-pp-seal-label2 .pp-label-st2 {
    font-size: 10px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-btn {
    margin: 8px 23px 23px;
    height: auto;
    width: calc(100% - 46px);
    padding: 14px 0;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-btn p {
    font-size: 10px;
  }
  .AN-feature3-container {
    margin: 100px auto 0;
    width: 688px;
    position: relative;
  }
  .AN-feature3-container .AN-feature3-stack-left {
    position: relative;
    margin-top: 0;
    margin-bottom: -40px;
  }
  .AN-feature3-container .AN-feature3-stack-left .AN-bg-feature3-map {
    position: relative;
    top: -27px;
    width: 650px;
    left: -48px;
  }
  .AN-feature3-container .AN-feature3-stack-left .AN-feature3-logo-container {
    top: 154px;
    right: 0;
  }
  .AN-feature3-container .AN-feature3-stack-left .AN-feature3-logo-container .AN-feature3-logo-container-text {
    top: -7px;
    font-size: 10px;
  }
  .AN-feature3-container .AN-feature3-stack-left .AN-feature3-logo-container .AN-bg-feature3-seven {
    position: relative;
    left: 0;
    width: 300px;
  }
  .AN-feature3-container .AN-feature3-stack-right {
    margin: 0 auto 0;
    width: 100%;
  }
  .AN-feature3-container .AN-feature3-stack-right .AN-feature-feature {
    font-size: 14px;
    padding-left: 0;
    margin-left: 0;
  }
  .AN-feature3-container .AN-feature3-stack-right .AN-feature-title {
    font-size: 45px;
    padding: 0;
    margin-top: 21px;
    line-height: 135%;
  }
  .AN-feature3-container .AN-feature3-stack-right .AN-feature-title .AN-fv-title-gradient {
    font-size: 54px;
  }
  .AN-feature3-container .AN-feature3-stack-right .AN-feature-desc {
    font-size: 14px;
    padding: 0;
    margin-top: 47px;
  }
  .AN-feature3-container .AN-feature3-stack-right .AN-feature-desc .AN-feature-desc-note {
    margin-top: 10px;
  }
  .AN-feature4-container {
    position: relative;
    margin: 188px auto 70px;
    width: 688px;
    text-align: right;
  }
  .AN-feature4-container .AN-feature4-stack-left {
    width: auto;
  }
  .AN-feature4-container .AN-feature4-stack-left .AN-feature-feature {
    font-size: 14px;
    margin-left: 0;
  }
  .AN-feature4-container .AN-feature4-stack-left .AN-feature-feature .AN-feature4-rotate-text {
    top: -480px;
    left: -100px;
    height: 277px;
    width: 286px;
  }
  .AN-feature4-container .AN-feature4-stack-left .AN-feature-title {
    font-size: 45px;
    margin-left: -3px;
    padding-left: 0;
    margin-top: 17px;
    padding: 0;
  }
  .AN-feature4-container .AN-feature4-stack-left .AN-feature-desc {
    font-size: 14px;
    padding: 0;
    position: relative;
    margin-top: 48px;
  }
  .AN-feature4-container .AN-feature4-stack-left .AN-feature-desc .AN-feature-desc-inner {
    position: relative;
    margin-left: auto;
    z-index: 10;
    border-bottom-right-radius: 30px;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 0;
    margin-bottom: -100px;
  }
  .AN-feature4-container .AN-feature4-stack-left .AN-feature-desc .AN-feature-desc-inner p {
    margin-bottom: 1em;
  }
  .AN-feature4-container .AN-feature4-stack-left .AN-feature-desc-link {
    padding: 0;
    font-size: 14px;
  }
  .AN-feature4-container .AN-feature4-img-box {
    position: relative;
  }
  .AN-feature4-container .AN-feature4-img-box .AN-feature4-img {
    max-width: none;
    width: 688px;
    margin-left: 0;
    margin-bottom: -80px;
    left: -110px;
    position: relative;
    margin-top: -40px;
  }
  .AN-start-container {
    position: relative;
    margin-top: 169px;
    overflow: visible;
    height: 400px;
  }
  .AN-start-container .AN-start-container-box {
    margin: 0 auto;
    width: 688px;
    position: relative;
  }
  .AN-start-container .AN-start-stack-left {
    text-align: left;
  }
  .AN-start-container .AN-start-stack-left .AN-start-desc {
    font-size: 16px;
    font-weight: 900;
    line-height: 160%;
    padding-top: 20px;
    text-align: left;
  }
  .AN-start-container .AN-start-stack-left .AN-start-title {
    font-size: 45px;
    font-weight: 900;
    line-height: 135%;
    letter-spacing: -0.05em;
    margin-bottom: 100px;
    margin-left: -3px;
  }
  .AN-start-container .AN-start-stack-left .AN-start-title .AN-start-arrow {
    width: 58px;
    top: 2px;
  }
  .AN-start-container .AN-start-img {
    display: block;
    position: absolute;
    height: auto;
    width: 224px;
    border: 6px solid #333333;
    border-radius: 12px;
    top: -218px;
    right: 0;
  }
  .AN-start-container .AN-bg-start-logo {
    top: 13%;
    left: -20vw;
    z-index: 0;
    width: 110vw;
  }
  .AN-start-container .AN-bg-start-logo span {
    font-size: 211px;
  }
}

@media screen and (min-width: 1025px) {
  .AN-mod-main {
    margin-bottom: -100px;
    padding-bottom: 100px;
  }
  .AN-bg-infinite-logo {
    width: 120%;
    top: 497px;
  }
  .AN-bg-infinite-logo span {
    font-size: 282px;
  }
  .AN-fv-container {
    width: auto;
    max-width: 1200px;
    margin: auto;
    padding-top: 0;
  }
  .AN-fv-container .AN-fv-stack-right {
    display: none;
  }
  .AN-fv-container .AN-fv-stack-right.__pc {
    display: block;
    width: 100%;
  }
  .AN-fv-container .AN-fv-stack-right.__pc .AN-fv-img1-outer {
    position: relative;
  }
  .AN-fv-container .AN-fv-stack-right.__pc .AN-fv-img1-outer .AN-fv-img1 {
    left: 689px;
  }
  .AN-fv-container .AN-fv-stack-right.__pc .AN-fv-img2-outer {
    position: absolute;
    top: 0;
  }
  .AN-fv-container .AN-fv-stack-right.__pc .AN-fv-img2-outer .AN-fv-img2 {
    left: 999px;
  }
  .AN-fv-container .AN-fv-stack-right .AN-fv-img1 {
    top: 9px;
    left: 46px;
    width: 557px;
    height: auto;
  }
  .AN-fv-container .AN-fv-stack-right .AN-fv-img2 {
    top: 244px;
    left: 326px;
    width: 577px;
  }
  .AN-fv-container .AN-fv-stack-left {
    display: block;
    padding: 0;
    margin-top: 89px;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-noti {
    font-size: 18px;
    top: -2px;
    width: 300px;
    left: -24px;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-noti::before {
    width: 25px;
    height: 41px;
    top: 17px;
    left: -2px;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-noti::after {
    width: 25px;
    height: 41px;
    top: 17px;
    left: 2px;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-title {
    font-size: 80px;
    padding: 0;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-desc {
    font-size: 15px;
    padding: 0;
    margin-top: 34px;
    width: 645px;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-desc br {
    display: block;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-btn-outer {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 55px;
    top: -33px;
    left: -15px;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-btn {
    position: relative;
    top: 33px;
    left: 15px;
    font-size: 14px;
    margin-left: 0;
    width: 280px;
    border-radius: unset;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(to right, #ff8d4e 0%, #ea2ce2 100%);
    position: relative;
    overflow: hidden;
    padding: 2px;
    border-radius: 8px;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.26, 0.005, 0, 1.035);
    transition-property: box-shadow;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ff8d4e 0%, #ea2ce2 100%);
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.26, 0.005, 0, 1.035);
    z-index: 10;
    pointer-events: none;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-btn:hover {
    box-shadow: 14px 14px 29px -4px rgba(0, 0, 0, 0.15);
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-btn:hover p span {
    background: linear-gradient(135deg, #ff8d4e 0%, #ea2ce2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-btn:hover p::before {
    left: 0;
    opacity: 1;
    width: 100%;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-btn p {
    position: relative;
    padding: 15px 17px 19px;
    width: inherit;
    text-align: center;
    border-radius: inherit;
    overflow: hidden;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-btn p::before {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.26, 0.005, 0, 1.035);
    z-index: 20;
    left: auto;
    right: 0;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-btn p span {
    position: relative;
    z-index: 100;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.26, 0.005, 0, 1.035);
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-btn p .AN-fv-btn-lg {
    font-size: 18px;
  }
  .AN-feature1-container {
    position: relative;
    margin-top: 290px;
    display: flex;
    max-width: 1200px;
    width: auto;
  }
  .AN-feature1-container .AN-feature1-stack-left {
    position: absolute;
    left: auto;
    right: 787px;
    display: flex;
    justify-content: flex-end;
    height: 677px;
    width: 704px;
  }
  .AN-feature1-container .AN-feature1-stack-left .AN-feature1-img1 {
    position: absolute;
    height: 445px;
    width: 220px;
    border: 4px solid #333333;
    border-radius: 16px;
    top: -17px;
    left: 0;
    right: auto;
  }
  .AN-feature1-container .AN-feature1-stack-left .AN-feature1-img2 {
    position: absolute;
    height: 445px;
    width: 220px;
    border: 4px solid #333333;
    border-radius: 16px;
    overflow: revert-layer;
    top: 92px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .AN-feature1-container .AN-feature1-stack-left .AN-feature1-img3 {
    position: absolute;
    height: 445px;
    width: 220px;
    border: 4px solid #333333;
    border-radius: 16px;
    top: 205px;
    left: auto;
    right: 0;
  }
  .AN-feature1-container .AN-feature1-stack-right {
    width: 680px;
  }
  .AN-feature1-container .AN-feature1-stack-right .AN-feature1-rotate-text {
    z-index: -3;
    top: 122px;
    right: -332px;
    width: 669px;
  }
  .AN-feature1-container .AN-feature1-stack-right .AN-feature-feature {
    font-size: 18px;
    padding: 0;
    margin: 0;
    background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .AN-feature1-container .AN-feature1-stack-right .AN-feature-title {
    font-size: 60px;
    padding: 0;
  }
  .AN-feature1-container .AN-feature1-stack-right .AN-feature-desc {
    font-size: 18px;
    padding: 0;
    margin-top: 60px;
  }
  .AN-feature2-container {
    margin-top: 246px;
    width: auto;
    max-width: 1200px;
  }
  .AN-feature2-container .AN-feature-feature {
    font-size: 18px;
    padding: 0;
    text-align: center;
    margin: auto;
    background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .AN-feature2-container .AN-feature-title {
    text-align: center;
    font-size: 60px;
    padding: 0;
    margin-top: 14px;
  }
  .AN-feature2-container .AN-feature2-inner-container {
    display: flex;
    margin-top: 6px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature-desc {
    font-size: 18px;
    margin: 0 auto;
    text-align: center;
    max-width: 782px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board {
    height: 580px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-title {
    padding: 41px 0 0 0;
    font-size: 29px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature-board-desc {
    padding: 18px 0 0 0;
    font-size: 16px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-graph-container .AN-feature2-graph-stack .AN-feature2-graph-stack-label {
    margin-top: 40px;
    font-size: 20px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-graph-container .AN-feature2-graph-stack .AN-feature2-graph-stack-label .stack-lbl-str {
    font-size: 28px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-graph-container .AN-feature2-graph-stack .AN-feature2-graph-stack-label-2 {
    margin-top: 40px;
    font-size: 20px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-graph-container .AN-feature2-graph-stack .AN-feature2-graph-stack-label-2 .stack-lbl-str {
    font-size: 28px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-graph-container .AN-feature2-graph-stack .AN-feature2-graph-img {
    padding: 21px 100px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-left .AN-feature2-board .AN-feature2-board-graph-container .AN-feature2-graph-divider {
    height: 450px;
    top: 50px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right {
    width: 563px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature-desc {
    font-size: 18px;
    padding-right: 0;
    height: 7.2em;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board {
    max-width: none;
    height: 600px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-board-title {
    padding: 41px 0 0 0;
    font-size: 29px;
  }
}

@media screen and (min-width: 1025px) and (min-width: 1300px) {
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal {
    gap: 0;
  }
}

@media screen and (min-width: 1025px) {
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-img {
    height: 210px;
    width: auto;
    margin-top: 6px;
    margin-left: 34px;
    margin-bottom: -22px;
    margin-right: -4px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock {
    padding-top: 36px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label {
    font-size: 18px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label2 .pp-label-st1 {
    font-size: 25px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label2 .pp-label-reg {
    font-size: 16px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label2 .AN-fv-title-gradient {
    font-size: 38px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-normal .AN-feature2-pp-normal-labelblock .AN-feature2-pp-normal-label2 .pp-label-st2 {
    font-size: 18px;
  }
}

@media screen and (min-width: 1025px) and (min-width: 1300px) {
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal {
    gap: 0;
  }
}

@media screen and (min-width: 1025px) {
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-img {
    height: 185px;
    width: auto;
    margin-top: 10px;
    margin-left: 34px;
    margin-right: -4px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock {
    padding-top: 36px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock .AN-feature2-pp-seal-label {
    font-size: 18px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock .AN-feature2-pp-seal-label2 .pp-label-st1 {
    font-size: 25px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock .AN-feature2-pp-seal-label2 .pp-label-reg {
    font-size: 16px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock .AN-feature2-pp-seal-label2 .AN-fv-title-gradient {
    font-size: 38px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-seal .AN-feature2-pp-seal-labelblock .AN-feature2-pp-seal-label2 .pp-label-st2 {
    font-size: 18px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-btn {
    margin: 15px auto 15px auto;
    height: 73px;
    width: 37vw;
    max-width: 490px;
  }
  .AN-feature2-container .AN-feature2-inner-container .AN-feature2-stack-right .AN-feature2-board .AN-feature2-pp-btn p {
    font-size: min(17px, 1.18vw);
  }
  .AN-feature3-container {
    width: auto;
    max-width: 1200px;
    margin-top: 150px;
  }
  .AN-feature3-container .AN-feature3-stack-left {
    position: relative;
    left: 0;
    margin-bottom: -230px;
  }
  .AN-feature3-container .AN-feature3-stack-left .AN-bg-feature3-map {
    width: 1120px;
    top: -230px;
    max-width: unset;
    left: 0;
    display: none;
  }
  .AN-feature3-container .AN-feature3-stack-left .AN-bg-feature3-map.__pc {
    display: inline;
  }
  .AN-feature3-container .AN-feature3-stack-left .AN-feature3-logo-container {
    top: 62px;
    width: 348px;
    max-width: none;
    margin-left: 0;
  }
  .AN-feature3-container .AN-feature3-stack-left .AN-feature3-logo-container .AN-feature3-logo-container-text {
    font-size: 12px;
    text-align: left;
    margin-left: 23px;
  }
  .AN-feature3-container .AN-feature3-stack-left .AN-feature3-logo-container .AN-bg-feature3-lawson {
    width: 200px;
  }
  .AN-feature3-container .AN-feature3-stack-left .AN-feature3-logo-container .AN-bg-feature3-mini {
    width: 80px;
  }
  .AN-feature3-container .AN-feature3-stack-left .AN-feature3-logo-container .AN-bg-feature3-seven {
    width: 424px;
  }
  .AN-feature3-container .AN-feature3-stack-left .AN-feature3-logo-container .AN-bg-feature3-fm {
    width: 15.34vw;
    max-width: 340px;
  }
  .AN-feature3-container .AN-feature3-stack-right {
    width: auto;
  }
  .AN-feature3-container .AN-feature3-stack-right .AN-feature-feature {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 18px;
    padding: 0;
    margin: 0;
    background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .AN-feature3-container .AN-feature3-stack-right .AN-feature-title {
    font-size: 60px;
    padding: 0;
    margin-top: 16px;
  }
  .AN-feature3-container .AN-feature3-stack-right .AN-feature-title .AN-fv-title-gradient {
    font-size: 74px;
    position: relative;
    top: 4px;
    left: 2px;
  }
  .AN-feature3-container .AN-feature3-stack-right .AN-feature-desc {
    width: 700px;
    font-size: 18px;
    padding: 0;
    margin-top: 64px;
  }
  .AN-feature3-container .AN-feature3-stack-right .AN-feature-desc span {
    color: #222222;
    font-size: 13px;
    font-weight: 400;
    line-height: 180%;
  }
  .AN-feature3-container .AN-feature3-stack-right .AN-feature-desc .AN-feature-desc-note {
    gap: 12px;
    display: block;
    line-height: 1.7;
    margin-top: 25px;
  }
  .AN-feature4-container {
    width: auto;
    max-width: 1200px;
    margin-top: 246px;
    margin-bottom: 350px;
    text-align: left;
  }
  .AN-feature4-container .AN-feature4-img-box {
    position: absolute;
    width: 945px;
    height: 696px;
    left: -360px;
    top: -160px;
  }
  .AN-feature4-container .AN-feature4-img-box .AN-feature4-img {
    width: 100%;
    left: auto;
    margin: auto;
  }
  .AN-feature4-container .AN-feature4-stack-left {
    width: 640px;
    margin-left: auto;
  }
  .AN-feature4-container .AN-feature4-stack-left .AN-feature-feature {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 18px;
    padding: 0;
    margin: 0;
    background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .AN-feature4-container .AN-feature4-stack-left .AN-feature-feature .AN-feature4-rotate-text {
    top: -1310px;
    left: -795px;
    height: 473px;
    width: 488px;
  }
  .AN-feature4-container .AN-feature4-stack-left .AN-feature-title {
    font-size: 60px;
    padding: 0;
    margin-top: 9px;
    margin-left: -4px;
  }
  .AN-feature4-container .AN-feature4-stack-left .AN-feature-desc {
    font-size: 18px;
    padding: 0;
    margin-top: 54px;
  }
  .AN-feature4-container .AN-feature4-stack-left .AN-feature-desc .AN-feature-desc-inner {
    width: auto;
    margin-bottom: 0;
  }
  .AN-feature4-container .AN-feature4-stack-left .AN-feature-desc .AN-feature-desc-link {
    font-size: 18px;
    padding: 0;
  }
  .AN-feature4-container .AN-feature4-stack-left .AN-feature-desc .AN-feature-desc-link:hover {
    text-decoration: none;
  }
  .AN-start-container {
    margin-top: 0;
    height: 530px;
    background-color: #fff;
  }
  .AN-start-container .AN-start-linkArea {
    position: absolute;
    transition-duration: 1.855s;
    transition-timing-function: cubic-bezier(0.26, 0.005, 0, 1.035);
  }
  .AN-start-container .AN-start-linkArea::before {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    transition-duration: 0.425s;
    transition-timing-function: cubic-bezier(0.26, 0.005, 0, 1.035);
    z-index: 10;
    left: auto;
    right: 0;
    left: 0;
    width: 100%;
    opacity: 0;
  }
  .AN-start-container .AN-start-linkArea:hover::before {
    left: 0;
    width: 100%;
    opacity: 1;
  }
  .AN-start-container .AN-start-linkArea:hover .AN-start-arrow {
    transform: translate(10px, 0);
  }
  .AN-start-container .AN-start-linkArea:hover .AN-start-arrow path {
    stroke: #ea2ce2 !important;
  }
  .AN-start-container .AN-start-linkArea:hover .AN-start-text {
    background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .AN-start-container .AN-start-linkArea:hover .AN-start-text .AN-start-title {
    background: linear-gradient(95deg, #ff8d4e 0%, #ea2ce2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .AN-start-container .AN-start-linkArea:hover .AN-bg-start-logo span {
    color: #e6e0eb;
  }
  .AN-start-container .AN-start-container-box {
    width: 1200px;
    margin: auto;
    padding-top: 100px;
    position: relative;
    z-index: 20;
  }
  .AN-start-container .AN-start-stack-left {
    padding-left: 116px;
  }
  .AN-start-container .AN-start-stack-left .AN-start-desc {
    font-size: 16px;
    padding-top: 64px;
    margin-top: 0;
    transition-duration: 0.425s;
    transition-timing-function: cubic-bezier(0.26, 0.005, 0, 1.035);
  }
  .AN-start-container .AN-start-stack-left .AN-start-title {
    font-size: 60px;
    margin-bottom: 0;
    margin-left: -4px;
    transition-duration: 0.425s;
    transition-timing-function: cubic-bezier(0.26, 0.005, 0, 1.035);
  }
  .AN-start-container .AN-start-stack-left .AN-start-title .AN-start-arrow {
    width: 73px;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.26, 0.005, 0, 1.035);
  }
  .AN-start-container .AN-start-stack-left .AN-start-title .AN-start-arrow path {
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.26, 0.005, 0, 1.035);
  }
  .AN-start-container .AN-start-arrow-box {
    position: relative;
  }
  .AN-start-container .AN-start-img-outer {
    position: absolute;
    height: 600px;
    width: 300px;
    bottom: auto;
    right: 116px;
    left: auto;
    top: -150px;
  }
  .AN-start-container .AN-start-img {
    height: 600px;
    width: 300px;
    border: 6px solid #333333;
    border-radius: 14px;
    bottom: auto;
    right: auto;
    left: auto;
    top: auto;
  }
  .AN-start-container .AN-bg-start-logo-box {
    position: absolute;
    z-index: 20;
  }
  .AN-start-container .AN-bg-start-logo-box .AN-bg-start-logo {
    top: 4vw;
    left: -10vw;
  }
  .AN-start-container .AN-bg-start-logo-box .AN-bg-start-logo span {
    font-size: 282px;
    transition-duration: 0.425s;
    transition-timing-function: cubic-bezier(0.26, 0.005, 0, 1.035);
  }
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .header-pc-nav {
    width: 100%;
    padding: 0 40px;
  }
  .footer-container .footer-inner {
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
  }
  .AN-fv-container {
    margin-right: 40px;
    margin-left: 40px;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-noti {
    font-size: 1.45vw;
  }
  .AN-fv-container .AN-fv-stack-right {
    position: absolute;
    left: 0;
  }
  .AN-fv-container .AN-fv-stack-right.__pc .AN-fv-img1-outer .AN-fv-img1 {
    width: 40.8vw;
    left: 50vw;
  }
  .AN-fv-container .AN-fv-stack-right.__pc .AN-fv-img2-outer .AN-fv-img2 {
    width: 42.2vw;
    left: 70.8vw;
    top: 19vw;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-title {
    font-size: 5.74vw;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-desc {
    width: 55%;
    font-size: 15px;
  }
  .AN-fv-container .AN-fv-stack-left .AN-fv-desc br {
    display: none;
  }
  .AN-feature1-container {
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
  }
  .AN-feature1-container .AN-feature1-stack-right {
    width: 600px;
  }
  .AN-feature1-container .AN-feature1-stack-right .AN-feature-title {
    font-size: 52px;
  }
  .AN-feature1-container .AN-feature1-stack-left {
    right: 727px;
  }
  .AN-feature2-container {
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
  }
  .AN-feature2-container .AN-feature-title {
    font-size: 52px;
  }
  .AN-feature2-container .AN-feature2-board {
    height: 43vw !important;
  }
  .AN-feature2-container .AN-feature2-board .AN-feature2-graph-divider {
    height: 35vw !important;
  }
  .AN-feature3-container {
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
  }
  .AN-feature3-container .AN-feature3-stack-right .AN-feature-title {
    font-size: 52px;
  }
  .AN-feature3-container .AN-feature3-stack-right .AN-feature-title .AN-fv-title-gradient {
    font-size: 64px !important;
  }
  .AN-feature3-container .AN-feature3-stack-left .AN-bg-feature3-map {
    left: -312px;
  }
  .AN-feature3-container .AN-feature3-stack-left {
    left: 40px;
  }
  .AN-feature4-container {
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
    margin-bottom: 450px;
  }
  .AN-feature4-container .AN-feature4-img-box {
    top: 50px;
  }
  .AN-start-container .AN-start-container-box {
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
  }
  .AN-start-container .AN-start-container-box .AN-start-stack-left {
    padding-left: 0;
  }
}

.AN-fv-img1,
.AN-fv-img2 {
  animation-name: AN-fv-img-anime1;
  animation-duration: 0.865s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
  opacity: 0;
}

.AN-fv-img1 {
  animation-delay: 0.52s;
}

.AN-fv-img2 {
  animation-delay: 0.72s;
}

@keyframes AN-fv-img-anime1 {
  from {
    transform: translate(0, 10%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.AN-fv-title-animetion {
  animation-name: kv_animation;
  animation-duration: 0.865s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-delay: 0.12s;
  opacity: 0;
}

.AN-fv-desc {
  animation-delay: 0.45s;
}

@keyframes kv_animation {
  from {
    transform: translate(0, 30%);
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.AN-fv-title-animetion2 {
  animation-name: kv_animation2;
  animation-duration: 0.365s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-delay: 0.75s;
  opacity: 0;
}

@keyframes kv_animation2 {
  from {
    -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
    transform: translate(0, 30%) scale(0.99) skew(0) rotate(-7deg);
  }
  70% {
    -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
            clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
    transform: translate(0, -3%) scale(1.015) skew(0) rotate(-7deg);
  }
  85% {
    -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
            clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
    transform: translate(0, 3%) scale(1) skew(0) rotate(-7deg);
  }
  95% {
    -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
            clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
    transform: translate(0, 1%) scale(1) skew(0) rotate(-7deg);
  }
  100% {
    -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
            clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
    transform: translate(0, 0) scale(1) skew(0) rotate(-7deg);
    opacity: 1;
  }
}

.AN-fv-title-animetion3 {
  animation-name: kv_animation3;
  animation-duration: 0.65s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-delay: 0.5s;
  opacity: 0;
}

@keyframes kv_animation3 {
  100% {
    opacity: 1;
  }
}

.AN-fv-title-line1,
.AN-fv-title-line2 {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .AN-fv-title-line1,
  .AN-fv-title-line2 {
    width: -moz-fit-content;
    width: fit-content;
  }
}

@keyframes AN-fv-title-line {
  from {
    transform: translate(0, 150%) scale(1);
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

.AN-fv-title-line1-inner,
.AN-fv-title-line2-inner {
  display: flex;
}

.AN-fv-title-animetion-text {
  display: inline-block;
  animation-name: AN-fv-title-line;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.AN-fv-title-animetion-text.__01 {
  animation-delay: 0.2s;
  color: #ff8d4e;
  letter-spacing: -0.15em;
}

.AN-fv-title-animetion-text.__02 {
  animation-delay: 0.24s;
  color: #fd8068;
  letter-spacing: -0.15em;
}

.AN-fv-title-animetion-text.__03 {
  animation-delay: 0.28s;
  color: #fa7578;
  letter-spacing: -0.15em;
}

.AN-fv-title-animetion-text.__04 {
  animation-delay: 0.32s;
  letter-spacing: -0.15em;
  color: #f77a9a;
}

.AN-fv-title-animetion-text.__05 {
  animation-delay: 0.36s;
  letter-spacing: -0.2em;
  color: #f56190;
}

.AN-fv-title-animetion-text.__06 {
  animation-delay: 0.4s;
  letter-spacing: -0.25em;
  color: #f357a1;
}

.AN-fv-title-animetion-text.__07 {
  animation-delay: 0.44s;
  letter-spacing: -0.15em;
  color: #f04bb3;
}

.AN-fv-title-animetion-text.__08 {
  animation-delay: 0.48s;
  letter-spacing: -0.05em;
  color: #ea2ce2;
}

.AN-fv-title-animetion-text.__09 {
  animation-delay: 0.52s;
}

.AN-fv-title-animetion-text.__10 {
  animation-delay: 0.56s;
}

.AN-fv-title-animetion-text.__11 {
  animation-delay: 0.3s;
  letter-spacing: -0.15em;
}

.AN-fv-title-animetion-text.__12 {
  animation-delay: 0.34s;
  letter-spacing: -0.1em;
}

.AN-fv-title-animetion-text.__13 {
  animation-delay: 0.38s;
  letter-spacing: -0.15em;
}

.AN-fv-title-animetion-text.__14 {
  animation-delay: 0.42s;
  letter-spacing: -0.05em;
}

.AN-fv-title-animetion-text.__15 {
  animation-delay: 0.46s;
}

.AN-fv-title-animetion-text.__16 {
  animation-delay: 0.5s;
  color: #fd8068;
}

.AN-fv-title-animetion-text.__17 {
  animation-delay: 0.54s;
  color: #f77a9a;
}

.AN-fv-title-animetion-text.__18 {
  animation-delay: 0.58s;
  color: #f55ea1;
  letter-spacing: -0.1em;
}

.AN-fv-title-animetion-text.__19 {
  animation-delay: 0.62s;
  color: #ee44c3;
}

.AN-fv-title-animetion-text.__20 {
  animation-delay: 0.66s;
  color: #ea2ce2;
}