@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,700;1,700&display=swap");
body[data-lang=en] {
  --lang-font-family: "Proxima Nova", Arial;
}

:root {
  --page-gutter: 16rem;
  --phase: 0;
  --lang-font-family: "YuGothic", "Poppins", "monospace", Helvetica, Arial, sans-serif;
  --titleFont: "AP-OTF-A1GothicStdN-Regular", "Proxima Nova";
  --boldness: 700;
  --lightness: 400;
  --lang-letter-spacing: 2px;
  --recruit-letter-spacing: 2px;
  --detail-button-letter-spacing: 1.2px;
}
@media only screen and (max-width: 1280px) {
  :root {
    --page-gutter: 6rem;
  }
}
@media only screen and (max-width: 740px) {
  :root {
    --page-gutter: 4rem;
  }
}
@media only screen and (max-width: 480px) {
  :root {
    --page-gutter: 2rem;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
  margin: 0;
  padding: 0;
}

html {
  font-family: "YuGothic", "Proxima Nova", "Poppins", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
html body {
  font-size: 1.6rem;
  overflow-x: hidden;
  width: 100vw;
}

.disabled {
  pointer-events: none;
}

input {
  outline: none;
}

a, a:link, a:visited {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

@media only screen and (max-width: 1000px) {
  [data-device][data-device=pc] {
    display: none !important;
  }
}
[data-device][data-device=mobile] {
  display: none;
}
@media only screen and (max-width: 1000px) {
  [data-device][data-device=mobile] {
    display: block;
  }
}

.logo {
  display: block;
  width: 11rem;
  height: 4.3rem;
  background: url(/images/evolany-logo-svg.svg) center/contain no-repeat;
  transform: translateY(-4%);
}

.hide {
  opacity: 0;
}

.inactive {
  display: none;
}

.detail-link {
  display: flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: var(--recruit-letter-spacing);
  font-weight: 700;
}
.detail-link::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.detail-link-mobile {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
}
.detail-link-mobile::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.link-mobile {
  display: flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: var(--lang-letter-spacing);
  font-weight: 700;
}
.link-mobile::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.detail-button {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  font-weight: --boldness;
  width: 26rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
.detail-button::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}

.contact_evolany {
  cursor: pointer;
}

.chatbot-mask {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  z-index: 10;
}
.chatbot-mask #simulator {
  position: absolute;
  z-index: 100;
  border: 0px;
  border-radius: 8px;
  inset: auto 16px 16px auto;
  width: 375px;
  height: 600px;
  right: 2rem;
  bottom: 2rem;
}
@media only screen and (max-width: 740px) {
  .chatbot-mask #simulator {
    position: unset;
    height: 100vh;
    width: 100vw;
    display: flex;
  }
}
.chatbot-mask .close-x {
  display: none;
  z-index: 100;
}
@media only screen and (max-width: 740px) {
  .chatbot-mask .close-x {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: white;
    width: 3.6rem;
    height: 3.6rem;
    top: 1rem;
    right: 4px;
    background: #FF5600;
  }
  .chatbot-mask .close-x::before, .chatbot-mask .close-x::after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 2.4rem;
    width: 2px;
    transition: width ease 0.3s;
    background-color: rgb(255, 255, 255);
  }
  .chatbot-mask .close-x::before {
    transform: rotate(45deg);
  }
  .chatbot-mask .close-x::after {
    transform: rotate(-45deg);
  }
}

.icon-fb, .icon-linkedin {
  width: 3.2rem;
  height: 3.2rem;
}

body[data-lang=en] {
  --lang-font-family: "Proxima Nova", Arial;
}

:root {
  --page-gutter: 16rem;
  --phase: 0;
  --lang-font-family: "YuGothic", "Poppins", "monospace", Helvetica, Arial, sans-serif;
  --titleFont: "AP-OTF-A1GothicStdN-Regular", "Proxima Nova";
  --boldness: 700;
  --lightness: 400;
  --lang-letter-spacing: 2px;
  --recruit-letter-spacing: 2px;
  --detail-button-letter-spacing: 1.2px;
}
@media only screen and (max-width: 1280px) {
  :root {
    --page-gutter: 6rem;
  }
}
@media only screen and (max-width: 740px) {
  :root {
    --page-gutter: 4rem;
  }
}
@media only screen and (max-width: 480px) {
  :root {
    --page-gutter: 2rem;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
  margin: 0;
  padding: 0;
}

html {
  font-family: "YuGothic", "Proxima Nova", "Poppins", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
html body {
  font-size: 1.6rem;
  overflow-x: hidden;
  width: 100vw;
}

.disabled {
  pointer-events: none;
}

input {
  outline: none;
}

a, a:link, a:visited {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

@media only screen and (max-width: 1000px) {
  [data-device][data-device=pc] {
    display: none !important;
  }
}
[data-device][data-device=mobile] {
  display: none;
}
@media only screen and (max-width: 1000px) {
  [data-device][data-device=mobile] {
    display: block;
  }
}

.logo {
  display: block;
  width: 11rem;
  height: 4.3rem;
  background: url(/images/evolany-logo-svg.svg) center/contain no-repeat;
  transform: translateY(-4%);
}

.hide {
  opacity: 0;
}

.inactive {
  display: none;
}

.detail-link {
  display: flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: var(--recruit-letter-spacing);
  font-weight: 700;
}
.detail-link::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.detail-link-mobile {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
}
.detail-link-mobile::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.link-mobile {
  display: flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: var(--lang-letter-spacing);
  font-weight: 700;
}
.link-mobile::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.detail-button {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  font-weight: --boldness;
  width: 26rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
.detail-button::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}

.contact_evolany {
  cursor: pointer;
}

.chatbot-mask {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  z-index: 10;
}
.chatbot-mask #simulator {
  position: absolute;
  z-index: 100;
  border: 0px;
  border-radius: 8px;
  inset: auto 16px 16px auto;
  width: 375px;
  height: 600px;
  right: 2rem;
  bottom: 2rem;
}
@media only screen and (max-width: 740px) {
  .chatbot-mask #simulator {
    position: unset;
    height: 100vh;
    width: 100vw;
    display: flex;
  }
}
.chatbot-mask .close-x {
  display: none;
  z-index: 100;
}
@media only screen and (max-width: 740px) {
  .chatbot-mask .close-x {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: white;
    width: 3.6rem;
    height: 3.6rem;
    top: 1rem;
    right: 4px;
    background: #FF5600;
  }
  .chatbot-mask .close-x::before, .chatbot-mask .close-x::after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 2.4rem;
    width: 2px;
    transition: width ease 0.3s;
    background-color: rgb(255, 255, 255);
  }
  .chatbot-mask .close-x::before {
    transform: rotate(45deg);
  }
  .chatbot-mask .close-x::after {
    transform: rotate(-45deg);
  }
}

.icon-fb, .icon-linkedin {
  width: 3.2rem;
  height: 3.2rem;
}

footer.contact {
  padding-left: 16rem;
  padding-right: 16rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #202438;
  color: white;
  display: grid;
  grid-template-areas: "logo navs snss" "copy copy copy";
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  justify-items: center;
  position: relative;
  font-family: "Poppins", sans-serif;
}
@media only screen and (max-width: 1000px) {
  footer.contact {
    padding: 2.5rem;
  }
}
footer.contact .fb-logo {
  width: 32px;
  height: 32px;
}
footer.contact .linkedin-logo {
  width: 32px;
  height: 32px;
}
footer.contact .logo {
  width: 14rem;
  height: 8rem;
  grid-area: logo;
  justify-self: flex-start;
}
@media only screen and (max-width: 1000px) {
  footer.contact .logo {
    margin: unset;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .logo {
    width: 8.7rem;
    height: 3.8rem;
  }
}
footer.contact .footer-links {
  justify-content: center;
  text-transform: capitalize;
  grid-area: navs;
  white-space: nowrap;
  display: flex;
  margin: 0 2rem 0 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links {
    flex-direction: column;
    margin: unset;
  }
}
footer.contact .footer-links > *:not(:first-child) {
  margin-left: 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links > *:not(:first-child) {
    margin-left: 0;
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links > *:first-child {
    margin-left: unset;
  }
}
@media only screen and (max-width: 740px) {
  footer.contact .footer-links > * {
    line-height: 1rem;
    margin-right: auto;
    font-size: 1.2rem;
    flex-direction: column;
  }
}
footer.contact .footer-sns-links {
  grid-area: snss;
  justify-self: flex-end;
  white-space: nowrap;
}
footer.contact .footer-sns-links [class|=icon] {
  font-size: 2.8rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links [class|=icon] {
    font-size: 2rem;
  }
}
footer.contact .footer-sns-links > * {
  vertical-align: middle;
}
footer.contact .footer-sns-links > *:not(:first-child) {
  margin-left: 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links > *:not(:first-child) {
    margin-left: 1.2rem;
  }
}
footer.contact .copyrights {
  grid-area: copy;
  text-align: center;
  font-size: 0.8em;
  opacity: 0.6;
  text-align: center;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 740px) {
  footer.contact .copyrights {
    font-size: 0.5em;
    margin-top: 1rem;
  }
}
footer.contact #privacy-logo {
  width: 8rem;
  margin-bottom: 2rem;
  filter: saturate(0) brightness(100);
}
@media only screen and (max-width: 1000px) {
  footer.contact #privacy-logo {
    width: 6rem;
    margin-bottom: unset;
  }
}
footer.contact .go-top {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF5600;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
}
footer.contact a.footbutton {
  position: relative;
}
footer.contact a.footbutton::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #FF5600;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
footer.contact a.footbutton:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
@media only screen and (max-width: 1000px) {
  footer.contact {
    grid-template-areas: "navs snss" "logo copy";
    grid-template-columns: max-content 1fr;
  }
  footer.contact .logo,
footer.contact .footer-links {
    justify-self: flex-start;
    margin-bottom: 1rem;
  }
  footer.contact .copyrights {
    transform: translateY(0.8em);
  }
  footer.contact .footer-sns-links,
footer.contact .copyrights {
    justify-self: flex-end;
  }
  footer.contact .footer-sns-links {
    align-self: flex-end;
    transform: translateY(4rem);
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1000px) {
  footer.contact .footer-sns-links {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links [class|=icon] {
    display: inline-block;
    transform: translateY(-1rem);
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links > * {
    vertical-align: bottom;
  }
}

header.nav {
  position: fixed;
  z-index: 7;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 4rem 2.4rem 4rem;
  color: white;
  letter-spacing: 2px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 740px) {
  header.nav {
    flex-shrink: 0;
    height: 7rem;
    padding: 1rem 2rem 1rem 2rem;
  }
}
header.nav .logo {
  flex-shrink: 0;
  width: 13.7rem;
  height: 6.1rem;
  z-index: -10;
}
@media only screen and (max-width: 740px) {
  header.nav .logo {
    width: 12rem;
    height: 6rem;
  }
}
header.nav .logo::after {
  content: "we're hiring!";
  color: #FF5600;
  position: absolute;
  font-family: "ProximaNova-Bold";
  left: 14rem;
  top: 2rem;
  width: fit-content;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.1px;
  pointer-events: none;
}
@media only screen and (max-width: 740px) {
  header.nav .logo::after {
    left: 12.5rem;
    top: 2rem;
  }
}
header.nav a.navbutton::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scale(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ff5600;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
header.nav a.navbutton:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header.nav.inverted {
  color: #2c3045;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px);
}
header.nav.inverted .logo {
  background-image: url(/images/evolany-logo-inverted.svg);
}
header.nav.sticky {
  position: sticky;
  top: 0;
}
header.nav nav {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
header.nav nav a {
  color: inherit;
  white-space: nowrap;
  position: relative;
  line-height: initial;
  height: initial;
}
header.nav nav a.on::before {
  content: "";
  display: block;
  height: 2px;
  background-color: #FF5600;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}
header.nav nav > a:not(:first-child) {
  margin-left: 4rem;
}
header.nav nav [class|=icon] {
  color: #FF5600;
  font-size: 2rem;
}
header.nav nav .i18n {
  display: flex;
  align-items: center;
  margin-left: 6rem;
}
header.nav nav .i18n a:not(:first-child) {
  margin-left: 2rem;
}
header.nav .hamburger-menus {
  color: #FF5600;
}
header.nav .hamburger-menus a {
  font-size: 3rem;
}

[data-lang=jp] .sidemenu .side-menu-lang [data-lang=jp] {
  position: relative;
}
[data-lang=jp] .sidemenu .side-menu-lang [data-lang=jp]::before {
  content: "";
  display: block;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}

[data-lang=en] .sidemenu .side-menu-lang [data-lang=en] {
  position: relative;
}
[data-lang=en] .sidemenu .side-menu-lang [data-lang=en]::before {
  content: "";
  display: block;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}

.sidemenu {
  position: fixed;
  background-color: #FF5600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 8;
  overflow: hidden;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  transition: 0.1s;
  top: 0;
  left: 0;
}
.sidemenu .side-menu-lang {
  display: flex;
  align-items: center;
  margin-left: 3rem;
  color: white;
  text-transform: uppercase;
  position: fixed;
  font-size: 2rem;
  font-weight: bold;
  top: 2rem;
  left: 2px;
  letter-spacing: 2px;
}
.sidemenu .side-menu-lang a:not(:first-child) {
  margin-left: 2rem;
}
.sidemenu .full-nav-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin-left: 3rem;
  margin-bottom: 6.5rem;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-items {
    padding-top: 14rem;
  }
}
.sidemenu .full-nav-items .item {
  color: white;
  letter-spacing: 2px;
  line-height: 6rem;
  font-size: 2.2rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  font-weight: bold;
  text-transform: uppercase;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-items .item {
    font-weight: 500;
    line-height: 5rem;
  }
}
.sidemenu .full-nav-sns-links {
  display: flex;
  width: 100%;
  color: white;
  font-size: 3rem;
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-sns-links {
    padding-bottom: 5rem;
    font-size: 2.5rem;
  }
}
.sidemenu .full-nav-sns-links > a {
  margin-left: 2.4rem;
  color: white;
}
.sidemenu .full-nav-sns-links > a:not(:last-child) {
  margin-left: 3rem;
}

.side-menu-on .sidemenu {
  transform: translateX(0);
}

.hamburger {
  position: fixed;
  display: block;
  width: 2.7rem;
  height: 2.7rem;
  cursor: pointer;
  z-index: 10;
  right: 2rem;
  top: 2rem;
}
.hamburger .bar, .hamburger::before, .hamburger::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ff5600;
  transition: transform 0.3s;
  z-index: 10;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
}
.hamburger::before {
  transform: translateY(-9px);
}
.hamburger::after {
  transform: translateY(9px);
}

.side-menu-on .hamburger .bar {
  opacity: 0;
}
.side-menu-on .hamburger::before {
  transform: rotate(-45deg);
  background-color: white;
}
.side-menu-on .hamburger::after {
  transform: rotate(45deg);
  background-color: white;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.anchor {
  height: 1rem;
}

.safari .page-landing .banner::after {
  height: 100%;
  background-attachment: initial;
  transform: translateY(calc(20% * var(--phase)));
}

#evolanyVideo {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  z-index: 0;
  filter: brightness(0.6);
}

.page-landing {
  margin-bottom: 16rem;
  color: #2c3045;
}
@media only screen and (max-width: 740px) {
  .page-landing [data-aos=flip-left].aos-animate {
    transform: none;
  }
}
@media only screen and (max-width: 740px) {
  .page-landing {
    margin-bottom: 8rem;
  }
}
.page-landing .typing {
  white-space: pre-wrap;
}
.page-landing .typing:not(.on),
.page-landing .typing:not(.on) * {
  color: transparent !important;
}
.page-landing .typing.on .character {
  position: absolute;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.02, 0.83, 0.63, 1.3);
  display: inline-block;
  transform: translateY(50%);
}
.page-landing .typing.on .character.on {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}
.page-landing .typing.on br.character {
  display: none;
}
.page-landing .typing.on br.character.on {
  display: initial;
}
.page-landing .typing.on::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 5rem;
  background-color: #FF5600;
  animation: blink 0.5s both infinite;
}
.page-landing .banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.page-landing .banner video::-webkit-media-controls-start-playback-button {
  display: none !important;
}
.page-landing .banner video::-webkit-media-controls {
  display: none !important;
}
.page-landing .banner .scrollbar {
  position: absolute;
}
@media only screen and (max-width: 1000px) {
  .page-landing .banner .scrollbar {
    display: none;
  }
}
.page-landing .banner .scrollbar .copyright-text {
  color: white;
  font-size: 1.1rem;
  font-family: "Roboto", sans-serif;
  z-index: 4;
  letter-spacing: 1px;
  bottom: 50%;
  display: inline-block;
  transform: rotate(90deg);
  position: fixed;
  right: -6.6rem;
  transition: 0.5s ease-in;
}
.page-landing .banner .scrollbar .scrolltext {
  color: white;
  text-transform: uppercase;
  font-family: "Poppins";
  font-size: 1.1rem;
  z-index: 4;
  right: 0.5rem;
  bottom: 10rem;
  display: inline-block;
  transform: rotate(90deg);
  position: fixed;
  letter-spacing: 4px;
  opacity: 1;
  transition: opacity 0.5s ease-in;
}
.page-landing .banner .scrollbar .scrolltext.hide {
  opacity: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .banner .scrollbar .scrolltext {
    right: -2rem;
  }
}
.page-landing .banner .scrolling-line {
  position: fixed;
  right: 3.6rem;
  bottom: 0;
  width: 1px;
  height: 6rem;
  overflow: hidden;
}
@media only screen and (max-width: 1000px) {
  .page-landing .banner .scrolling-line {
    display: none;
  }
}
.page-landing .banner .scrolling-line:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 2px;
  height: 8rem;
  background-color: white;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-animation-name: scroll;
  animation-name: scroll;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 2s;
  animation-delay: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
@keyframes scroll {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.page-landing .banner > * {
  z-index: 1;
}
.page-landing .banner .banner-text {
  position: relative;
  width: 100%;
  height: 100%;
}
.page-landing .banner .banner-text .banner-main {
  transform: translateY(calc(-50vw * var(--phase)));
}
.page-landing .banner .banner-text .banner-bg {
  transform: translateY(calc(-50vw * var(--phase)));
}
.page-landing .banner .banner-text h1 {
  letter-spacing: 2px;
  max-width: 90%;
  overflow: hidden;
  white-space: --line-break;
}
.page-landing .banner .banner-text h1.banner-main {
  margin: 0;
  color: white;
  font-size: 6.8vmin;
  line-height: 9.2vmin;
  font-display: fallback;
  font-family: var(--titleFont);
  position: absolute;
  top: 40%;
  left: 8%;
  z-index: 100;
}
@media only screen and (max-width: 740px) {
  .page-landing .banner .banner-text h1.banner-main {
    margin-top: 1.5rem;
  }
}
.page-landing .banner .banner-text h1.banner-main .typing {
  font-size: 6.8vmin;
  font-family: var(--titleFont);
}
.page-landing .banner .banner-text h1.banner-main .typing.on::after {
  height: 5.5vmin;
  transform: translateY(0.2vmin);
}
.page-landing .banner .banner-text h1.banner-main .typing.en {
  white-space: pre;
}
.page-landing .banner .banner-text h1.banner-bg {
  font-size: 8vmin;
  line-height: 10vmin;
  letter-spacing: 2px;
  -webkit-text-stroke: 1px #FF5600;
  opacity: 0.6;
  position: absolute;
  top: 44%;
  left: 6%;
  color: transparent;
  pointer-events: none;
  user-select: none;
}
@media only screen and (max-width: 740px) {
  .page-landing .banner .banner-text h1.banner-bg {
    font-size: 5vmin;
  }
}
.page-landing .banner .banner-text strong {
  color: #FF5600;
}
.page-landing .sections {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 180rem;
  margin: 0 auto;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections {
    margin: -5rem auto;
  }
}
.page-landing .sections > section {
  padding: 0 var(--page-gutter);
  margin-top: 10rem;
  position: relative;
  scroll-margin-left: 0;
  scroll-margin-top: 7.5rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections > section {
    margin-top: 8rem;
  }
}
.page-landing .sections > section[data-motto]::after {
  content: attr(data-motto);
  display: block;
  position: absolute;
  top: 0;
  left: -1.4rem;
  opacity: 0.05;
  color: #FF5600;
  text-transform: uppercase;
  font-weight: bolder;
  font-size: 19vw;
  font-family: "Roboto", sans-serif;
  z-index: -1;
  transform: translate(0, -30%);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections > section[data-motto]::after {
    font-size: 7.4rem;
    left: 3.4rem;
    transform: translate(0, -10%);
  }
}
.page-landing .sections > section.motto-right[data-motto]::after {
  left: initial;
  right: -6%;
  transform: translate(0, 28%);
  font-size: 25vw;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections > section.motto-right[data-motto]::after {
    font-size: 33.3vw;
    right: -10%;
    transform: translate(0, -2%);
  }
}
.page-landing .sections .members-container {
  margin-top: 14rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container {
    padding-right: 0;
  }
}
.page-landing .sections .members-container .members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  grid-auto-flow: row dense;
  grid-gap: 1.4rem;
  align-items: stretch;
  justify-items: stretch;
  margin-top: 6rem;
  position: relative;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members {
    display: flex;
    flex-direction: column;
  }
}
.page-landing .sections .members-container .members .member-content-spacer {
  grid-column: span 3;
}
.page-landing .sections .members-container .members .member-portraits {
  display: contents;
}
.page-landing .sections .members-container .members .member-portraits > * {
  align-self: flex-end;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .member-portraits {
    margin-right: calc(var(--page-gutter) * -1);
    display: grid;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    grid-auto-flow: column dense;
    grid-auto-columns: 12rem;
    grid-template-rows: repeat(2, min-content);
    gap: 0.5rem;
  }
}
.page-landing .sections .members-container .members .member-portraits .member-img {
  --x: 0;
  --y: 0;
  perspective: 100rem;
  position: relative;
  align-self: stretch;
  justify-self: stretch;
  filter: brightness(calc(1 - 0.5 * (var(--x) + var(--y)) * 0.2));
}
.page-landing .sections .members-container .members .member-portraits .member-img::before {
  content: "";
  display: block;
  margin-top: 133.3333333333%;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .member-portraits .member-img {
    filter: brightness(1);
    width: 120px;
    height: 180px;
  }
}
.page-landing .sections .members-container .members .member-portraits .member-img .img-wrapper {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: all 0.35s cubic-bezier(0.07, 0.73, 0.48, 1.29);
  box-shadow: 0px 0rem 0rem rgba(0, 0, 0, 0);
  border: solid 0px transparent;
}
.page-landing .sections .members-container .members .member-portraits .member-img .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  image-rendering: high-quality;
  image-rendering: -webkit-optimize-contrast;
}
.page-landing .sections .members-container .members .member-portraits .member-img .img-wrapper.front {
  transform: scale(1) rotateX(0) rotateY(0turn);
}
.page-landing .sections .members-container .members .member-portraits .member-img .img-wrapper.hover {
  transform: scale(1) rotateX(0) rotateY(0.5turn);
  overflow: hidden;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .member-portraits .member-img .img-wrapper.hover::before {
    display: none;
  }
}
.page-landing .sections .members-container .members .member-portraits .member-img .img-wrapper.hover::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image: linear-gradient(to bottom right, transparent, transparent 40%, rgba(255, 255, 255, 0.3) calc(40% + 1px), rgba(255, 255, 255, 0.6) 50%, transparent calc(50% + 1px));
  background-repeat: no-repeat;
  z-index: 10;
  transform: translateX(calc(-100% + 100% * (var(--x) + var(--y)) * -0.5));
  mix-blend-mode: overlay;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .member-portraits .member-img .img-wrapper.hover::before {
    display: none;
  }
}
.page-landing .sections .members-container .members .member-portraits .member-img:hover {
  z-index: 1;
}
.page-landing .sections .members-container .members .member-portraits .member-img:hover .img-wrapper {
  box-shadow: 0px 0.5rem 4rem rgba(0, 0, 0, 0.5);
  border: solid 4px rgb(255, 255, 255);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .member-portraits .member-img:hover .img-wrapper {
    box-shadow: 0px 0rem 0rem rgba(0, 0, 0, 0);
    border: solid 0px transparent;
  }
}
.page-landing .sections .members-container .members .member-portraits .member-img:hover .img-wrapper.front {
  transform: scale(1) rotateX(0) rotateY(-0.5turn);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .member-portraits .member-img:hover .img-wrapper.front {
    transform: scale(1) rotateX(0) rotateY(-0.5turn);
  }
}
.page-landing .sections .members-container .members .member-portraits .member-img:hover .img-wrapper.hover {
  transform: scale(1) rotateX(calc(var(--y) * -15deg)) rotateY(calc(var(--x) * 15deg));
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .member-portraits .member-img:hover .img-wrapper.hover {
    transform: scale(1) rotateX(0) rotateY(0turn);
  }
}
.page-landing .sections .members-container .members .members-content-wrapper {
  grid-column: auto/span 3;
  transform: translateY(-4rem);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .members-content-wrapper {
    padding-right: var(--page-gutter);
  }
}
.page-landing .sections .members-container .members .members-content-wrapper h3 {
  font-style: normal;
  font-weight: bold;
  font-size: 6.4rem;
  font-family: "Poppins";
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2c3045;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .members-content-wrapper h3 {
    font-size: 3.8rem;
  }
}
.page-landing .sections .members-container .members .members-content-wrapper .subtitle {
  color: #FF5600;
  font-weight: var(--boldness);
  font-size: 2rem;
  letter-spacing: var(--lang-letter-spacing);
  font-family: var(--lang-font-family);
  text-transform: uppercase;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .members-content-wrapper .subtitle {
    font-size: 1.2rem;
    margin-top: -1rem;
  }
}
.page-landing .sections .members-container .members .members-content-wrapper .members-content {
  margin-top: 3rem;
  color: #2c3045;
  line-height: 3.4rem;
  font-size: 1.6rem;
  width: 50rem;
  letter-spacing: var(--lang-letter-spacing);
  text-align: justify;
  white-space: pre-line;
  font-family: var(--lang-font-family);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .members-content-wrapper .members-content {
    width: 100%;
    font-size: 1.2rem;
    white-space: pre-line;
    text-align: unset;
    line-height: 2.4rem;
    margin-top: 0;
  }
}
@media only screen and (max-width: 1000px) {
  .page-landing .sections .members-container .members .members-content-wrapper .members-content {
    text-align: unset;
  }
}
.page-landing .sections .members-container .members .members-content-wrapper .members-content p {
  color: #2c3045;
  font-family: var(--lang-font-family);
}
.page-landing .sections .service-container {
  padding-top: 6rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container {
    margin-top: 4rem;
    padding: 4rem;
  }
}
.page-landing .sections .service-container > *:not(:first-child) {
  margin-top: 8rem;
}
.page-landing .sections .service-container .service {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .service {
    flex-direction: column;
    align-items: center;
  }
}
.page-landing .sections .service-container .service .service-content {
  flex: 1;
}
.page-landing .sections .service-container .service .service-content h3 {
  font-style: normal;
  font-weight: bold;
  font-size: 6.4rem;
  text-transform: uppercase;
  letter-spacing: var(--lang-letter-spacing);
  color: #2c3045;
  font-family: "Poppins";
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .service .service-content h3 {
    font-size: 3.8rem;
  }
}
.page-landing .sections .service-container .service .service-content .subtitle {
  color: #5f5bff;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: var(--lang-letter-spacing);
  font-family: var(--lang-font-family);
  text-transform: uppercase;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .service .service-content .subtitle {
    font-size: 1.2rem;
  }
}
.page-landing .sections .service-container .service .service-content .service-title {
  color: #2c3045;
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: var(--lang-letter-spacing);
  font-family: var(--lang-font-family);
  margin-top: 4rem;
  margin-bottom: 3rem;
  line-height: 3.8rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .service .service-content .service-title {
    margin-top: 1rem;
    font-size: 1.6rem;
    line-height: 2.2rem;
    letter-spacing: 1px;
  }
}
.page-landing .sections .service-container .service .service-content .service-description {
  color: #2c3045;
  letter-spacing: var(--lang-letter-spacing);
  font-family: var(--lang-font-family);
  line-height: 3.4rem;
  width: 80%;
  font-size: 1.6rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .service .service-content .service-description {
    width: 100%;
    font-size: 1.2rem;
    line-height: 2.4rem;
    text-align: initial;
  }
}
.page-landing .sections .service-container .service .anybot-wrapper {
  flex: 1;
  width: 100%;
  position: relative;
  max-height: 40rem;
  pointer-events: none;
  margin-top: auto;
}
.page-landing .sections .service-container .service .anybot-wrapper img {
  width: 100%;
  display: block;
  max-width: 58rem;
  margin: 0 auto;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .service .anybot-wrapper {
    margin-left: 0;
    margin-top: 3rem;
  }
}
.page-landing .sections .service-container .appeal-points-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: row;
  text-align: center;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 1000px) {
  .page-landing .sections .service-container .appeal-points-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    text-align: center;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 740px) {
  .page-landing .sections .service-container .appeal-points-container:not(:first-child) {
    margin-left: unset;
  }
}
@media only screen and (max-width: 480px) {
  .page-landing .sections .service-container .appeal-points-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    text-align: center;
    margin-top: -8rem;
  }
}
.page-landing .sections .service-container .appeal-points-container .appeal-point {
  flex: 0 1 20rem;
  z-index: 6;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .appeal-points-container .appeal-point {
    flex: 0 1 15rem;
  }
}
.page-landing .sections .service-container .appeal-points-container .appeal-point:not(:first-child) {
  margin-left: 1rem;
}
.page-landing .sections .service-container .appeal-points-container .appeal-point h4 {
  color: #2c3045;
  font-size: 1.6rem;
  font-family: var(--lang-font-family);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .appeal-points-container .appeal-point h4 {
    font-size: 1.4rem;
    line-height: 2.6rem;
  }
}
.page-landing .sections .service-container .appeal-points-container .appeal-point p {
  color: #8C96A6;
  word-break: keep-all;
  font-size: 1.2rem;
  line-height: 2.2rem;
  font-family: var(--lang-font-family);
  text-align: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .appeal-points-container .appeal-point p {
    font-size: 1.1rem;
    line-height: 1.8rem;
  }
}
.page-landing .sections .service-container .contact-area {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .page-landing .sections .service-container .contact-area {
    flex-direction: column;
  }
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .contact-area {
    flex-direction: column;
  }
}
.page-landing .sections .service-container .contact-area > * {
  flex: 1 0 40%;
  padding: 3rem;
  background: linear-gradient(rgba(32, 36, 56, 0.8), rgba(32, 36, 56, 0.8)), url(/images/contact-min.webp) top/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-top: 2rem;
  max-width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .contact-area > * {
    padding: 2rem;
  }
}
.page-landing .sections .service-container .contact-area > *:not(:first-child) {
  margin-left: 4rem;
}
@media only screen and (max-width: 1000px) {
  .page-landing .sections .service-container .contact-area > *:not(:first-child) {
    margin-left: unset;
  }
}
.page-landing .sections .service-container .contact-area > *::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #2c3045;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.page-landing .sections .service-container .contact-area > *:hover::before {
  opacity: 1;
}
.page-landing .sections .service-container .contact-area > * .texts {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 1;
}
.page-landing .sections .service-container .contact-area > * .texts h2 {
  color: white;
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  font-family: "Poppins";
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .contact-area > * .texts h2 {
    font-size: 2rem;
  }
}
.page-landing .sections .service-container .contact-area > * .texts p {
  font-size: 1.3rem;
  color: white;
  font-family: var(--lang-font-family);
  width: 70%;
}
.page-landing .sections .service-container .contact-area > *::after {
  content: "";
  display: block;
  position: absolute;
  width: 6rem;
  height: 4rem;
  right: 2rem;
}
.page-landing .sections .service-container .contact-area .contact::after {
  background: url(/images/arrow-circle-outline.svg) center/contain no-repeat;
}
.page-landing .sections .service-container .contact-area .contact:hover::after {
  background: url(/images/arrow-circle-white.svg) center/contain no-repeat;
}
.page-landing .sections .service-container .contact-area .demo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(rgba(32, 36, 56, 0.8), rgba(32, 36, 56, 0.8)), url(/images/demo.webp) top/cover no-repeat;
}
@media only screen and (max-width: 480px) {
  .page-landing .sections .service-container .contact-area .demo {
    font-size: 1.6rem;
  }
}
.page-landing .sections .service-container .contact-area .demo img {
  padding: 1rem;
  background-color: white;
  width: 12rem;
  margin-right: 2rem;
  z-index: 1;
}
@media only screen and (max-width: 1000px) {
  .page-landing .sections .service-container .contact-area .demo img {
    display: none;
  }
}
.page-landing .sections .service-container .contact-area .demo h2 {
  text-transform: uppercase;
}
.page-landing .sections .service-container .contact-area .demo::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #2c3045;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.page-landing .sections .service-container .contact-area .demo:hover::before {
  opacity: 1;
}
.page-landing .sections .service-container .contact-area .demo::after {
  background: url(/images/arrow-circle-outline.svg) center/contain no-repeat;
}
.page-landing .sections .service-container .contact-area .demo:hover::after {
  background: url(/images/arrow-circle-white.svg) center/contain no-repeat;
}
.page-landing .sections .mobile {
  display: block;
}
.page-landing .sections .desktop {
  display: none;
}
@media only screen and (min-width: 1000px) {
  .page-landing .sections .mobile {
    display: none;
  }
  .page-landing .sections .desktop {
    display: block;
  }
}
.page-landing .sections .recruit-container {
  padding: 0;
  position: relative;
  overflow: visible;
  display: flex;
  background: url(/webroot/images/6-min.webp) top right/auto 100% no-repeat;
  margin-left: var(--page-gutter);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .recruit-container {
    margin-top: 6rem;
    background-position: 59%;
  }
}
.page-landing .sections .recruit-container .recruit-content {
  background-color: white;
  flex: 0 0 48%;
  max-width: calc(100vw - var(--page-gutter));
  display: flex;
  flex-direction: column;
  padding-top: 4rem;
  padding-left: 4rem;
  padding-bottom: 5.5rem;
  padding-right: 8rem;
  z-index: 1;
  transform: translate(-4rem, -4rem);
}
@media only screen and (max-width: 1000px) {
  .page-landing .sections .recruit-container .recruit-content {
    flex: 0 0 calc(100% - 10rem);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
  }
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .recruit-container .recruit-content {
    flex: 0 0 calc(100% - 2rem);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    text-align: unset;
    padding-right: 2rem;
  }
}
.page-landing .sections .recruit-container .recruit-content h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 6.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2c3045;
  font-family: "Poppins";
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .recruit-container .recruit-content h3 {
    font-size: 3.8rem;
  }
}
.page-landing .sections .recruit-container .recruit-content h4 {
  color: #2c3045;
  font-size: 2.2rem;
  margin-top: 4rem;
  line-height: 3.8rem;
  font-family: var(--lang-font-family);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .recruit-container .recruit-content h4 {
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}
.page-landing .sections .recruit-container .recruit-content p {
  color: #FF5600;
  font-size: 2rem;
  letter-spacing: var(--lang-letter-spacing);
  font-family: var(--lang-font-family);
  text-transform: uppercase;
  font-weight: bold;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .recruit-container .recruit-content p {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}
.page-landing .sections .recruit-container .recruit-content .recruit-positions {
  color: #FF5600;
  margin: 4rem 0;
  font-family: var(--lang-font-family);
}
.page-landing .sections .recruit-container .recruit-content .recruit-positions > * {
  list-style: none;
  font-size: 1.3rem;
}
.page-landing .sections .recruit-container .recruit-content .recruit-positions > *:not(:first-child) {
  margin-top: 2rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .recruit-container .recruit-content .recruit-positions > * {
    font-size: 1.2rem;
    line-height: 1.4rem;
    letter-spacing: var(--recruit-letter-spacing);
  }
}
.page-landing .sections .recruit-container .recruit-content .recruit-text {
  letter-spacing: var(--lang-letter-spacing);
  font-family: var(--lang-font-family);
  font-weight: normal;
  color: #2c3045;
  margin-top: 3rem;
  line-height: 3.4rem;
  font-size: 1.6rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .recruit-container .recruit-content .recruit-text {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
}
.page-landing .sections .recruit-container .recruit-content .detail-button {
  margin-top: 2rem;
}
.page-landing .sections .recruit-container .recruit-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 120%;
}
.page-landing .sections .blogs-container {
  padding-top: 2rem;
  --bias: 0;
  --index: 0;
  --normalized-index: 0;
}
.page-landing .sections .blogs-container .blog-content {
  display: flex;
  flex-direction: column;
  position: relative;
}
.page-landing .sections .blogs-container .blog-content h3 {
  font-weight: 600;
  font-size: 6.4rem;
  font-family: "Poppins";
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2c3045;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container .blog-content h3 {
    font-size: 3.8rem;
  }
}
.page-landing .sections .blogs-container .blog-content p {
  color: #FF5600;
  font-family: var(--lang-font-family);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container .blog-content p {
    font-size: 1.2rem;
    line-height: 1.7rem;
    letter-spacing: 2px;
  }
}
.page-landing .sections .blogs-container .blog-content .button-area .detail-link-blogs {
  display: none;
  text-transform: uppercase;
}
.page-landing .sections .blogs-container .blog-content .blog-title-area {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.page-landing .sections .blogs-container .blog-content .blog-title-area h4 {
  color: #2C3045;
  display: none;
  font-size: 2.8rem;
  font-family: "YuGothic", sans-serif;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container .blog-content .blog-title-area h4 {
    font-size: 1.5rem;
  }
}
.page-landing .sections .blogs-container .blog-content .blog-title-area a {
  text-transform: uppercase;
}
.page-landing .sections .blogs-container .blog-content .blog-texts {
  width: 100%;
  overflow: hidden;
  display: flex;
  position: relative;
  margin-bottom: 0.6rem;
  align-items: flex-start;
}
.page-landing .sections .blogs-container .blog-content .blog-texts .blog-text {
  flex: 0 0 100%;
  width: 80%;
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: var(--lang-letter-spacing);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container .blog-content .blog-texts .blog-text {
    font-size: 1.2rem;
  }
}
.page-landing .sections .blogs-container .blog-content .dot-container {
  display: flex;
  position: absolute;
  bottom: 23.8rem;
  right: 10%;
  margin-top: 2rem;
  z-index: 10;
}
@media only screen and (max-width: 1000px) {
  .page-landing .sections .blogs-container .blog-content .dot-container {
    bottom: 33.8rem;
  }
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container .blog-content .dot-container {
    order: 1;
    justify-content: flex-start;
    bottom: unset;
    right: unset;
    position: relative;
  }
}
.page-landing .sections .blogs-container .blog-content .dot-container .dot {
  display: flex;
  width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.page-landing .sections .blogs-container .blog-content .dot-container .dot svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.page-landing .sections .blogs-container .blog-content .dot-container .dot svg circle {
  stroke-dasharray: 50;
  stroke-dashoffset: -50;
  transition: stroke-dashoffset 0.2s;
  stroke: #c1c6ce;
}
.page-landing .sections .blogs-container .blog-content .dot-container .dot:not(:first-child) {
  margin-left: 2rem;
}
.page-landing .sections .blogs-container .blog-content .dot-container .dot::before {
  content: "";
  background-color: #c1c6ce;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 0.8rem;
  z-index: 1;
  transition: background-color 0.2s;
}
.page-landing .sections .blogs-container .blog-content .blogs {
  display: flex;
  align-items: flex-end;
  height: 30rem;
  margin-top: 2rem;
  z-index: 1;
  transform: translateX(var(--bias));
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container .blog-content .blogs {
    height: 45vw;
    margin-top: 0;
  }
}
.page-landing .sections .blogs-container .blog-content .blogs img {
  --width: 40rem;
  --height: 20rem;
  --gap: 2.4rem;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem;
  transition: all var(--slide-duration);
  cursor: pointer;
  position: relative;
  flex: 0 0 var(--width);
  width: var(--width);
  height: var(--height);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container .blog-content .blogs img {
    --width: 45vw;
    --height: 35vw;
  }
}
.page-landing .sections .blogs-container .blog-content .blogs img:not(:first-child) {
  margin-left: var(--gap);
}
.page-landing .sections .blogs-container .blog-content .blogs img:first-child {
  margin-left: calc((var(--index) + var(--total)) * -1 * (var(--width) + var(--gap)));
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container .blog-content .dot-container {
    order: 1;
  }
  .page-landing .sections .blogs-container .blog-content .blog-texts {
    order: 2;
    margin-top: 2rem;
    margin-bottom: 0;
  }
  .page-landing .sections .blogs-container .blog-content .button-area {
    order: 5;
    margin-top: 2rem;
    justify-content: flex-start !important;
  }
}
.page-landing .sections .blogs-container[data-index="0"] .blog-content .blogs img:nth-child(1) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="0"] .blog-content .blogs img:nth-child(1) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .blog-texts .blog-text:first-child {
  margin-left: calc(0 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .blog-title-area .blog-title:nth-child(1) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="0"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .button-area .detail-link-blogs:nth-child(1) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="0"] .button-area .detail-link-blogs:nth-child(1) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .button-area .detail-link-blogs:nth-child(1)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .dot-container .dot:nth-child(1) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .dot-container .dot:nth-child(1)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="1"] .blog-content .blogs img:nth-child(2) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="1"] .blog-content .blogs img:nth-child(2) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .blog-texts .blog-text:first-child {
  margin-left: calc(-1 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .blog-title-area .blog-title:nth-child(2) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="1"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .button-area .detail-link-blogs:nth-child(2) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="1"] .button-area .detail-link-blogs:nth-child(2) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .button-area .detail-link-blogs:nth-child(2)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .dot-container .dot:nth-child(2) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .dot-container .dot:nth-child(2)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="2"] .blog-content .blogs img:nth-child(3) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="2"] .blog-content .blogs img:nth-child(3) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .blog-texts .blog-text:first-child {
  margin-left: calc(-2 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .blog-title-area .blog-title:nth-child(3) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="2"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .button-area .detail-link-blogs:nth-child(3) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="2"] .button-area .detail-link-blogs:nth-child(3) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .button-area .detail-link-blogs:nth-child(3)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .dot-container .dot:nth-child(3) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .dot-container .dot:nth-child(3)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="3"] .blog-content .blogs img:nth-child(4) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="3"] .blog-content .blogs img:nth-child(4) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .blog-texts .blog-text:first-child {
  margin-left: calc(-3 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .blog-title-area .blog-title:nth-child(4) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="3"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .button-area .detail-link-blogs:nth-child(4) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="3"] .button-area .detail-link-blogs:nth-child(4) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .button-area .detail-link-blogs:nth-child(4)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .dot-container .dot:nth-child(4) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .dot-container .dot:nth-child(4)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="4"] .blog-content .blogs img:nth-child(5) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="4"] .blog-content .blogs img:nth-child(5) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .blog-texts .blog-text:first-child {
  margin-left: calc(-4 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .blog-title-area .blog-title:nth-child(5) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="4"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .button-area .detail-link-blogs:nth-child(5) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="4"] .button-area .detail-link-blogs:nth-child(5) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .button-area .detail-link-blogs:nth-child(5)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .dot-container .dot:nth-child(5) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .dot-container .dot:nth-child(5)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="5"] .blog-content .blogs img:nth-child(6) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="5"] .blog-content .blogs img:nth-child(6) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .blog-texts .blog-text:first-child {
  margin-left: calc(-5 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .blog-title-area .blog-title:nth-child(6) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="5"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .button-area .detail-link-blogs:nth-child(6) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="5"] .button-area .detail-link-blogs:nth-child(6) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .button-area .detail-link-blogs:nth-child(6)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .dot-container .dot:nth-child(6) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .dot-container .dot:nth-child(6)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="6"] .blog-content .blogs img:nth-child(7) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="6"] .blog-content .blogs img:nth-child(7) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .blog-texts .blog-text:first-child {
  margin-left: calc(-6 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .blog-title-area .blog-title:nth-child(7) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="6"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .button-area .detail-link-blogs:nth-child(7) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="6"] .button-area .detail-link-blogs:nth-child(7) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .button-area .detail-link-blogs:nth-child(7)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .dot-container .dot:nth-child(7) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .dot-container .dot:nth-child(7)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="7"] .blog-content .blogs img:nth-child(8) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="7"] .blog-content .blogs img:nth-child(8) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .blog-texts .blog-text:first-child {
  margin-left: calc(-7 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .blog-title-area .blog-title:nth-child(8) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="7"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .button-area .detail-link-blogs:nth-child(8) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="7"] .button-area .detail-link-blogs:nth-child(8) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .button-area .detail-link-blogs:nth-child(8)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .dot-container .dot:nth-child(8) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .dot-container .dot:nth-child(8)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="8"] .blog-content .blogs img:nth-child(9) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="8"] .blog-content .blogs img:nth-child(9) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .blog-texts .blog-text:first-child {
  margin-left: calc(-8 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .blog-title-area .blog-title:nth-child(9) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="8"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .button-area .detail-link-blogs:nth-child(9) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="8"] .button-area .detail-link-blogs:nth-child(9) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .button-area .detail-link-blogs:nth-child(9)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .dot-container .dot:nth-child(9) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .dot-container .dot:nth-child(9)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="9"] .blog-content .blogs img:nth-child(10) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="9"] .blog-content .blogs img:nth-child(10) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .blog-texts .blog-text:first-child {
  margin-left: calc(-9 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .blog-title-area .blog-title:nth-child(10) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="9"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .button-area .detail-link-blogs:nth-child(10) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="9"] .button-area .detail-link-blogs:nth-child(10) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .button-area .detail-link-blogs:nth-child(10)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .dot-container .dot:nth-child(10) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .dot-container .dot:nth-child(10)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="10"] .blog-content .blogs img:nth-child(11) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="10"] .blog-content .blogs img:nth-child(11) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .blog-texts .blog-text:first-child {
  margin-left: calc(-10 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .blog-title-area .blog-title:nth-child(11) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="10"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .button-area .detail-link-blogs:nth-child(11) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="10"] .button-area .detail-link-blogs:nth-child(11) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .button-area .detail-link-blogs:nth-child(11)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .dot-container .dot:nth-child(11) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .dot-container .dot:nth-child(11)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="11"] .blog-content .blogs img:nth-child(12) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="11"] .blog-content .blogs img:nth-child(12) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .blog-texts .blog-text:first-child {
  margin-left: calc(-11 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .blog-title-area .blog-title:nth-child(12) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="11"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .button-area .detail-link-blogs:nth-child(12) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="11"] .button-area .detail-link-blogs:nth-child(12) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .button-area .detail-link-blogs:nth-child(12)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .dot-container .dot:nth-child(12) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .dot-container .dot:nth-child(12)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="12"] .blog-content .blogs img:nth-child(13) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="12"] .blog-content .blogs img:nth-child(13) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .blog-texts .blog-text:first-child {
  margin-left: calc(-12 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .blog-title-area .blog-title:nth-child(13) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="12"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .button-area .detail-link-blogs:nth-child(13) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="12"] .button-area .detail-link-blogs:nth-child(13) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .button-area .detail-link-blogs:nth-child(13)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .dot-container .dot:nth-child(13) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .dot-container .dot:nth-child(13)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="13"] .blog-content .blogs img:nth-child(14) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="13"] .blog-content .blogs img:nth-child(14) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .blog-texts .blog-text:first-child {
  margin-left: calc(-13 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .blog-title-area .blog-title:nth-child(14) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="13"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .button-area .detail-link-blogs:nth-child(14) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="13"] .button-area .detail-link-blogs:nth-child(14) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .button-area .detail-link-blogs:nth-child(14)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .dot-container .dot:nth-child(14) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .dot-container .dot:nth-child(14)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="14"] .blog-content .blogs img:nth-child(15) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="14"] .blog-content .blogs img:nth-child(15) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .blog-texts .blog-text:first-child {
  margin-left: calc(-14 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .blog-title-area .blog-title:nth-child(15) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="14"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .button-area .detail-link-blogs:nth-child(15) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="14"] .button-area .detail-link-blogs:nth-child(15) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .button-area .detail-link-blogs:nth-child(15)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .dot-container .dot:nth-child(15) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .dot-container .dot:nth-child(15)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="15"] .blog-content .blogs img:nth-child(16) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="15"] .blog-content .blogs img:nth-child(16) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .blog-texts .blog-text:first-child {
  margin-left: calc(-15 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .blog-title-area .blog-title:nth-child(16) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="15"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .button-area .detail-link-blogs:nth-child(16) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="15"] .button-area .detail-link-blogs:nth-child(16) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .button-area .detail-link-blogs:nth-child(16)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .dot-container .dot:nth-child(16) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .dot-container .dot:nth-child(16)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="16"] .blog-content .blogs img:nth-child(17) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="16"] .blog-content .blogs img:nth-child(17) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .blog-texts .blog-text:first-child {
  margin-left: calc(-16 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .blog-title-area .blog-title:nth-child(17) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="16"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .button-area .detail-link-blogs:nth-child(17) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="16"] .button-area .detail-link-blogs:nth-child(17) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .button-area .detail-link-blogs:nth-child(17)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .dot-container .dot:nth-child(17) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .dot-container .dot:nth-child(17)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="17"] .blog-content .blogs img:nth-child(18) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="17"] .blog-content .blogs img:nth-child(18) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .blog-texts .blog-text:first-child {
  margin-left: calc(-17 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .blog-title-area .blog-title:nth-child(18) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="17"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .button-area .detail-link-blogs:nth-child(18) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="17"] .button-area .detail-link-blogs:nth-child(18) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .button-area .detail-link-blogs:nth-child(18)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .dot-container .dot:nth-child(18) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .dot-container .dot:nth-child(18)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="18"] .blog-content .blogs img:nth-child(19) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="18"] .blog-content .blogs img:nth-child(19) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .blog-texts .blog-text:first-child {
  margin-left: calc(-18 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .blog-title-area .blog-title:nth-child(19) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="18"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .button-area .detail-link-blogs:nth-child(19) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="18"] .button-area .detail-link-blogs:nth-child(19) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .button-area .detail-link-blogs:nth-child(19)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .dot-container .dot:nth-child(19) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .dot-container .dot:nth-child(19)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="19"] .blog-content .blogs img:nth-child(20) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="19"] .blog-content .blogs img:nth-child(20) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .blog-texts .blog-text:first-child {
  margin-left: calc(-19 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .blog-title-area .blog-title:nth-child(20) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="19"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .button-area .detail-link-blogs:nth-child(20) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="19"] .button-area .detail-link-blogs:nth-child(20) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .button-area .detail-link-blogs:nth-child(20)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .dot-container .dot:nth-child(20) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .dot-container .dot:nth-child(20)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="20"] .blog-content .blogs img:nth-child(21) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="20"] .blog-content .blogs img:nth-child(21) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .blog-texts .blog-text:first-child {
  margin-left: calc(-20 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .blog-title-area .blog-title:nth-child(21) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="20"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .button-area .detail-link-blogs:nth-child(21) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="20"] .button-area .detail-link-blogs:nth-child(21) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .button-area .detail-link-blogs:nth-child(21)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .dot-container .dot:nth-child(21) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .dot-container .dot:nth-child(21)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="21"] .blog-content .blogs img:nth-child(22) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="21"] .blog-content .blogs img:nth-child(22) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .blog-texts .blog-text:first-child {
  margin-left: calc(-21 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .blog-title-area .blog-title:nth-child(22) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="21"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .button-area .detail-link-blogs:nth-child(22) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="21"] .button-area .detail-link-blogs:nth-child(22) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .button-area .detail-link-blogs:nth-child(22)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .dot-container .dot:nth-child(22) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .dot-container .dot:nth-child(22)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="22"] .blog-content .blogs img:nth-child(23) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="22"] .blog-content .blogs img:nth-child(23) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .blog-texts .blog-text:first-child {
  margin-left: calc(-22 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .blog-title-area .blog-title:nth-child(23) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="22"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .button-area .detail-link-blogs:nth-child(23) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="22"] .button-area .detail-link-blogs:nth-child(23) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .button-area .detail-link-blogs:nth-child(23)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .dot-container .dot:nth-child(23) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .dot-container .dot:nth-child(23)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="23"] .blog-content .blogs img:nth-child(24) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="23"] .blog-content .blogs img:nth-child(24) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .blog-texts .blog-text:first-child {
  margin-left: calc(-23 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .blog-title-area .blog-title:nth-child(24) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="23"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .button-area .detail-link-blogs:nth-child(24) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="23"] .button-area .detail-link-blogs:nth-child(24) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .button-area .detail-link-blogs:nth-child(24)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .dot-container .dot:nth-child(24) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .dot-container .dot:nth-child(24)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="24"] .blog-content .blogs img:nth-child(25) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="24"] .blog-content .blogs img:nth-child(25) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .blog-texts .blog-text:first-child {
  margin-left: calc(-24 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .blog-title-area .blog-title:nth-child(25) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="24"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .button-area .detail-link-blogs:nth-child(25) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="24"] .button-area .detail-link-blogs:nth-child(25) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .button-area .detail-link-blogs:nth-child(25)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .dot-container .dot:nth-child(25) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .dot-container .dot:nth-child(25)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="25"] .blog-content .blogs img:nth-child(26) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="25"] .blog-content .blogs img:nth-child(26) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .blog-texts .blog-text:first-child {
  margin-left: calc(-25 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .blog-title-area .blog-title:nth-child(26) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="25"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .button-area .detail-link-blogs:nth-child(26) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="25"] .button-area .detail-link-blogs:nth-child(26) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .button-area .detail-link-blogs:nth-child(26)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .dot-container .dot:nth-child(26) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .dot-container .dot:nth-child(26)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="26"] .blog-content .blogs img:nth-child(27) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="26"] .blog-content .blogs img:nth-child(27) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .blog-texts .blog-text:first-child {
  margin-left: calc(-26 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .blog-title-area .blog-title:nth-child(27) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="26"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .button-area .detail-link-blogs:nth-child(27) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="26"] .button-area .detail-link-blogs:nth-child(27) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .button-area .detail-link-blogs:nth-child(27)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .dot-container .dot:nth-child(27) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .dot-container .dot:nth-child(27)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="27"] .blog-content .blogs img:nth-child(28) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="27"] .blog-content .blogs img:nth-child(28) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .blog-texts .blog-text:first-child {
  margin-left: calc(-27 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .blog-title-area .blog-title:nth-child(28) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="27"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .button-area .detail-link-blogs:nth-child(28) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="27"] .button-area .detail-link-blogs:nth-child(28) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .button-area .detail-link-blogs:nth-child(28)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .dot-container .dot:nth-child(28) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .dot-container .dot:nth-child(28)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="28"] .blog-content .blogs img:nth-child(29) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="28"] .blog-content .blogs img:nth-child(29) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .blog-texts .blog-text:first-child {
  margin-left: calc(-28 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .blog-title-area .blog-title:nth-child(29) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="28"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .button-area .detail-link-blogs:nth-child(29) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="28"] .button-area .detail-link-blogs:nth-child(29) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .button-area .detail-link-blogs:nth-child(29)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .dot-container .dot:nth-child(29) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .dot-container .dot:nth-child(29)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="29"] .blog-content .blogs img:nth-child(30) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="29"] .blog-content .blogs img:nth-child(30) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .blog-texts .blog-text:first-child {
  margin-left: calc(-29 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .blog-title-area .blog-title:nth-child(30) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="29"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .button-area .detail-link-blogs:nth-child(30) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="29"] .button-area .detail-link-blogs:nth-child(30) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .button-area .detail-link-blogs:nth-child(30)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .dot-container .dot:nth-child(30) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .dot-container .dot:nth-child(30)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="30"] .blog-content .blogs img:nth-child(31) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="30"] .blog-content .blogs img:nth-child(31) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .blog-texts .blog-text:first-child {
  margin-left: calc(-30 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .blog-title-area .blog-title:nth-child(31) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="30"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .button-area .detail-link-blogs:nth-child(31) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="30"] .button-area .detail-link-blogs:nth-child(31) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .button-area .detail-link-blogs:nth-child(31)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .dot-container .dot:nth-child(31) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .dot-container .dot:nth-child(31)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="31"] .blog-content .blogs img:nth-child(32) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="31"] .blog-content .blogs img:nth-child(32) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .blog-texts .blog-text:first-child {
  margin-left: calc(-31 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .blog-title-area .blog-title:nth-child(32) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="31"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .button-area .detail-link-blogs:nth-child(32) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="31"] .button-area .detail-link-blogs:nth-child(32) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .button-area .detail-link-blogs:nth-child(32)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .dot-container .dot:nth-child(32) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .dot-container .dot:nth-child(32)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="32"] .blog-content .blogs img:nth-child(33) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="32"] .blog-content .blogs img:nth-child(33) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .blog-texts .blog-text:first-child {
  margin-left: calc(-32 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .blog-title-area .blog-title:nth-child(33) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="32"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .button-area .detail-link-blogs:nth-child(33) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="32"] .button-area .detail-link-blogs:nth-child(33) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .button-area .detail-link-blogs:nth-child(33)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .dot-container .dot:nth-child(33) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .dot-container .dot:nth-child(33)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="33"] .blog-content .blogs img:nth-child(34) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="33"] .blog-content .blogs img:nth-child(34) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .blog-texts .blog-text:first-child {
  margin-left: calc(-33 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .blog-title-area .blog-title:nth-child(34) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="33"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .button-area .detail-link-blogs:nth-child(34) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="33"] .button-area .detail-link-blogs:nth-child(34) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .button-area .detail-link-blogs:nth-child(34)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .dot-container .dot:nth-child(34) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .dot-container .dot:nth-child(34)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="34"] .blog-content .blogs img:nth-child(35) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="34"] .blog-content .blogs img:nth-child(35) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .blog-texts .blog-text:first-child {
  margin-left: calc(-34 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .blog-title-area .blog-title:nth-child(35) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="34"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .button-area .detail-link-blogs:nth-child(35) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="34"] .button-area .detail-link-blogs:nth-child(35) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .button-area .detail-link-blogs:nth-child(35)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .dot-container .dot:nth-child(35) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .dot-container .dot:nth-child(35)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="35"] .blog-content .blogs img:nth-child(36) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="35"] .blog-content .blogs img:nth-child(36) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .blog-texts .blog-text:first-child {
  margin-left: calc(-35 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .blog-title-area .blog-title:nth-child(36) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="35"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .button-area .detail-link-blogs:nth-child(36) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="35"] .button-area .detail-link-blogs:nth-child(36) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .button-area .detail-link-blogs:nth-child(36)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .dot-container .dot:nth-child(36) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .dot-container .dot:nth-child(36)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="36"] .blog-content .blogs img:nth-child(37) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="36"] .blog-content .blogs img:nth-child(37) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .blog-texts .blog-text:first-child {
  margin-left: calc(-36 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .blog-title-area .blog-title:nth-child(37) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="36"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .button-area .detail-link-blogs:nth-child(37) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="36"] .button-area .detail-link-blogs:nth-child(37) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .button-area .detail-link-blogs:nth-child(37)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .dot-container .dot:nth-child(37) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .dot-container .dot:nth-child(37)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="37"] .blog-content .blogs img:nth-child(38) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="37"] .blog-content .blogs img:nth-child(38) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .blog-texts .blog-text:first-child {
  margin-left: calc(-37 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .blog-title-area .blog-title:nth-child(38) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="37"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .button-area .detail-link-blogs:nth-child(38) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="37"] .button-area .detail-link-blogs:nth-child(38) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .button-area .detail-link-blogs:nth-child(38)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .dot-container .dot:nth-child(38) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .dot-container .dot:nth-child(38)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="38"] .blog-content .blogs img:nth-child(39) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="38"] .blog-content .blogs img:nth-child(39) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .blog-texts .blog-text:first-child {
  margin-left: calc(-38 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .blog-title-area .blog-title:nth-child(39) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="38"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .button-area .detail-link-blogs:nth-child(39) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="38"] .button-area .detail-link-blogs:nth-child(39) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .button-area .detail-link-blogs:nth-child(39)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .dot-container .dot:nth-child(39) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .dot-container .dot:nth-child(39)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="39"] .blog-content .blogs img:nth-child(40) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="39"] .blog-content .blogs img:nth-child(40) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .blog-texts .blog-text:first-child {
  margin-left: calc(-39 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .blog-title-area .blog-title:nth-child(40) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="39"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .button-area .detail-link-blogs:nth-child(40) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="39"] .button-area .detail-link-blogs:nth-child(40) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .button-area .detail-link-blogs:nth-child(40)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .dot-container .dot:nth-child(40) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .dot-container .dot:nth-child(40)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="40"] .blog-content .blogs img:nth-child(41) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="40"] .blog-content .blogs img:nth-child(41) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .blog-texts .blog-text:first-child {
  margin-left: calc(-40 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .blog-title-area .blog-title:nth-child(41) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="40"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .button-area .detail-link-blogs:nth-child(41) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="40"] .button-area .detail-link-blogs:nth-child(41) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .button-area .detail-link-blogs:nth-child(41)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .dot-container .dot:nth-child(41) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .dot-container .dot:nth-child(41)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container.interacting .dot-container .dot svg circle {
  animation: none !important;
}
.page-landing .sections .blogs-container:not(.interacting) .blogs {
  transition: transform 0.3s;
}
.page-landing .sections .news-container {
  padding: 0;
}
.page-landing .sections .news-container .news-articles-container {
  padding: var(--page-gutter);
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .news-container .news-articles-container {
    padding: unset;
  }
}
.page-landing .sections .news-container .news-articles-container h3 {
  font-weight: 600;
  font-size: 6.4rem;
  font-family: "Poppins";
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2c3045;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .news-container .news-articles-container h3 {
    font-size: 3.8rem;
    padding: 0 var(--page-gutter);
  }
}
.page-landing .sections .news-container .news-articles-container p {
  color: #FF5600;
  font-family: var(--lang-font-family);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: var(--lang-letter-spacing);
  text-transform: uppercase;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .news-container .news-articles-container p {
    font-size: 1.2rem;
    line-height: 1.7rem;
    padding: 0 var(--page-gutter);
  }
}
.page-landing .sections .news-container .news-articles-container .blog-text {
  color: #2c3045;
}
.page-landing .sections .news-container .news-articles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
  position: relative;
  grid-auto-flow: row dense;
  padding-top: 1rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .news-container .news-articles {
    grid-template-columns: 1fr;
    column-gap: 0;
    padding-right: var(--page-gutter);
    overflow-x: auto;
    overflow-y: hidden;
    grid-auto-rows: 8rem;
    margin-top: 0;
  }
}
.page-landing .sections .news-container .news-articles .article {
  display: flex;
  align-items: center;
  border-bottom: 1px solid lightgray;
  padding: 2rem 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .news-container .news-articles .article {
    height: 8rem;
    margin-left: var(--page-gutter);
  }
}
.page-landing .sections .news-container .news-articles .article > *:not(:first-child) {
  margin-left: 2rem;
}
.page-landing .sections .news-container .news-articles .article .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--lang-font-family);
}
.page-landing .sections .news-container .news-articles .article .date .article-date-month-year {
  font-size: 1rem;
}
.page-landing .sections .news-container .news-articles .article .date .article-date-day {
  font-size: 2.8rem;
  font-weight: 800;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .news-container .news-articles .article .date .article-date-day {
    font-weight: 600;
  }
}
.page-landing .sections .news-container .news-articles .article .article-tag {
  padding: 2px;
  text-transform: uppercase;
  background-color: #FF5600;
  border-radius: 3px;
  color: white;
  font-size: 1rem;
  font-family: var(--lang-font-family);
  letter-spacing: 1px;
  width: 4.4rem;
  text-align: center;
}
.page-landing .sections .news-container .news-articles .article .article-snippet {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  font-family: var(--lang-font-family);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 3px;
  line-height: 2.56rem;
}
.page-landing .sections .news-container .news-articles .article .article-snippet.eng {
  letter-spacing: 0.6px;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .news-container .news-articles .article .article-snippet {
    font-size: 1.2rem;
    line-height: 1.8rem;
    letter-spacing: 2px;
  }
}
.page-landing .sections .company-info-container .company-info {
  display: flex;
  flex-direction: column;
}
.page-landing .sections .company-info-container .company-info h3 {
  font-weight: bold;
  font-size: 6.4rem;
  font-family: "Poppins";
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2c3045;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .company-info-container .company-info h3 {
    font-size: 3.5rem;
  }
}
.page-landing .sections .company-info-container .company-info p {
  color: #FF5600;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: var(--lang-letter-spacing);
  font-family: var(--lang-font-family);
  text-transform: uppercase;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .company-info-container .company-info p {
    font-size: 1.2rem;
    line-height: 1.7rem;
  }
}
.page-landing .sections .company-info-container .company-info .company-info-content {
  margin-top: 6rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .company-info-container .company-info .company-info-content {
    margin-top: 0;
  }
}
.page-landing .sections .company-info-container .company-info .company-info-content .company-info-item {
  display: flex;
  align-items: center;
  padding: 2rem;
}
.page-landing .sections .company-info-container .company-info .company-info-content .company-info-item:not(:last-of-type) {
  border-bottom: 0.5px solid lightgray;
}
.page-landing .sections .company-info-container .company-info .company-info-content .company-info-item .company-info-item-title {
  font-weight: bold;
  flex: 0 1 16rem;
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-family: var(--lang-font-family);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .company-info-container .company-info .company-info-content .company-info-item .company-info-item-title {
    font-size: 1.2rem;
    flex: 0 1 10rem;
  }
}
.page-landing .sections .company-info-container .company-info .company-info-content .company-info-item .company-info-item-info {
  flex: 1;
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-family: "Poppins";
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .company-info-container .company-info .company-info-content .company-info-item .company-info-item-info {
    font-size: 1.2rem;
  }
}
.page-landing .sections .company-info-container .company-info .company-info-content .company-info-item a {
  color: #FF5600;
}

@keyframes revolve {
  from {
    stroke-dashoffset: -50;
  }
  to {
    stroke-dashoffset: 0;
  }
}
/* Kiro */
@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
.employee-page header.nav {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  position: sticky;
  top: 0;
}
.employee-page header.nav .logo {
  display: block;
  width: 11rem;
  height: 4.3rem;
  background: url(/images/evolany-logo-inverted.svg) center/contain no-repeat;
  transform: translateY(-4%);
}
.employee-page header.nav .logo::after {
  font-size: 1.2rem;
  left: 11rem;
  top: 1.2rem;
}
.employee-page header.nav nav {
  color: #2c3045;
}
.employee-page .page-employee .mega-wrapper {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: black;
}
.employee-page .page-employee .mega-wrapper .back {
  z-index: 1;
  position: fixed;
  top: 55rem;
  left: 0;
  transform: translateY(-50%);
  background-color: #ff5600;
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 740px) {
  .employee-page .page-employee .mega-wrapper .back {
    top: 19.5rem;
  }
}
.employee-page .page-employee .mega-wrapper .back::before {
  content: "";
  color: white;
  font-weight: bold;
  font-size: 2.3rem;
  -webkit-text-stroke: 1px;
  line-height: 2.3rem;
  width: 1.8rem;
  height: 2.2rem;
  background: url(/images/back-arrow.svg) center/contain;
}
.employee-page .page-employee .mega-wrapper .top-img {
  width: 100%;
  height: 48rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  z-index: -1;
}
@media only screen and (max-width: 740px) {
  .employee-page .page-employee .mega-wrapper .top-img {
    height: 12.5rem;
    position: static;
  }
}
.employee-page .page-employee .mega-wrapper .wrapper {
  display: flex;
  width: 61.5%;
  height: fit-content;
  background: white;
  padding: 6rem;
  padding-bottom: 0;
  min-width: 800px;
  transform: translateY(-12rem);
}
@media only screen and (max-width: 740px) {
  .employee-page .page-employee .mega-wrapper .wrapper {
    flex-direction: column;
    margin: 0;
    padding: 4rem 2rem;
    min-width: unset;
    width: 100%;
    transform: translateY(0);
  }
}
.employee-page .page-employee .mega-wrapper .wrapper .left {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  text-align: center;
  align-items: flex-start;
}
@media only screen and (max-width: 740px) {
  .employee-page .page-employee .mega-wrapper .wrapper .left {
    flex-direction: row;
  }
}
.employee-page .page-employee .mega-wrapper .wrapper .left .member-img {
  max-width: 100%;
  width: 20rem;
}
@media only screen and (max-width: 740px) {
  .employee-page .page-employee .mega-wrapper .wrapper .left .member-img {
    max-width: 50%;
  }
}
.employee-page .page-employee .mega-wrapper .wrapper .left .info {
  width: 20rem;
}
@media only screen and (max-width: 740px) {
  .employee-page .page-employee .mega-wrapper .wrapper .left .info {
    width: unset;
    flex: 1;
    margin-left: 2.6rem;
  }
}
.employee-page .page-employee .mega-wrapper .wrapper .left .info > * {
  font-family: "YuGothic", Courier, monospace;
  text-align: left;
  font-weight: bold;
  letter-spacing: 1px;
  color: #2c3045;
  width: 100%;
}
.employee-page .page-employee .mega-wrapper .wrapper .left .info p {
  font-size: 14px;
  line-height: 16px;
}
.employee-page .page-employee .mega-wrapper .wrapper .left .info p.role {
  font-family: "Roboto", "YuGothic", Courier, monospace;
  color: #ff5600;
  margin-top: 2rem;
}
.employee-page .page-employee .mega-wrapper .wrapper .left .info p + p {
  margin-top: 1.5rem;
}
.employee-page .page-employee .mega-wrapper .wrapper .left .info h1 {
  font-size: 24px;
  line-height: 23px;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.employee-page .page-employee .mega-wrapper .wrapper .right {
  --space: 51px;
  flex-grow: 1;
  flex-direction: column;
  padding-left: var(--space);
  position: relative;
  margin-top: 2.6rem;
}
@media only screen and (max-width: 740px) {
  .employee-page .page-employee .mega-wrapper .wrapper .right {
    padding: 0;
  }
}
.employee-page .page-employee .mega-wrapper .wrapper .right .interview-img {
  width: calc(100% - var(--space) * 2);
  top: 0;
  left: 3rem;
  position: absolute;
}
@media only screen and (max-width: 740px) {
  .employee-page .page-employee .mega-wrapper .wrapper .right .interview-img {
    width: 70%;
  }
}
.employee-page .page-employee .mega-wrapper .wrapper .right .questions-answers {
  padding-left: 4.5rem;
}
.employee-page .page-employee .mega-wrapper .wrapper .right .questions-answers h4,
.employee-page .page-employee .mega-wrapper .wrapper .right .questions-answers h4 + p,
.employee-page .page-employee .mega-wrapper .wrapper .right .questions-answers h4 + ul {
  position: relative;
  letter-spacing: 2px;
  font-family: "YuGothic", "Poppins", Arial;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 2px;
  color: #2c3045;
  margin-top: 2rem;
}
.employee-page .page-employee .mega-wrapper .wrapper .right .questions-answers h4::before,
.employee-page .page-employee .mega-wrapper .wrapper .right .questions-answers h4 + p::before,
.employee-page .page-employee .mega-wrapper .wrapper .right .questions-answers h4 + ul::before {
  content: "A";
  background: #ff5600;
  position: absolute;
  border-radius: 2px;
  color: #ffffff;
  font-family: "Roboto", "YuGothic";
  font-weight: 500;
  font-size: 21px;
  text-align: center;
  left: 0;
  top: 0;
  transform: translate(calc(-100% - 1.5rem), -3px);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.employee-page .page-employee .mega-wrapper .wrapper .right .questions-answers h4 {
  margin-bottom: 10px;
  margin-top: 7rem;
  font-family: "YuGothic", Courier, monospace;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #2c3045;
}
.employee-page .page-employee .mega-wrapper .wrapper .right .questions-answers h4::before {
  content: "Q";
  background: #2c3045;
}
.employee-page .page-employee .mega-wrapper .wrapper .right .questions-answers p {
  font-family: "YuGothic", "Poppins", Arial;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 2px;
  color: #2c3045;
}
.employee-page .page-employee .mega-wrapper .wrapper .right .questions-answers li {
  font-family: "YuGothic", "Poppins", Arial;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 2px;
  color: #2c3045;
  list-style-position: inside;
}
.employee-page .page-employee .mega-wrapper .other-members {
  margin-bottom: 6rem;
}
.employee-page .page-employee .mega-wrapper .other-members .jp-members-text,
.employee-page .page-employee .mega-wrapper .other-members .en-members-text {
  font-style: normal;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
}
.employee-page .page-employee .mega-wrapper .other-members .jp-members-text {
  font-family: "YuGothic", Courier, monospace;
  font-size: 2rem;
  color: #ff5500;
}
.employee-page .page-employee .mega-wrapper .other-members .en-members-text {
  font-family: "Roboto", "YuGothic";
  font-size: 4.8rem;
  color: #2c3045;
  margin-top: 1rem;
}
.employee-page .page-employee .feature-articles {
  display: flex;
  flex-direction: row;
  position: relative;
  overflow-x: hidden;
  margin-bottom: 8rem;
  --move-initial: calc(0%);
  --move-final: calc(-50%);
}
.employee-page .page-employee .feature-articles .marquee-inner {
  display: flex;
  width: fit-content;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 120s linear infinite;
}
.employee-page .page-employee .feature-articles .feature-article-box {
  display: flex;
  height: auto;
  width: 17.5rem;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: all 0.3s;
  position: relative;
}
.employee-page .page-employee .feature-articles .feature-article-box .front-img {
  display: block;
}
.employee-page .page-employee .feature-articles .feature-article-box .hover-img {
  display: none;
}
.employee-page .page-employee .feature-articles .feature-article-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  transition: all 0.3s;
  /* filter: blur(10px);  */
}
.employee-page .page-employee .feature-articles .feature-article-box .top-post-info {
  position: absolute;
  top: 1.5rem;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.employee-page .page-employee .feature-articles .feature-article-box .top-post-info h5 {
  color: var(--evolany-white);
  z-index: 99;
  text-align: center;
  padding-left: 3rem;
  padding-right: 3rem;
  font-size: 1.8rem;
  line-height: 2.6rem;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-family: var(--evolany-font-jp);
  font-style: normal;
  font-weight: bold;
  flex: 1;
}
.employee-page .page-employee .feature-articles .feature-article-box .top-post-info .top-post-tags {
  width: 19rem;
  height: 3.6rem;
  text-align: center;
  z-index: 99;
  text-overflow: ellipsis;
  overflow: hidden;
  color: var(--evolany-white);
}
.employee-page .page-employee .feature-articles .feature-article-box .top-post-info .top-post-tags span {
  color: var(--evolany-white);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 3.4rem;
  width: 19rem;
  white-space: nowrap;
}
.employee-page .page-employee .feature-articles .feature-article-box:hover .front-img {
  display: none;
}
.employee-page .page-employee .feature-articles .feature-article-box:hover .hover-img {
  display: block;
}
.employee-page .page-employee .feature-articles:hover .marquee-inner {
  animation-play-state: paused;
}

body[data-lang=en] {
  --lang-font-family: "Proxima Nova", Arial;
}

:root {
  --page-gutter: 16rem;
  --phase: 0;
  --lang-font-family: "YuGothic", "Poppins", "monospace", Helvetica, Arial, sans-serif;
  --titleFont: "AP-OTF-A1GothicStdN-Regular", "Proxima Nova";
  --boldness: 700;
  --lightness: 400;
  --lang-letter-spacing: 2px;
  --recruit-letter-spacing: 2px;
  --detail-button-letter-spacing: 1.2px;
}
@media only screen and (max-width: 1280px) {
  :root {
    --page-gutter: 6rem;
  }
}
@media only screen and (max-width: 740px) {
  :root {
    --page-gutter: 4rem;
  }
}
@media only screen and (max-width: 480px) {
  :root {
    --page-gutter: 2rem;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
  margin: 0;
  padding: 0;
}

html {
  font-family: "YuGothic", "Proxima Nova", "Poppins", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
html body {
  font-size: 1.6rem;
  overflow-x: hidden;
  width: 100vw;
}

.disabled {
  pointer-events: none;
}

input {
  outline: none;
}

a, a:link, a:visited {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

@media only screen and (max-width: 1000px) {
  [data-device][data-device=pc] {
    display: none !important;
  }
}
[data-device][data-device=mobile] {
  display: none;
}
@media only screen and (max-width: 1000px) {
  [data-device][data-device=mobile] {
    display: block;
  }
}

.logo {
  display: block;
  width: 11rem;
  height: 4.3rem;
  background: url(/images/evolany-logo-svg.svg) center/contain no-repeat;
  transform: translateY(-4%);
}

.hide {
  opacity: 0;
}

.inactive {
  display: none;
}

.detail-link {
  display: flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: var(--recruit-letter-spacing);
  font-weight: 700;
}
.detail-link::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.detail-link-mobile {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
}
.detail-link-mobile::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.link-mobile {
  display: flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: var(--lang-letter-spacing);
  font-weight: 700;
}
.link-mobile::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.detail-button {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  font-weight: --boldness;
  width: 26rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
.detail-button::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}

.contact_evolany {
  cursor: pointer;
}

.chatbot-mask {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  z-index: 10;
}
.chatbot-mask #simulator {
  position: absolute;
  z-index: 100;
  border: 0px;
  border-radius: 8px;
  inset: auto 16px 16px auto;
  width: 375px;
  height: 600px;
  right: 2rem;
  bottom: 2rem;
}
@media only screen and (max-width: 740px) {
  .chatbot-mask #simulator {
    position: unset;
    height: 100vh;
    width: 100vw;
    display: flex;
  }
}
.chatbot-mask .close-x {
  display: none;
  z-index: 100;
}
@media only screen and (max-width: 740px) {
  .chatbot-mask .close-x {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: white;
    width: 3.6rem;
    height: 3.6rem;
    top: 1rem;
    right: 4px;
    background: #FF5600;
  }
  .chatbot-mask .close-x::before, .chatbot-mask .close-x::after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 2.4rem;
    width: 2px;
    transition: width ease 0.3s;
    background-color: rgb(255, 255, 255);
  }
  .chatbot-mask .close-x::before {
    transform: rotate(45deg);
  }
  .chatbot-mask .close-x::after {
    transform: rotate(-45deg);
  }
}

.icon-fb, .icon-linkedin {
  width: 3.2rem;
  height: 3.2rem;
}

footer.contact {
  padding-left: 16rem;
  padding-right: 16rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #202438;
  color: white;
  display: grid;
  grid-template-areas: "logo navs snss" "copy copy copy";
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  justify-items: center;
  position: relative;
  font-family: "Poppins", sans-serif;
}
@media only screen and (max-width: 1000px) {
  footer.contact {
    padding: 2.5rem;
  }
}
footer.contact .fb-logo {
  width: 32px;
  height: 32px;
}
footer.contact .linkedin-logo {
  width: 32px;
  height: 32px;
}
footer.contact .logo {
  width: 14rem;
  height: 8rem;
  grid-area: logo;
  justify-self: flex-start;
}
@media only screen and (max-width: 1000px) {
  footer.contact .logo {
    margin: unset;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .logo {
    width: 8.7rem;
    height: 3.8rem;
  }
}
footer.contact .footer-links {
  justify-content: center;
  text-transform: capitalize;
  grid-area: navs;
  white-space: nowrap;
  display: flex;
  margin: 0 2rem 0 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links {
    flex-direction: column;
    margin: unset;
  }
}
footer.contact .footer-links > *:not(:first-child) {
  margin-left: 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links > *:not(:first-child) {
    margin-left: 0;
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links > *:first-child {
    margin-left: unset;
  }
}
@media only screen and (max-width: 740px) {
  footer.contact .footer-links > * {
    line-height: 1rem;
    margin-right: auto;
    font-size: 1.2rem;
    flex-direction: column;
  }
}
footer.contact .footer-sns-links {
  grid-area: snss;
  justify-self: flex-end;
  white-space: nowrap;
}
footer.contact .footer-sns-links [class|=icon] {
  font-size: 2.8rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links [class|=icon] {
    font-size: 2rem;
  }
}
footer.contact .footer-sns-links > * {
  vertical-align: middle;
}
footer.contact .footer-sns-links > *:not(:first-child) {
  margin-left: 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links > *:not(:first-child) {
    margin-left: 1.2rem;
  }
}
footer.contact .copyrights {
  grid-area: copy;
  text-align: center;
  font-size: 0.8em;
  opacity: 0.6;
  text-align: center;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 740px) {
  footer.contact .copyrights {
    font-size: 0.5em;
    margin-top: 1rem;
  }
}
footer.contact #privacy-logo {
  width: 8rem;
  margin-bottom: 2rem;
  filter: saturate(0) brightness(100);
}
@media only screen and (max-width: 1000px) {
  footer.contact #privacy-logo {
    width: 6rem;
    margin-bottom: unset;
  }
}
footer.contact .go-top {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF5600;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
}
footer.contact a.footbutton {
  position: relative;
}
footer.contact a.footbutton::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #FF5600;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
footer.contact a.footbutton:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
@media only screen and (max-width: 1000px) {
  footer.contact {
    grid-template-areas: "navs snss" "logo copy";
    grid-template-columns: max-content 1fr;
  }
  footer.contact .logo,
footer.contact .footer-links {
    justify-self: flex-start;
    margin-bottom: 1rem;
  }
  footer.contact .copyrights {
    transform: translateY(0.8em);
  }
  footer.contact .footer-sns-links,
footer.contact .copyrights {
    justify-self: flex-end;
  }
  footer.contact .footer-sns-links {
    align-self: flex-end;
    transform: translateY(4rem);
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1000px) {
  footer.contact .footer-sns-links {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links [class|=icon] {
    display: inline-block;
    transform: translateY(-1rem);
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links > * {
    vertical-align: bottom;
  }
}

header.nav {
  position: fixed;
  z-index: 7;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 4rem 2.4rem 4rem;
  color: white;
  letter-spacing: 2px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 740px) {
  header.nav {
    flex-shrink: 0;
    height: 7rem;
    padding: 1rem 2rem 1rem 2rem;
  }
}
header.nav .logo {
  flex-shrink: 0;
  width: 13.7rem;
  height: 6.1rem;
  z-index: -10;
}
@media only screen and (max-width: 740px) {
  header.nav .logo {
    width: 12rem;
    height: 6rem;
  }
}
header.nav .logo::after {
  content: "we're hiring!";
  color: #FF5600;
  position: absolute;
  font-family: "ProximaNova-Bold";
  left: 14rem;
  top: 2rem;
  width: fit-content;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.1px;
  pointer-events: none;
}
@media only screen and (max-width: 740px) {
  header.nav .logo::after {
    left: 12.5rem;
    top: 2rem;
  }
}
header.nav a.navbutton::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scale(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ff5600;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
header.nav a.navbutton:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header.nav.inverted {
  color: #2c3045;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px);
}
header.nav.inverted .logo {
  background-image: url(/images/evolany-logo-inverted.svg);
}
header.nav.sticky {
  position: sticky;
  top: 0;
}
header.nav nav {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
header.nav nav a {
  color: inherit;
  white-space: nowrap;
  position: relative;
  line-height: initial;
  height: initial;
}
header.nav nav a.on::before {
  content: "";
  display: block;
  height: 2px;
  background-color: #FF5600;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}
header.nav nav > a:not(:first-child) {
  margin-left: 4rem;
}
header.nav nav [class|=icon] {
  color: #FF5600;
  font-size: 2rem;
}
header.nav nav .i18n {
  display: flex;
  align-items: center;
  margin-left: 6rem;
}
header.nav nav .i18n a:not(:first-child) {
  margin-left: 2rem;
}
header.nav .hamburger-menus {
  color: #FF5600;
}
header.nav .hamburger-menus a {
  font-size: 3rem;
}

[data-lang=jp] .sidemenu .side-menu-lang [data-lang=jp] {
  position: relative;
}
[data-lang=jp] .sidemenu .side-menu-lang [data-lang=jp]::before {
  content: "";
  display: block;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}

[data-lang=en] .sidemenu .side-menu-lang [data-lang=en] {
  position: relative;
}
[data-lang=en] .sidemenu .side-menu-lang [data-lang=en]::before {
  content: "";
  display: block;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}

.sidemenu {
  position: fixed;
  background-color: #FF5600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 8;
  overflow: hidden;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  transition: 0.1s;
  top: 0;
  left: 0;
}
.sidemenu .side-menu-lang {
  display: flex;
  align-items: center;
  margin-left: 3rem;
  color: white;
  text-transform: uppercase;
  position: fixed;
  font-size: 2rem;
  font-weight: bold;
  top: 2rem;
  left: 2px;
  letter-spacing: 2px;
}
.sidemenu .side-menu-lang a:not(:first-child) {
  margin-left: 2rem;
}
.sidemenu .full-nav-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin-left: 3rem;
  margin-bottom: 6.5rem;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-items {
    padding-top: 14rem;
  }
}
.sidemenu .full-nav-items .item {
  color: white;
  letter-spacing: 2px;
  line-height: 6rem;
  font-size: 2.2rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  font-weight: bold;
  text-transform: uppercase;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-items .item {
    font-weight: 500;
    line-height: 5rem;
  }
}
.sidemenu .full-nav-sns-links {
  display: flex;
  width: 100%;
  color: white;
  font-size: 3rem;
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-sns-links {
    padding-bottom: 5rem;
    font-size: 2.5rem;
  }
}
.sidemenu .full-nav-sns-links > a {
  margin-left: 2.4rem;
  color: white;
}
.sidemenu .full-nav-sns-links > a:not(:last-child) {
  margin-left: 3rem;
}

.side-menu-on .sidemenu {
  transform: translateX(0);
}

.hamburger {
  position: fixed;
  display: block;
  width: 2.7rem;
  height: 2.7rem;
  cursor: pointer;
  z-index: 10;
  right: 2rem;
  top: 2rem;
}
.hamburger .bar, .hamburger::before, .hamburger::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ff5600;
  transition: transform 0.3s;
  z-index: 10;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
}
.hamburger::before {
  transform: translateY(-9px);
}
.hamburger::after {
  transform: translateY(9px);
}

.side-menu-on .hamburger .bar {
  opacity: 0;
}
.side-menu-on .hamburger::before {
  transform: rotate(-45deg);
  background-color: white;
}
.side-menu-on .hamburger::after {
  transform: rotate(45deg);
  background-color: white;
}

.mv-page {
  overflow: hidden;
}
.mv-page header.nav {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px);
  position: fixed;
  width: 100%;
  top: 0;
}
.mv-page header.nav .logo {
  display: block;
  width: 11rem;
  height: 4.3rem;
  background: url(/images/evolany-logo-inverted.svg) center/contain no-repeat;
  transform: translateY(-4%);
}
.mv-page header.nav .logo::after {
  font-size: 1.2rem;
  left: 11rem;
  top: 1.2rem;
}
.mv-page header.nav nav {
  color: #2c3045;
}
.mv-page .page-mission-value {
  overflow-x: hidden;
}
.mv-page .page-mission-value .main-wrapper {
  align-items: center;
  justify-content: center;
  color: black;
}
.mv-page .page-mission-value .main-wrapper .back {
  position: fixed;
  top: 55rem;
  left: 0;
  transform: translateY(-50%);
  background-color: #ff5600;
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .back {
    display: none;
  }
}
.mv-page .page-mission-value .main-wrapper .back::before {
  content: "";
  color: white;
  font-weight: bold;
  font-size: 2.3rem;
  -webkit-text-stroke: 1px;
  line-height: 2.3rem;
  width: 1.8rem;
  height: 2.2rem;
  background: url(/images/back-arrow.svg) center/contain;
}
.mv-page .page-mission-value .main-wrapper .banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.mv-page .page-mission-value .main-wrapper .banner .btm-mv-scrolltext {
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  font-family: "Roboto";
  font-size: 1.1rem;
  z-index: 4;
  bottom: 0rem;
  display: inline-block;
  transform: rotate(90deg);
  position: fixed;
  letter-spacing: 4px;
  transition: opacity 0.5s ease-in;
}
.mv-page .page-mission-value .main-wrapper .banner .btm-mv-scrolltext.hide {
  opacity: 0;
}
.mv-page .page-mission-value .main-wrapper .banner .banner-scrolling-line {
  width: 1px;
  height: 6rem;
  overflow: hidden;
  position: fixed;
  left: 50%;
  bottom: 0;
}
.mv-page .page-mission-value .main-wrapper .banner .btm-banner-scrolling-line {
  width: 1px;
  height: 6rem;
  overflow: hidden;
  position: fixed;
  left: 50%;
  bottom: -10rem;
}
.mv-page .page-mission-value .main-wrapper .banner .banner-scrolling-line:before, .mv-page .page-mission-value .main-wrapper .banner .btm-banner-scrolling-line:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 2px;
  height: 8rem;
  background-color: rgb(0, 0, 0);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-animation-name: scroll;
  animation-name: scroll;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.mv-page .page-mission-value .main-wrapper .banner .mv-scrollbar {
  position: absolute;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.mv-page .page-mission-value .main-wrapper .banner .mv-scrollbar.hide {
  opacity: 0;
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .banner .mv-scrollbar {
    display: none;
  }
}
.mv-page .page-mission-value .main-wrapper .banner .mv-scrollbar .mv-copyright-text {
  color: rgb(0, 0, 0);
  font-family: "Roboto";
  font-size: 1.1rem;
  z-index: 4;
  letter-spacing: 1px;
  bottom: 36rem;
  display: inline-block;
  transform: rotate(90deg);
  position: fixed;
  right: -4.8rem;
}
@keyframes scroll {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.mv-page .page-mission-value .main-wrapper .banner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-blend-mode: darken;
  transition: 3s;
  filter: brightness(0.6);
  transform-origin: top;
  background-attachment: fixed;
  height: 120%;
  transform: translate3D(0, calc(-10% * var(--phase)), 0);
}
.mv-page .page-mission-value .main-wrapper .banner > * {
  z-index: 1;
}
.mv-page .page-mission-value .main-wrapper .banner .banner-text {
  position: relative;
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #2C3045;
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .banner .banner-text {
    padding: 2rem;
  }
}
.mv-page .page-mission-value .main-wrapper .banner .banner-text:first-child {
  margin-bottom: 6rem;
}
.mv-page .page-mission-value .main-wrapper .banner .banner-text .eng-text {
  text-align: center;
  font-size: 1.5rem;
  font-family: "Poppins";
  font-weight: bold;
  letter-spacing: 2px;
}
.mv-page .page-mission-value .main-wrapper .banner .banner-text .eng-text.top {
  font-size: 1.4rem;
}
.mv-page .page-mission-value .main-wrapper .banner .banner-text .banner-title-mb {
  font-family: var(--lang-font-family);
  font-size: 6.8vmin;
  text-align: center;
  margin: 2rem;
  color: #2C3045;
  display: none;
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .banner .banner-text .banner-title-mb {
    display: block;
  }
}
.mv-page .page-mission-value .main-wrapper .banner .banner-text .banner-title {
  font-family: var(--titleFont);
  font-size: 6.8vmin;
  text-align: center;
  margin: 2rem;
  color: #2C3045;
}
.mv-page .page-mission-value .main-wrapper .banner .banner-text .banner-statement {
  width: 30%;
  letter-spacing: 2px;
  font-size: 1.4rem;
  line-height: 4rem;
  text-align: center;
  margin-bottom: 8rem;
  font-family: var(--titleFont);
  transition: ease-in-out 0.5s;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .banner .banner-text .banner-statement {
    width: 80%;
  }
  .mv-page .page-mission-value .main-wrapper .banner .banner-text .banner-statement .rwd-break {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .mv-page .page-mission-value .main-wrapper .banner .banner-text .banner-statement {
    font-size: 1.2rem;
    line-height: 2.8rem;
  }
}
.mv-page .page-mission-value .main-wrapper .banner .banner-text .top-mv-scrolltext {
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  font-family: "Roboto";
  font-size: 1.1rem;
  z-index: 4;
  bottom: 10rem;
  display: inline-block;
  transform: rotate(90deg);
  position: fixed;
  letter-spacing: 4px;
  transition: opacity 0.5s ease;
}
.mv-page .page-mission-value .main-wrapper .banner .banner-text .top-mv-scrolltext.hide {
  opacity: 0;
}
.mv-page .page-mission-value .main-wrapper .banner .banner-text .banner-main {
  transform: translateY(calc(-50vw * var(--phase)));
}
.mv-page .page-mission-value .main-wrapper .banner .banner-text strong {
  color: #FF5600;
}
.mv-page .page-mission-value .main-wrapper .sections > section {
  overflow-x: hidden;
  height: 90vh;
  position: relative;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: 100%;
  background-repeat: no-repeat;
}
.mv-page .page-mission-value .main-wrapper .sections > section:not(:first-child) {
  margin-top: 4.2rem;
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .sections > section:not(:first-child) {
    margin-top: 3rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections > section .eng-title, .mv-page .page-mission-value .main-wrapper .sections > section p {
  letter-spacing: 2px;
  color: #2C3045;
  margin-bottom: 2rem;
}
.mv-page .page-mission-value .main-wrapper .sections > section .eng-title {
  font-family: "Poppins";
  font-weight: 600;
  text-transform: capitalize;
}
.mv-page .page-mission-value .main-wrapper .sections > section .eng-title.grow {
  font-size: 3.4rem;
}
@media only screen and (max-width: 480px) {
  .mv-page .page-mission-value .main-wrapper .sections > section {
    font-size: 1rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections > section .eng-text {
  text-align: center;
  font-size: 1.4rem;
  font-family: "ProximaNova-Bold" !important;
}
.mv-page .page-mission-value .main-wrapper .sections > section p {
  font-family: "YuGothic";
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .sections > section p {
    font-size: 1.2rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections > section .back-img {
  z-index: -1;
  position: absolute;
  max-width: 60%;
}
.mv-page .page-mission-value .main-wrapper .sections > section h2, .mv-page .page-mission-value .main-wrapper .sections > section h1, .mv-page .page-mission-value .main-wrapper .sections > section h3 {
  color: #2C3045;
}
.mv-page .page-mission-value .main-wrapper .sections span {
  color: #FF5600;
}
.mv-page .page-mission-value .main-wrapper .sections .overall-section {
  background-image: url(/webroot/images/overall-main.jpg);
  background-position: -30% 50%;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .overall-section {
    height: 70vh;
    background-position: 0 0;
    margin-bottom: 2rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .overall-section .overall-content {
  background-color: white;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  height: 80%;
  position: absolute;
  align-items: center;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .overall-section .overall-content {
    padding: 2rem;
    justify-content: flex-end;
    align-items: flex-start;
    width: 80%;
    height: 74%;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .overall-section .overall-content .overall-content-text {
  position: absolute;
  max-width: 60%;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .overall-section .overall-content .overall-content-text {
    top: 4rem;
    margin-left: 1rem;
    max-width: 100%;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .overall-section .overall-content .overall-content-text .content-title {
  max-width: 80%;
  font-size: 5.8vmin;
}
.mv-page .page-mission-value .main-wrapper .sections .overall-section .overall-content .overall-content-text .content {
  max-width: 80%;
  line-height: 3.4rem;
  font-size: 1.4rem;
  font-family: var(--lang-font-family);
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .sections .overall-section .overall-content .overall-content-text .content {
    font-size: 1.2rem;
    line-height: 2.4rem;
    max-width: 90%;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .overall-section .overall-content .back-img {
  left: 8rem;
  top: 30%;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .overall-section .overall-content .back-img {
    left: 2rem;
    top: 3rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .society-section {
  background-image: url(/webroot/images/yosuke-min.jpg);
  align-items: flex-end;
  background-position: 100% 80%;
  margin-left: 12rem;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .society-section {
    height: 70vh;
    background-position: 0 0;
    margin: unset;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .society-section .society-content {
  background-color: white;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin-right: 9.5rem;
  height: 80%;
  position: relative;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .society-section .society-content {
    width: 70%;
    height: 74%;
    margin-right: 2rem;
    padding: 2rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .society-section .society-content .society-content-text {
  padding-left: 20%;
  position: absolute;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .society-section .society-content .society-content-text {
    top: 2rem;
    max-width: unset;
    margin-left: 2rem;
    padding-top: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .sections .society-section .society-content .society-content-text {
    padding-left: unset;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .society-section .society-content .society-content-text .content-title {
  width: 100%;
  font-size: 6.8vmin;
}
.mv-page .page-mission-value .main-wrapper .sections .society-section .society-content .society-content-text .content {
  max-width: 70%;
  line-height: 3.4rem;
  padding-right: 2rem;
  font-size: 1.4rem;
  font-family: var(--lang-font-family);
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .society-section .society-content .society-content-text .content {
    max-width: 90%;
    line-height: 2.4rem;
  }
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .sections .society-section .society-content .society-content-text .content {
    max-width: 90%;
    line-height: 2.4rem;
    font-size: 1.2rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .society-section .society-content .back-img {
  z-index: -1;
  position: absolute;
  left: 6rem;
  top: 30%;
  width: 50vmin;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .society-section .society-content .back-img {
    top: 4rem;
  }
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .sections .society-section .society-content .back-img {
    top: 10%;
    left: unset;
  }
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .business-section {
    height: 70vh;
    margin-left: unset;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .business-section .business-img-wrapper {
  background-image: url(/webroot/images/business-min.jpg);
  position: relative;
  margin-left: 35rem;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .business-section .business-img-wrapper {
    height: 70vh;
    background-position: 0 0;
    background-size: 100%;
    margin: unset;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .business-section .business-img-wrapper .business-content {
  background-color: white;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 28%;
  height: 70%;
  position: relative;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .business-section .business-img-wrapper .business-content {
    width: 70%;
    height: 50%;
    margin-right: 2rem;
    padding: 2rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .business-section .business-img-wrapper .business-content .business-content-text {
  position: absolute;
  overflow-x: hidden;
  left: -20rem;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .business-section .business-img-wrapper .business-content .business-content-text {
    left: unset;
    width: 100%;
    padding-top: 2rem;
    padding-left: 1rem;
    top: 3rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .business-section .business-img-wrapper .business-content .business-content-text .content-title {
  font-size: 6.8vmin;
}
.mv-page .page-mission-value .main-wrapper .sections .business-section .business-img-wrapper .business-content .business-content-text .content {
  width: 80%;
  line-height: 3.4rem;
  font-size: 1.4rem;
  font-family: var(--lang-font-family);
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .sections .business-section .business-img-wrapper .business-content .business-content-text .content {
    line-height: 2.4rem;
    font-size: 1.2rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .business-section .business-img-wrapper .business-content .back-img {
  z-index: -1;
  position: absolute;
  overflow: hidden;
  left: -20rem;
  top: 30%;
  max-width: 100%;
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .sections .business-section .business-img-wrapper .business-content .back-img {
    left: unset;
    top: 3rem;
    max-width: 70%;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .people-section {
  margin-top: 4rem;
  background-image: url(/webroot/images/yosukekazu-min.jpg);
  align-items: flex-end;
  background-position: 60% 50%;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .people-section {
    height: 70vh;
    background-position: 0 0;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .people-section .people-content {
  background-color: white;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 40%;
  height: 70%;
  position: relative;
  padding-left: 10rem;
  padding-right: 10rem;
  margin-right: 10rem;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .people-section .people-content {
    width: 60%;
  }
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .people-section .people-content {
    margin-right: unset;
    padding-right: unset;
    width: 80%;
    padding-left: 2.8rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .people-section .people-content .people-content-text {
  position: absolute;
  overflow-x: hidden;
  max-width: 80%;
  top: 8rem;
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .sections .people-section .people-content .people-content-text {
    margin: unset;
    top: 2rem;
    padding-top: 2rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .people-section .people-content .people-content-text .content-title {
  width: 100%;
  font-size: 6.2vmin;
}
.mv-page .page-mission-value .main-wrapper .sections .people-section .people-content .people-content-text .content {
  width: 70%;
  line-height: 3.4rem;
  font-size: 1.4rem;
  font-family: var(--lang-font-family);
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .sections .people-section .people-content .people-content-text .content {
    width: 100%;
    line-height: 2.4rem;
    font-size: 1.2rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .people-section .people-content .back-img {
  z-index: -1;
  position: absolute;
  left: 10rem;
  top: 8rem;
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .sections .people-section .people-content .back-img {
    left: unset;
    top: 3rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .contribution-section {
  margin-top: 4rem;
  background-image: url(/webroot/images/oneself-main.jpg);
  align-items: flex-start;
  background-position: 10% 50%;
  margin-right: 12rem;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .contribution-section {
    height: 70vh;
    background-position: 0 0;
    margin: unset;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .contribution-section .contribution-content {
  background-color: white;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  margin-left: 9.5rem;
  height: 80%;
  position: relative;
  padding-left: 7.5rem;
  padding-right: 6.5rem;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .contribution-section .contribution-content {
    background-color: white;
    z-index: 1;
    width: 80%;
    margin-left: 2rem;
    position: relative;
    padding: 2rem;
    justify-content: flex-start;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .contribution-section .contribution-content .contribution-content-text {
  position: absolute;
  max-width: 70%;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .contribution-section .contribution-content .contribution-content-text {
    max-width: 80%;
    padding: 2rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .contribution-section .contribution-content .contribution-content-text .content-title {
  width: 100%;
  font-size: 6.8vmin;
}
.mv-page .page-mission-value .main-wrapper .sections .contribution-section .contribution-content .contribution-content-text .content {
  line-height: 3.4rem;
  font-size: 1.4rem;
  font-family: var(--lang-font-family);
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .contribution-section .contribution-content .contribution-content-text .content {
    line-height: 2.4rem;
    font-size: 1.2rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .contribution-section .contribution-content .back-img {
  z-index: -1;
  position: absolute;
  left: 4rem;
  top: 30%;
  width: 60vmin;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .contribution-section .contribution-content .back-img {
    top: 3rem;
    left: 2rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .our-mission-section {
  height: fit-content;
  align-items: center;
  padding-top: 16rem;
  padding-bottom: 16rem;
  justify-content: flex-start;
}
@media only screen and (max-width: 800px) {
  .mv-page .page-mission-value .main-wrapper .sections .our-mission-section {
    padding-top: unset;
    margin-bottom: 12rem;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .our-mission-section .mobile-mission-tree {
  display: none;
  width: 80%;
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .sections .our-mission-section .mobile-mission-tree {
    display: block;
  }
  .mv-page .page-mission-value .main-wrapper .sections .our-mission-section .mission-tree {
    display: none;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .our-mission-section .mission-tree {
  width: 100%;
  position: relative;
  z-index: -1;
}
.mv-page .page-mission-value .main-wrapper .sections .our-mission-section .title-section {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 740px) {
  .mv-page .page-mission-value .main-wrapper .sections .our-mission-section .title-section {
    width: 80%;
    text-justify: auto;
    display: none;
  }
  .mv-page .page-mission-value .main-wrapper .sections .our-mission-section .title-section .mb-title {
    display: block;
    font-size: 3rem;
  }
  .mv-page .page-mission-value .main-wrapper .sections .our-mission-section .title-section .pc-title {
    display: none;
  }
}
.mv-page .page-mission-value .main-wrapper .sections .our-mission-section .title-section .block-statement {
  background-color: #FF5600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 3.4vmin;
  font-family: "Proxima-Nova";
  font-weight: 600;
  padding: 1rem;
  margin-bottom: 1.7rem;
}
.mv-page .page-mission-value .main-wrapper .sections .our-mission-section .title-section h3 {
  font-size: 4.2vmin;
}
.mv-page .page-mission-value .main-wrapper .sections .our-mission-section .title-section p {
  font-family: "ProximaNova-Bold";
}

[data-lang=en] .eng-title {
  font-size: 4vmin !important;
}
[data-lang=en] .content-title {
  display: none;
}
[data-lang=en] .eng-text.bottom {
  display: none;
}
[data-lang=en] .banner-title {
  width: 80%;
  white-space: pre-line;
}
@media only screen and (max-width: 740px) {
  [data-lang=en] .banner-title {
    white-space: unset;
  }
}

[data-lang=jp] .rwd-break {
  display: none;
}
@media only screen and (max-width: 740px) {
  [data-lang=jp] .rwd-break {
    display: block;
  }
}

@font-face {
  font-family: "AP-OTF-A1GothicStdN-Regular";
  src: url("/webroot/fonts/AP-OTF-A1GothicStdN-Regular-sub.otf");
}
@font-face {
  font-family: "Proxima Nova";
  font-weight: normal;
  font-style: normal;
  src: url("/webroot/fonts/ProximaNova-Regular.woff2") format("woff2"), url("/webroot/fonts/Proxima Nova Regular.woff") format("woff");
  font-display: swap; /* Read next point */
  unicode-range: U+000-5FF; /* Download only latin glyphs */
}
@font-face {
  font-family: "ProximaNova-Bold";
  font-weight: 700;
  font-style: normal;
  src: url("/webroot/fonts/ProximaNova-Bold.woff2") format("woff2"), url("/webroot/fonts/ProximaNova-Bold.woff") format("woff");
  font-display: swap; /* Read next point */
  unicode-range: U+000-5FF; /* Download only latin glyphs */
}
@font-face {
  font-family: "AP-OTF-A1GothicStdN-Medium";
  font-weight: normal;
  font-style: normal;
  src: url("/webroot/fonts/AP-OTF-A1GothicStdN-Medium.woff2") format("woff2"), url("/webroot/fonts/AP-OTF-A1GothicStdN-Regular.woff2") format("woff2");
  font-display: swap; /* Read next point */
  unicode-range: U+000-5FF; /* Download only latin glyphs */
}
/* poppins-regular - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("/webroot/fonts/poppins-v15-latin-regular.eot"); /* IE9 Compat Modes */
  src: local(""), url("/webroot/fonts/poppins-v15-latin-regular.eot?#iefix") format("embedded-opentype"), url("/webroot/fonts/poppins-v15-latin-regular.woff2") format("woff2"), url("/webroot/fonts/poppins-v15-latin-regular.woff") format("woff"), url("/webroot/fonts/poppins-v15-latin-regular.ttf") format("truetype"), url("/webroot/fonts/poppins-v15-latin-regular.svg#Poppins") format("svg"); /* Legacy iOS */
}
/* poppins-700 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("/webroot/fonts/poppins-v15-latin-700.eot"); /* IE9 Compat Modes */
  src: local(""), url("/webroot/fonts/poppins-v15-latin-700.eot?#iefix") format("embedded-opentype"), url("/webroot/fonts/poppins-v15-latin-700.woff2") format("woff2"), url("/webroot/fonts/poppins-v15-latin-700.woff") format("woff"), url("/webroot/fonts/poppins-v15-latin-700.ttf") format("truetype"), url("/webroot/fonts/poppins-v15-latin-700.svg#Poppins") format("svg"); /* Legacy iOS */
}
.blog-page {
  overflow: hidden;
  color: #222222;
}
@keyframes shaking-anime {
  0% {
    transform: translateX(-10%);
  }
  10% {
    transform: translateX(9%);
  }
  20% {
    transform: translateX(-8%);
  }
  30% {
    transform: translateX(7%);
  }
  40% {
    transform: translateX(-6%);
  }
  50% {
    transform: translateX(5%);
  }
  60% {
    transform: translateX(-4%);
  }
  70% {
    transform: translateX(3%);
  }
  80% {
    transform: translateX(-2%);
  }
  90% {
    transform: translateX(1%);
  }
  100% {
    transform: translateX(0%);
  }
}
.blog-page .shaking {
  animation: shaking-anime 0.5s;
}
.blog-page p {
  text-align: left !important;
  margin: 0;
}
.blog-page h1 {
  font-size: 2.4rem;
}
.blog-page h3 {
  margin-bottom: 1rem;
}
.blog-page header.nav {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px);
  top: 0;
}
.blog-page header.nav .logo {
  display: block;
  width: 11rem;
  height: 4.3rem;
  background: url(/images/evolany-logo-inverted.svg) center/contain no-repeat;
  transform: translateY(-4%);
}
.blog-page header.nav .logo::after {
  font-size: 1.2rem;
  left: 11rem;
  top: 1.2rem;
}
.blog-page header.nav nav {
  color: #2c3045;
}
.blog-page .blog-page-container {
  width: 100%;
  margin-top: 10rem;
  display: flex;
  justify-content: center;
  margin-bottom: 26rem;
}
@media only screen and (max-width: 740px) {
  .blog-page .blog-page-container {
    margin-top: 2rem;
    padding-top: 6rem;
    margin-bottom: 8rem;
  }
}
.blog-page .blog-page-container .back {
  position: fixed;
  top: 55rem;
  left: 0;
  transform: translateY(-50%);
  background-color: #ff5600;
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 740px) {
  .blog-page .blog-page-container .back {
    display: none;
  }
}
.blog-page .blog-page-container .back::before {
  content: "";
  color: white;
  font-weight: bold;
  font-size: 2.3rem;
  -webkit-text-stroke: 1px;
  line-height: 2.3rem;
  width: 1.8rem;
  height: 2.2rem;
  background: url(/images/back-arrow.svg) center/contain;
}
.blog-page .blog-page-container .blog {
  display: flex;
  width: 50%;
  justify-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1000px) {
  .blog-page .blog-page-container .blog {
    width: 80%;
  }
}
@media only screen and (max-width: 740px) {
  .blog-page .blog-page-container .blog {
    width: 100%;
  }
}
.blog-page .blog-page-container .blog .blog-img {
  margin-bottom: 2.5rem;
  max-height: 35rem;
  object-fit: cover;
}
@media only screen and (max-width: 740px) {
  .blog-page .blog-page-container .blog .blog-img {
    height: unset;
  }
}
.blog-page .blog-page-container .blog .blog-title {
  font-weight: 700;
  font-size: 3.2rem;
  color: #2C3045;
}
@media only screen and (max-width: 740px) {
  .blog-page .blog-page-container .blog .blog-title {
    margin-left: 2rem;
  }
}
.blog-page .blog-page-container .blog .blog-content {
  margin-bottom: 8rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 740px) {
  .blog-page .blog-page-container .blog .blog-content {
    margin: 2rem;
  }
}
.blog-page .blog-page-container .blog .blog-content .blog-auth {
  margin-top: 2.5rem;
  display: flex;
  color: #888888;
  margin-bottom: 3rem;
}
.blog-page .blog-page-container .blog .blog-content .blog-auth .auth-name {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 1.2rem;
}
.blog-page .blog-page-container .blog .blog-content .blog-auth img {
  border-radius: 50%;
  width: 2.8rem;
  height: 2.8rem;
  margin-right: 0.8rem;
}
.blog-page .blog-page-container .blog .blog-content .sec-title {
  font-size: 2.8rem;
  font-weight: 600;
}
.blog-page .blog-page-container .blog .blog-content .mini-title {
  font-size: 2.6rem;
  font-weight: 600;
}
.blog-page .blog-page-container .blog .blog-content .blog-paragraph a {
  color: blue;
}
.blog-page .blog-page-container .blog .blog-content .blog-paragraph a:hover {
  text-decoration: underline;
}
.blog-page .blog-page-container .blog .blog-content .blog-paragraph h4 {
  margin-bottom: 1rem;
  font-family: "YuGothic", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 3rem;
  color: #2c3045;
}
.blog-page .blog-page-container .blog .blog-content .blog-paragraph p {
  font-family: "YuGothic", sans-serif;
  color: #2C3045;
  letter-spacing: 0.8px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 3.2rem;
}
.blog-page .blog-page-container .blog .blog-content .blog-paragraph p:not(:last-child) {
  margin-bottom: 2rem;
}
.blog-page .blog-page-container .blog .blog-content .blog-paragraph li {
  font-family: "YuGothic", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 2px;
  color: #2c3045;
  list-style-position: inside;
}
.blog-page .blog-page-container .blog .blog-content .blog-paragraph img {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.blog-page .blog-page-container .blog .contact-area {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  width: 100%;
}
.blog-page .blog-page-container .blog .contact-area > * {
  flex: 1 0 40%;
  padding: 2rem;
  background: linear-gradient(rgba(32, 36, 56, 0.8), rgba(32, 36, 56, 0.8)), url(/images/contact-min.jpg) top/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 12rem;
  position: relative;
  overflow: hidden;
}
.blog-page .blog-page-container .blog .contact-area > *::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #2c3045;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.blog-page .blog-page-container .blog .contact-area > *:hover::before {
  opacity: 1;
}
.blog-page .blog-page-container .blog .contact-area > * .texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  z-index: 1;
}
.blog-page .blog-page-container .blog .contact-area > * .texts h2 {
  color: white;
  font-size: 5.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Poppins", sans-serif;
}
@media only screen and (max-width: 740px) {
  .blog-page .blog-page-container .blog .contact-area > * .texts h2 {
    font-size: 3.8rem;
  }
}
.blog-page .blog-page-container .blog .contact-area > * .texts p {
  padding-top: 1rem;
  color: white;
  font-family: var(--lang-font-family);
}
.blog-page .blog-page-container .blog .contact-area > *::after {
  content: "";
  display: block;
  position: absolute;
  width: 6rem;
  height: 4rem;
  right: 2rem;
}
.blog-page .blog-page-container .blog .contact-area .contact {
  padding-left: 5.9rem;
}
.blog-page .blog-page-container .blog .contact-area .contact p {
  padding-top: 1rem;
  color: white;
  white-space: pre-line;
  width: 70%;
}
@media only screen and (max-width: 480px) {
  .blog-page .blog-page-container .blog .contact-area .contact {
    font-size: 1rem;
    margin: 2rem;
    padding: 2rem;
  }
}
.blog-page .blog-page-container .blog .contact-area .contact::after {
  background: url(/images/arrow-circle-outline.svg) center/contain no-repeat;
}
.blog-page .blog-page-container .blog .contact-area .contact:hover::after {
  background: url(/images/arrow-circle-white.svg) center/contain no-repeat;
}
.blog-page .blog-page-container .blog .contact-area .demo:hover::after {
  background: url(/images/arrow-circle-white.svg) center/contain no-repeat;
}
.blog-page .blog-page-container .lg-photo {
  display: flex;
  justify-content: center;
}
.blog-page .blog-page-container .lg-photo img {
  height: 60rem;
}
.blog-page .blog-page-container .photo-group {
  display: grid;
  grid-template-columns: 50% 50%;
  margin: 3rem 0 3rem 0;
  overflow: hidden;
  grid-gap: 1rem;
}
.blog-page .blog-page-container .photo-group.bots {
  padding: 6rem;
}
.blog-page .blog-page-container .photo-group.bots img {
  height: unset;
}
.blog-page .blog-page-container .photo-group.description-group .description {
  display: flex;
  align-items: center;
  padding: 2rem;
}
.blog-page .blog-page-container .photo-group img {
  object-fit: cover;
  height: 20rem;
  width: 100%;
  margin-top: unset !important;
  margin-bottom: unset !important;
  object-position: 20% 20%;
}
.blog-page .blog-page-container .photo-group .tree-img {
  height: 70vh;
  object-position: 20% 50%;
  width: 100%;
}

body[data-lang=en] {
  --lang-font-family: "Proxima Nova", Arial;
}

:root {
  --page-gutter: 16rem;
  --phase: 0;
  --lang-font-family: "YuGothic", "Poppins", "monospace", Helvetica, Arial, sans-serif;
  --titleFont: "AP-OTF-A1GothicStdN-Regular", "Proxima Nova";
  --boldness: 700;
  --lightness: 400;
  --lang-letter-spacing: 2px;
  --recruit-letter-spacing: 2px;
  --detail-button-letter-spacing: 1.2px;
}
@media only screen and (max-width: 1280px) {
  :root {
    --page-gutter: 6rem;
  }
}
@media only screen and (max-width: 740px) {
  :root {
    --page-gutter: 4rem;
  }
}
@media only screen and (max-width: 480px) {
  :root {
    --page-gutter: 2rem;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
  margin: 0;
  padding: 0;
}

html {
  font-family: "YuGothic", "Proxima Nova", "Poppins", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
html body {
  font-size: 1.6rem;
  overflow-x: hidden;
  width: 100vw;
}

.disabled {
  pointer-events: none;
}

input {
  outline: none;
}

a, a:link, a:visited {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

@media only screen and (max-width: 1000px) {
  [data-device][data-device=pc] {
    display: none !important;
  }
}
[data-device][data-device=mobile] {
  display: none;
}
@media only screen and (max-width: 1000px) {
  [data-device][data-device=mobile] {
    display: block;
  }
}

.logo {
  display: block;
  width: 11rem;
  height: 4.3rem;
  background: url(/images/evolany-logo-svg.svg) center/contain no-repeat;
  transform: translateY(-4%);
}

.hide {
  opacity: 0;
}

.inactive {
  display: none;
}

.detail-link {
  display: flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: var(--recruit-letter-spacing);
  font-weight: 700;
}
.detail-link::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.detail-link-mobile {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
}
.detail-link-mobile::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.link-mobile {
  display: flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: var(--lang-letter-spacing);
  font-weight: 700;
}
.link-mobile::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.detail-button {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  font-weight: --boldness;
  width: 26rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
.detail-button::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}

.contact_evolany {
  cursor: pointer;
}

.chatbot-mask {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  z-index: 10;
}
.chatbot-mask #simulator {
  position: absolute;
  z-index: 100;
  border: 0px;
  border-radius: 8px;
  inset: auto 16px 16px auto;
  width: 375px;
  height: 600px;
  right: 2rem;
  bottom: 2rem;
}
@media only screen and (max-width: 740px) {
  .chatbot-mask #simulator {
    position: unset;
    height: 100vh;
    width: 100vw;
    display: flex;
  }
}
.chatbot-mask .close-x {
  display: none;
  z-index: 100;
}
@media only screen and (max-width: 740px) {
  .chatbot-mask .close-x {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: white;
    width: 3.6rem;
    height: 3.6rem;
    top: 1rem;
    right: 4px;
    background: #FF5600;
  }
  .chatbot-mask .close-x::before, .chatbot-mask .close-x::after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 2.4rem;
    width: 2px;
    transition: width ease 0.3s;
    background-color: rgb(255, 255, 255);
  }
  .chatbot-mask .close-x::before {
    transform: rotate(45deg);
  }
  .chatbot-mask .close-x::after {
    transform: rotate(-45deg);
  }
}

.icon-fb, .icon-linkedin {
  width: 3.2rem;
  height: 3.2rem;
}

body[data-lang=en] {
  --lang-font-family: "Proxima Nova", Arial;
}

:root {
  --page-gutter: 16rem;
  --phase: 0;
  --lang-font-family: "YuGothic", "Poppins", "monospace", Helvetica, Arial, sans-serif;
  --titleFont: "AP-OTF-A1GothicStdN-Regular", "Proxima Nova";
  --boldness: 700;
  --lightness: 400;
  --lang-letter-spacing: 2px;
  --recruit-letter-spacing: 2px;
  --detail-button-letter-spacing: 1.2px;
}
@media only screen and (max-width: 1280px) {
  :root {
    --page-gutter: 6rem;
  }
}
@media only screen and (max-width: 740px) {
  :root {
    --page-gutter: 4rem;
  }
}
@media only screen and (max-width: 480px) {
  :root {
    --page-gutter: 2rem;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
  margin: 0;
  padding: 0;
}

html {
  font-family: "YuGothic", "Proxima Nova", "Poppins", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
html body {
  font-size: 1.6rem;
  overflow-x: hidden;
  width: 100vw;
}

.disabled {
  pointer-events: none;
}

input {
  outline: none;
}

a, a:link, a:visited {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

@media only screen and (max-width: 1000px) {
  [data-device][data-device=pc] {
    display: none !important;
  }
}
[data-device][data-device=mobile] {
  display: none;
}
@media only screen and (max-width: 1000px) {
  [data-device][data-device=mobile] {
    display: block;
  }
}

.logo {
  display: block;
  width: 11rem;
  height: 4.3rem;
  background: url(/images/evolany-logo-svg.svg) center/contain no-repeat;
  transform: translateY(-4%);
}

.hide {
  opacity: 0;
}

.inactive {
  display: none;
}

.detail-link {
  display: flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: var(--recruit-letter-spacing);
  font-weight: 700;
}
.detail-link::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.detail-link-mobile {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
}
.detail-link-mobile::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.link-mobile {
  display: flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: var(--lang-letter-spacing);
  font-weight: 700;
}
.link-mobile::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.detail-button {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  font-weight: --boldness;
  width: 26rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
.detail-button::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}

.contact_evolany {
  cursor: pointer;
}

.chatbot-mask {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  z-index: 10;
}
.chatbot-mask #simulator {
  position: absolute;
  z-index: 100;
  border: 0px;
  border-radius: 8px;
  inset: auto 16px 16px auto;
  width: 375px;
  height: 600px;
  right: 2rem;
  bottom: 2rem;
}
@media only screen and (max-width: 740px) {
  .chatbot-mask #simulator {
    position: unset;
    height: 100vh;
    width: 100vw;
    display: flex;
  }
}
.chatbot-mask .close-x {
  display: none;
  z-index: 100;
}
@media only screen and (max-width: 740px) {
  .chatbot-mask .close-x {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: white;
    width: 3.6rem;
    height: 3.6rem;
    top: 1rem;
    right: 4px;
    background: #FF5600;
  }
  .chatbot-mask .close-x::before, .chatbot-mask .close-x::after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 2.4rem;
    width: 2px;
    transition: width ease 0.3s;
    background-color: rgb(255, 255, 255);
  }
  .chatbot-mask .close-x::before {
    transform: rotate(45deg);
  }
  .chatbot-mask .close-x::after {
    transform: rotate(-45deg);
  }
}

.icon-fb, .icon-linkedin {
  width: 3.2rem;
  height: 3.2rem;
}

footer.contact {
  padding-left: 16rem;
  padding-right: 16rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #202438;
  color: white;
  display: grid;
  grid-template-areas: "logo navs snss" "copy copy copy";
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  justify-items: center;
  position: relative;
  font-family: "Poppins", sans-serif;
}
@media only screen and (max-width: 1000px) {
  footer.contact {
    padding: 2.5rem;
  }
}
footer.contact .fb-logo {
  width: 32px;
  height: 32px;
}
footer.contact .linkedin-logo {
  width: 32px;
  height: 32px;
}
footer.contact .logo {
  width: 14rem;
  height: 8rem;
  grid-area: logo;
  justify-self: flex-start;
}
@media only screen and (max-width: 1000px) {
  footer.contact .logo {
    margin: unset;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .logo {
    width: 8.7rem;
    height: 3.8rem;
  }
}
footer.contact .footer-links {
  justify-content: center;
  text-transform: capitalize;
  grid-area: navs;
  white-space: nowrap;
  display: flex;
  margin: 0 2rem 0 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links {
    flex-direction: column;
    margin: unset;
  }
}
footer.contact .footer-links > *:not(:first-child) {
  margin-left: 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links > *:not(:first-child) {
    margin-left: 0;
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links > *:first-child {
    margin-left: unset;
  }
}
@media only screen and (max-width: 740px) {
  footer.contact .footer-links > * {
    line-height: 1rem;
    margin-right: auto;
    font-size: 1.2rem;
    flex-direction: column;
  }
}
footer.contact .footer-sns-links {
  grid-area: snss;
  justify-self: flex-end;
  white-space: nowrap;
}
footer.contact .footer-sns-links [class|=icon] {
  font-size: 2.8rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links [class|=icon] {
    font-size: 2rem;
  }
}
footer.contact .footer-sns-links > * {
  vertical-align: middle;
}
footer.contact .footer-sns-links > *:not(:first-child) {
  margin-left: 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links > *:not(:first-child) {
    margin-left: 1.2rem;
  }
}
footer.contact .copyrights {
  grid-area: copy;
  text-align: center;
  font-size: 0.8em;
  opacity: 0.6;
  text-align: center;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 740px) {
  footer.contact .copyrights {
    font-size: 0.5em;
    margin-top: 1rem;
  }
}
footer.contact #privacy-logo {
  width: 8rem;
  margin-bottom: 2rem;
  filter: saturate(0) brightness(100);
}
@media only screen and (max-width: 1000px) {
  footer.contact #privacy-logo {
    width: 6rem;
    margin-bottom: unset;
  }
}
footer.contact .go-top {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF5600;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
}
footer.contact a.footbutton {
  position: relative;
}
footer.contact a.footbutton::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #FF5600;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
footer.contact a.footbutton:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
@media only screen and (max-width: 1000px) {
  footer.contact {
    grid-template-areas: "navs snss" "logo copy";
    grid-template-columns: max-content 1fr;
  }
  footer.contact .logo,
footer.contact .footer-links {
    justify-self: flex-start;
    margin-bottom: 1rem;
  }
  footer.contact .copyrights {
    transform: translateY(0.8em);
  }
  footer.contact .footer-sns-links,
footer.contact .copyrights {
    justify-self: flex-end;
  }
  footer.contact .footer-sns-links {
    align-self: flex-end;
    transform: translateY(4rem);
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1000px) {
  footer.contact .footer-sns-links {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links [class|=icon] {
    display: inline-block;
    transform: translateY(-1rem);
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links > * {
    vertical-align: bottom;
  }
}

header.nav {
  position: fixed;
  z-index: 7;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 4rem 2.4rem 4rem;
  color: white;
  letter-spacing: 2px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 740px) {
  header.nav {
    flex-shrink: 0;
    height: 7rem;
    padding: 1rem 2rem 1rem 2rem;
  }
}
header.nav .logo {
  flex-shrink: 0;
  width: 13.7rem;
  height: 6.1rem;
  z-index: -10;
}
@media only screen and (max-width: 740px) {
  header.nav .logo {
    width: 12rem;
    height: 6rem;
  }
}
header.nav .logo::after {
  content: "we're hiring!";
  color: #FF5600;
  position: absolute;
  font-family: "ProximaNova-Bold";
  left: 14rem;
  top: 2rem;
  width: fit-content;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.1px;
  pointer-events: none;
}
@media only screen and (max-width: 740px) {
  header.nav .logo::after {
    left: 12.5rem;
    top: 2rem;
  }
}
header.nav a.navbutton::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scale(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ff5600;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
header.nav a.navbutton:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header.nav.inverted {
  color: #2c3045;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px);
}
header.nav.inverted .logo {
  background-image: url(/images/evolany-logo-inverted.svg);
}
header.nav.sticky {
  position: sticky;
  top: 0;
}
header.nav nav {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
header.nav nav a {
  color: inherit;
  white-space: nowrap;
  position: relative;
  line-height: initial;
  height: initial;
}
header.nav nav a.on::before {
  content: "";
  display: block;
  height: 2px;
  background-color: #FF5600;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}
header.nav nav > a:not(:first-child) {
  margin-left: 4rem;
}
header.nav nav [class|=icon] {
  color: #FF5600;
  font-size: 2rem;
}
header.nav nav .i18n {
  display: flex;
  align-items: center;
  margin-left: 6rem;
}
header.nav nav .i18n a:not(:first-child) {
  margin-left: 2rem;
}
header.nav .hamburger-menus {
  color: #FF5600;
}
header.nav .hamburger-menus a {
  font-size: 3rem;
}

[data-lang=jp] .sidemenu .side-menu-lang [data-lang=jp] {
  position: relative;
}
[data-lang=jp] .sidemenu .side-menu-lang [data-lang=jp]::before {
  content: "";
  display: block;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}

[data-lang=en] .sidemenu .side-menu-lang [data-lang=en] {
  position: relative;
}
[data-lang=en] .sidemenu .side-menu-lang [data-lang=en]::before {
  content: "";
  display: block;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}

.sidemenu {
  position: fixed;
  background-color: #FF5600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 8;
  overflow: hidden;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  transition: 0.1s;
  top: 0;
  left: 0;
}
.sidemenu .side-menu-lang {
  display: flex;
  align-items: center;
  margin-left: 3rem;
  color: white;
  text-transform: uppercase;
  position: fixed;
  font-size: 2rem;
  font-weight: bold;
  top: 2rem;
  left: 2px;
  letter-spacing: 2px;
}
.sidemenu .side-menu-lang a:not(:first-child) {
  margin-left: 2rem;
}
.sidemenu .full-nav-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin-left: 3rem;
  margin-bottom: 6.5rem;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-items {
    padding-top: 14rem;
  }
}
.sidemenu .full-nav-items .item {
  color: white;
  letter-spacing: 2px;
  line-height: 6rem;
  font-size: 2.2rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  font-weight: bold;
  text-transform: uppercase;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-items .item {
    font-weight: 500;
    line-height: 5rem;
  }
}
.sidemenu .full-nav-sns-links {
  display: flex;
  width: 100%;
  color: white;
  font-size: 3rem;
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-sns-links {
    padding-bottom: 5rem;
    font-size: 2.5rem;
  }
}
.sidemenu .full-nav-sns-links > a {
  margin-left: 2.4rem;
  color: white;
}
.sidemenu .full-nav-sns-links > a:not(:last-child) {
  margin-left: 3rem;
}

.side-menu-on .sidemenu {
  transform: translateX(0);
}

.hamburger {
  position: fixed;
  display: block;
  width: 2.7rem;
  height: 2.7rem;
  cursor: pointer;
  z-index: 10;
  right: 2rem;
  top: 2rem;
}
.hamburger .bar, .hamburger::before, .hamburger::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ff5600;
  transition: transform 0.3s;
  z-index: 10;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
}
.hamburger::before {
  transform: translateY(-9px);
}
.hamburger::after {
  transform: translateY(9px);
}

.side-menu-on .hamburger .bar {
  opacity: 0;
}
.side-menu-on .hamburger::before {
  transform: rotate(-45deg);
  background-color: white;
}
.side-menu-on .hamburger::after {
  transform: rotate(45deg);
  background-color: white;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.anchor {
  height: 1rem;
}

.safari .page-landing .banner::after {
  height: 100%;
  background-attachment: initial;
  transform: translateY(calc(20% * var(--phase)));
}

#evolanyVideo {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  z-index: 0;
  filter: brightness(0.6);
}

.page-landing {
  margin-bottom: 16rem;
  color: #2c3045;
}
@media only screen and (max-width: 740px) {
  .page-landing [data-aos=flip-left].aos-animate {
    transform: none;
  }
}
@media only screen and (max-width: 740px) {
  .page-landing {
    margin-bottom: 8rem;
  }
}
.page-landing .typing {
  white-space: pre-wrap;
}
.page-landing .typing:not(.on),
.page-landing .typing:not(.on) * {
  color: transparent !important;
}
.page-landing .typing.on .character {
  position: absolute;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.02, 0.83, 0.63, 1.3);
  display: inline-block;
  transform: translateY(50%);
}
.page-landing .typing.on .character.on {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}
.page-landing .typing.on br.character {
  display: none;
}
.page-landing .typing.on br.character.on {
  display: initial;
}
.page-landing .typing.on::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 5rem;
  background-color: #FF5600;
  animation: blink 0.5s both infinite;
}
.page-landing .banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.page-landing .banner video::-webkit-media-controls-start-playback-button {
  display: none !important;
}
.page-landing .banner video::-webkit-media-controls {
  display: none !important;
}
.page-landing .banner .scrollbar {
  position: absolute;
}
@media only screen and (max-width: 1000px) {
  .page-landing .banner .scrollbar {
    display: none;
  }
}
.page-landing .banner .scrollbar .copyright-text {
  color: white;
  font-size: 1.1rem;
  font-family: "Roboto", sans-serif;
  z-index: 4;
  letter-spacing: 1px;
  bottom: 50%;
  display: inline-block;
  transform: rotate(90deg);
  position: fixed;
  right: -6.6rem;
  transition: 0.5s ease-in;
}
.page-landing .banner .scrollbar .scrolltext {
  color: white;
  text-transform: uppercase;
  font-family: "Poppins";
  font-size: 1.1rem;
  z-index: 4;
  right: 0.5rem;
  bottom: 10rem;
  display: inline-block;
  transform: rotate(90deg);
  position: fixed;
  letter-spacing: 4px;
  opacity: 1;
  transition: opacity 0.5s ease-in;
}
.page-landing .banner .scrollbar .scrolltext.hide {
  opacity: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .banner .scrollbar .scrolltext {
    right: -2rem;
  }
}
.page-landing .banner .scrolling-line {
  position: fixed;
  right: 3.6rem;
  bottom: 0;
  width: 1px;
  height: 6rem;
  overflow: hidden;
}
@media only screen and (max-width: 1000px) {
  .page-landing .banner .scrolling-line {
    display: none;
  }
}
.page-landing .banner .scrolling-line:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 2px;
  height: 8rem;
  background-color: white;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-animation-name: scroll;
  animation-name: scroll;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 2s;
  animation-delay: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
@keyframes scroll {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.page-landing .banner > * {
  z-index: 1;
}
.page-landing .banner .banner-text {
  position: relative;
  width: 100%;
  height: 100%;
}
.page-landing .banner .banner-text .banner-main {
  transform: translateY(calc(-50vw * var(--phase)));
}
.page-landing .banner .banner-text .banner-bg {
  transform: translateY(calc(-50vw * var(--phase)));
}
.page-landing .banner .banner-text h1 {
  letter-spacing: 2px;
  max-width: 90%;
  overflow: hidden;
  white-space: --line-break;
}
.page-landing .banner .banner-text h1.banner-main {
  margin: 0;
  color: white;
  font-size: 6.8vmin;
  line-height: 9.2vmin;
  font-display: fallback;
  font-family: var(--titleFont);
  position: absolute;
  top: 40%;
  left: 8%;
  z-index: 100;
}
@media only screen and (max-width: 740px) {
  .page-landing .banner .banner-text h1.banner-main {
    margin-top: 1.5rem;
  }
}
.page-landing .banner .banner-text h1.banner-main .typing {
  font-size: 6.8vmin;
  font-family: var(--titleFont);
}
.page-landing .banner .banner-text h1.banner-main .typing.on::after {
  height: 5.5vmin;
  transform: translateY(0.2vmin);
}
.page-landing .banner .banner-text h1.banner-main .typing.en {
  white-space: pre;
}
.page-landing .banner .banner-text h1.banner-bg {
  font-size: 8vmin;
  line-height: 10vmin;
  letter-spacing: 2px;
  -webkit-text-stroke: 1px #FF5600;
  opacity: 0.6;
  position: absolute;
  top: 44%;
  left: 6%;
  color: transparent;
  pointer-events: none;
  user-select: none;
}
@media only screen and (max-width: 740px) {
  .page-landing .banner .banner-text h1.banner-bg {
    font-size: 5vmin;
  }
}
.page-landing .banner .banner-text strong {
  color: #FF5600;
}
.page-landing .sections {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 180rem;
  margin: 0 auto;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections {
    margin: -5rem auto;
  }
}
.page-landing .sections > section {
  padding: 0 var(--page-gutter);
  margin-top: 10rem;
  position: relative;
  scroll-margin-left: 0;
  scroll-margin-top: 7.5rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections > section {
    margin-top: 8rem;
  }
}
.page-landing .sections > section[data-motto]::after {
  content: attr(data-motto);
  display: block;
  position: absolute;
  top: 0;
  left: -1.4rem;
  opacity: 0.05;
  color: #FF5600;
  text-transform: uppercase;
  font-weight: bolder;
  font-size: 19vw;
  font-family: "Roboto", sans-serif;
  z-index: -1;
  transform: translate(0, -30%);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections > section[data-motto]::after {
    font-size: 7.4rem;
    left: 3.4rem;
    transform: translate(0, -10%);
  }
}
.page-landing .sections > section.motto-right[data-motto]::after {
  left: initial;
  right: -6%;
  transform: translate(0, 28%);
  font-size: 25vw;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections > section.motto-right[data-motto]::after {
    font-size: 33.3vw;
    right: -10%;
    transform: translate(0, -2%);
  }
}
.page-landing .sections .members-container {
  margin-top: 14rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container {
    padding-right: 0;
  }
}
.page-landing .sections .members-container .members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  grid-auto-flow: row dense;
  grid-gap: 1.4rem;
  align-items: stretch;
  justify-items: stretch;
  margin-top: 6rem;
  position: relative;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members {
    display: flex;
    flex-direction: column;
  }
}
.page-landing .sections .members-container .members .member-content-spacer {
  grid-column: span 3;
}
.page-landing .sections .members-container .members .member-portraits {
  display: contents;
}
.page-landing .sections .members-container .members .member-portraits > * {
  align-self: flex-end;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .member-portraits {
    margin-right: calc(var(--page-gutter) * -1);
    display: grid;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    grid-auto-flow: column dense;
    grid-auto-columns: 12rem;
    grid-template-rows: repeat(2, min-content);
    gap: 0.5rem;
  }
}
.page-landing .sections .members-container .members .member-portraits .member-img {
  --x: 0;
  --y: 0;
  perspective: 100rem;
  position: relative;
  align-self: stretch;
  justify-self: stretch;
  filter: brightness(calc(1 - 0.5 * (var(--x) + var(--y)) * 0.2));
}
.page-landing .sections .members-container .members .member-portraits .member-img::before {
  content: "";
  display: block;
  margin-top: 133.3333333333%;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .member-portraits .member-img {
    filter: brightness(1);
    width: 120px;
    height: 180px;
  }
}
.page-landing .sections .members-container .members .member-portraits .member-img .img-wrapper {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: all 0.35s cubic-bezier(0.07, 0.73, 0.48, 1.29);
  box-shadow: 0px 0rem 0rem rgba(0, 0, 0, 0);
  border: solid 0px transparent;
}
.page-landing .sections .members-container .members .member-portraits .member-img .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  image-rendering: high-quality;
  image-rendering: -webkit-optimize-contrast;
}
.page-landing .sections .members-container .members .member-portraits .member-img .img-wrapper.front {
  transform: scale(1) rotateX(0) rotateY(0turn);
}
.page-landing .sections .members-container .members .member-portraits .member-img .img-wrapper.hover {
  transform: scale(1) rotateX(0) rotateY(0.5turn);
  overflow: hidden;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .member-portraits .member-img .img-wrapper.hover::before {
    display: none;
  }
}
.page-landing .sections .members-container .members .member-portraits .member-img .img-wrapper.hover::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image: linear-gradient(to bottom right, transparent, transparent 40%, rgba(255, 255, 255, 0.3) calc(40% + 1px), rgba(255, 255, 255, 0.6) 50%, transparent calc(50% + 1px));
  background-repeat: no-repeat;
  z-index: 10;
  transform: translateX(calc(-100% + 100% * (var(--x) + var(--y)) * -0.5));
  mix-blend-mode: overlay;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .member-portraits .member-img .img-wrapper.hover::before {
    display: none;
  }
}
.page-landing .sections .members-container .members .member-portraits .member-img:hover {
  z-index: 1;
}
.page-landing .sections .members-container .members .member-portraits .member-img:hover .img-wrapper {
  box-shadow: 0px 0.5rem 4rem rgba(0, 0, 0, 0.5);
  border: solid 4px rgb(255, 255, 255);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .member-portraits .member-img:hover .img-wrapper {
    box-shadow: 0px 0rem 0rem rgba(0, 0, 0, 0);
    border: solid 0px transparent;
  }
}
.page-landing .sections .members-container .members .member-portraits .member-img:hover .img-wrapper.front {
  transform: scale(1) rotateX(0) rotateY(-0.5turn);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .member-portraits .member-img:hover .img-wrapper.front {
    transform: scale(1) rotateX(0) rotateY(-0.5turn);
  }
}
.page-landing .sections .members-container .members .member-portraits .member-img:hover .img-wrapper.hover {
  transform: scale(1) rotateX(calc(var(--y) * -15deg)) rotateY(calc(var(--x) * 15deg));
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .member-portraits .member-img:hover .img-wrapper.hover {
    transform: scale(1) rotateX(0) rotateY(0turn);
  }
}
.page-landing .sections .members-container .members .members-content-wrapper {
  grid-column: auto/span 3;
  transform: translateY(-4rem);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .members-content-wrapper {
    padding-right: var(--page-gutter);
  }
}
.page-landing .sections .members-container .members .members-content-wrapper h3 {
  font-style: normal;
  font-weight: bold;
  font-size: 6.4rem;
  font-family: "Poppins";
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2c3045;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .members-content-wrapper h3 {
    font-size: 3.8rem;
  }
}
.page-landing .sections .members-container .members .members-content-wrapper .subtitle {
  color: #FF5600;
  font-weight: var(--boldness);
  font-size: 2rem;
  letter-spacing: var(--lang-letter-spacing);
  font-family: var(--lang-font-family);
  text-transform: uppercase;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .members-content-wrapper .subtitle {
    font-size: 1.2rem;
    margin-top: -1rem;
  }
}
.page-landing .sections .members-container .members .members-content-wrapper .members-content {
  margin-top: 3rem;
  color: #2c3045;
  line-height: 3.4rem;
  font-size: 1.6rem;
  width: 50rem;
  letter-spacing: var(--lang-letter-spacing);
  text-align: justify;
  white-space: pre-line;
  font-family: var(--lang-font-family);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .members-container .members .members-content-wrapper .members-content {
    width: 100%;
    font-size: 1.2rem;
    white-space: pre-line;
    text-align: unset;
    line-height: 2.4rem;
    margin-top: 0;
  }
}
@media only screen and (max-width: 1000px) {
  .page-landing .sections .members-container .members .members-content-wrapper .members-content {
    text-align: unset;
  }
}
.page-landing .sections .members-container .members .members-content-wrapper .members-content p {
  color: #2c3045;
  font-family: var(--lang-font-family);
}
.page-landing .sections .service-container {
  padding-top: 6rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container {
    margin-top: 4rem;
    padding: 4rem;
  }
}
.page-landing .sections .service-container > *:not(:first-child) {
  margin-top: 8rem;
}
.page-landing .sections .service-container .service {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .service {
    flex-direction: column;
    align-items: center;
  }
}
.page-landing .sections .service-container .service .service-content {
  flex: 1;
}
.page-landing .sections .service-container .service .service-content h3 {
  font-style: normal;
  font-weight: bold;
  font-size: 6.4rem;
  text-transform: uppercase;
  letter-spacing: var(--lang-letter-spacing);
  color: #2c3045;
  font-family: "Poppins";
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .service .service-content h3 {
    font-size: 3.8rem;
  }
}
.page-landing .sections .service-container .service .service-content .subtitle {
  color: #5f5bff;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: var(--lang-letter-spacing);
  font-family: var(--lang-font-family);
  text-transform: uppercase;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .service .service-content .subtitle {
    font-size: 1.2rem;
  }
}
.page-landing .sections .service-container .service .service-content .service-title {
  color: #2c3045;
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: var(--lang-letter-spacing);
  font-family: var(--lang-font-family);
  margin-top: 4rem;
  margin-bottom: 3rem;
  line-height: 3.8rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .service .service-content .service-title {
    margin-top: 1rem;
    font-size: 1.6rem;
    line-height: 2.2rem;
    letter-spacing: 1px;
  }
}
.page-landing .sections .service-container .service .service-content .service-description {
  color: #2c3045;
  letter-spacing: var(--lang-letter-spacing);
  font-family: var(--lang-font-family);
  line-height: 3.4rem;
  width: 80%;
  font-size: 1.6rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .service .service-content .service-description {
    width: 100%;
    font-size: 1.2rem;
    line-height: 2.4rem;
    text-align: initial;
  }
}
.page-landing .sections .service-container .service .anybot-wrapper {
  flex: 1;
  width: 100%;
  position: relative;
  max-height: 40rem;
  pointer-events: none;
  margin-top: auto;
}
.page-landing .sections .service-container .service .anybot-wrapper img {
  width: 100%;
  display: block;
  max-width: 58rem;
  margin: 0 auto;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .service .anybot-wrapper {
    margin-left: 0;
    margin-top: 3rem;
  }
}
.page-landing .sections .service-container .appeal-points-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: row;
  text-align: center;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 1000px) {
  .page-landing .sections .service-container .appeal-points-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    text-align: center;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 740px) {
  .page-landing .sections .service-container .appeal-points-container:not(:first-child) {
    margin-left: unset;
  }
}
@media only screen and (max-width: 480px) {
  .page-landing .sections .service-container .appeal-points-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    text-align: center;
    margin-top: -8rem;
  }
}
.page-landing .sections .service-container .appeal-points-container .appeal-point {
  flex: 0 1 20rem;
  z-index: 6;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .appeal-points-container .appeal-point {
    flex: 0 1 15rem;
  }
}
.page-landing .sections .service-container .appeal-points-container .appeal-point:not(:first-child) {
  margin-left: 1rem;
}
.page-landing .sections .service-container .appeal-points-container .appeal-point h4 {
  color: #2c3045;
  font-size: 1.6rem;
  font-family: var(--lang-font-family);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .appeal-points-container .appeal-point h4 {
    font-size: 1.4rem;
    line-height: 2.6rem;
  }
}
.page-landing .sections .service-container .appeal-points-container .appeal-point p {
  color: #8C96A6;
  word-break: keep-all;
  font-size: 1.2rem;
  line-height: 2.2rem;
  font-family: var(--lang-font-family);
  text-align: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .appeal-points-container .appeal-point p {
    font-size: 1.1rem;
    line-height: 1.8rem;
  }
}
.page-landing .sections .service-container .contact-area {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .page-landing .sections .service-container .contact-area {
    flex-direction: column;
  }
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .contact-area {
    flex-direction: column;
  }
}
.page-landing .sections .service-container .contact-area > * {
  flex: 1 0 40%;
  padding: 3rem;
  background: linear-gradient(rgba(32, 36, 56, 0.8), rgba(32, 36, 56, 0.8)), url(/images/contact-min.webp) top/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-top: 2rem;
  max-width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .contact-area > * {
    padding: 2rem;
  }
}
.page-landing .sections .service-container .contact-area > *:not(:first-child) {
  margin-left: 4rem;
}
@media only screen and (max-width: 1000px) {
  .page-landing .sections .service-container .contact-area > *:not(:first-child) {
    margin-left: unset;
  }
}
.page-landing .sections .service-container .contact-area > *::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #2c3045;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.page-landing .sections .service-container .contact-area > *:hover::before {
  opacity: 1;
}
.page-landing .sections .service-container .contact-area > * .texts {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 1;
}
.page-landing .sections .service-container .contact-area > * .texts h2 {
  color: white;
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  font-family: "Poppins";
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .service-container .contact-area > * .texts h2 {
    font-size: 2rem;
  }
}
.page-landing .sections .service-container .contact-area > * .texts p {
  font-size: 1.3rem;
  color: white;
  font-family: var(--lang-font-family);
  width: 70%;
}
.page-landing .sections .service-container .contact-area > *::after {
  content: "";
  display: block;
  position: absolute;
  width: 6rem;
  height: 4rem;
  right: 2rem;
}
.page-landing .sections .service-container .contact-area .contact::after {
  background: url(/images/arrow-circle-outline.svg) center/contain no-repeat;
}
.page-landing .sections .service-container .contact-area .contact:hover::after {
  background: url(/images/arrow-circle-white.svg) center/contain no-repeat;
}
.page-landing .sections .service-container .contact-area .demo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(rgba(32, 36, 56, 0.8), rgba(32, 36, 56, 0.8)), url(/images/demo.webp) top/cover no-repeat;
}
@media only screen and (max-width: 480px) {
  .page-landing .sections .service-container .contact-area .demo {
    font-size: 1.6rem;
  }
}
.page-landing .sections .service-container .contact-area .demo img {
  padding: 1rem;
  background-color: white;
  width: 12rem;
  margin-right: 2rem;
  z-index: 1;
}
@media only screen and (max-width: 1000px) {
  .page-landing .sections .service-container .contact-area .demo img {
    display: none;
  }
}
.page-landing .sections .service-container .contact-area .demo h2 {
  text-transform: uppercase;
}
.page-landing .sections .service-container .contact-area .demo::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #2c3045;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.page-landing .sections .service-container .contact-area .demo:hover::before {
  opacity: 1;
}
.page-landing .sections .service-container .contact-area .demo::after {
  background: url(/images/arrow-circle-outline.svg) center/contain no-repeat;
}
.page-landing .sections .service-container .contact-area .demo:hover::after {
  background: url(/images/arrow-circle-white.svg) center/contain no-repeat;
}
.page-landing .sections .mobile {
  display: block;
}
.page-landing .sections .desktop {
  display: none;
}
@media only screen and (min-width: 1000px) {
  .page-landing .sections .mobile {
    display: none;
  }
  .page-landing .sections .desktop {
    display: block;
  }
}
.page-landing .sections .recruit-container {
  padding: 0;
  position: relative;
  overflow: visible;
  display: flex;
  background: url(/webroot/images/6-min.webp) top right/auto 100% no-repeat;
  margin-left: var(--page-gutter);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .recruit-container {
    margin-top: 6rem;
    background-position: 59%;
  }
}
.page-landing .sections .recruit-container .recruit-content {
  background-color: white;
  flex: 0 0 48%;
  max-width: calc(100vw - var(--page-gutter));
  display: flex;
  flex-direction: column;
  padding-top: 4rem;
  padding-left: 4rem;
  padding-bottom: 5.5rem;
  padding-right: 8rem;
  z-index: 1;
  transform: translate(-4rem, -4rem);
}
@media only screen and (max-width: 1000px) {
  .page-landing .sections .recruit-container .recruit-content {
    flex: 0 0 calc(100% - 10rem);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
  }
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .recruit-container .recruit-content {
    flex: 0 0 calc(100% - 2rem);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    text-align: unset;
    padding-right: 2rem;
  }
}
.page-landing .sections .recruit-container .recruit-content h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 6.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2c3045;
  font-family: "Poppins";
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .recruit-container .recruit-content h3 {
    font-size: 3.8rem;
  }
}
.page-landing .sections .recruit-container .recruit-content h4 {
  color: #2c3045;
  font-size: 2.2rem;
  margin-top: 4rem;
  line-height: 3.8rem;
  font-family: var(--lang-font-family);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .recruit-container .recruit-content h4 {
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}
.page-landing .sections .recruit-container .recruit-content p {
  color: #FF5600;
  font-size: 2rem;
  letter-spacing: var(--lang-letter-spacing);
  font-family: var(--lang-font-family);
  text-transform: uppercase;
  font-weight: bold;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .recruit-container .recruit-content p {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}
.page-landing .sections .recruit-container .recruit-content .recruit-positions {
  color: #FF5600;
  margin: 4rem 0;
  font-family: var(--lang-font-family);
}
.page-landing .sections .recruit-container .recruit-content .recruit-positions > * {
  list-style: none;
  font-size: 1.3rem;
}
.page-landing .sections .recruit-container .recruit-content .recruit-positions > *:not(:first-child) {
  margin-top: 2rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .recruit-container .recruit-content .recruit-positions > * {
    font-size: 1.2rem;
    line-height: 1.4rem;
    letter-spacing: var(--recruit-letter-spacing);
  }
}
.page-landing .sections .recruit-container .recruit-content .recruit-text {
  letter-spacing: var(--lang-letter-spacing);
  font-family: var(--lang-font-family);
  font-weight: normal;
  color: #2c3045;
  margin-top: 3rem;
  line-height: 3.4rem;
  font-size: 1.6rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .recruit-container .recruit-content .recruit-text {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
}
.page-landing .sections .recruit-container .recruit-content .detail-button {
  margin-top: 2rem;
}
.page-landing .sections .recruit-container .recruit-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 120%;
}
.page-landing .sections .blogs-container {
  padding-top: 2rem;
  --bias: 0;
  --index: 0;
  --normalized-index: 0;
}
.page-landing .sections .blogs-container .blog-content {
  display: flex;
  flex-direction: column;
  position: relative;
}
.page-landing .sections .blogs-container .blog-content h3 {
  font-weight: 600;
  font-size: 6.4rem;
  font-family: "Poppins";
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2c3045;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container .blog-content h3 {
    font-size: 3.8rem;
  }
}
.page-landing .sections .blogs-container .blog-content p {
  color: #FF5600;
  font-family: var(--lang-font-family);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container .blog-content p {
    font-size: 1.2rem;
    line-height: 1.7rem;
    letter-spacing: 2px;
  }
}
.page-landing .sections .blogs-container .blog-content .button-area .detail-link-blogs {
  display: none;
  text-transform: uppercase;
}
.page-landing .sections .blogs-container .blog-content .blog-title-area {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.page-landing .sections .blogs-container .blog-content .blog-title-area h4 {
  color: #2C3045;
  display: none;
  font-size: 2.8rem;
  font-family: "YuGothic", sans-serif;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container .blog-content .blog-title-area h4 {
    font-size: 1.5rem;
  }
}
.page-landing .sections .blogs-container .blog-content .blog-title-area a {
  text-transform: uppercase;
}
.page-landing .sections .blogs-container .blog-content .blog-texts {
  width: 100%;
  overflow: hidden;
  display: flex;
  position: relative;
  margin-bottom: 0.6rem;
  align-items: flex-start;
}
.page-landing .sections .blogs-container .blog-content .blog-texts .blog-text {
  flex: 0 0 100%;
  width: 80%;
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: var(--lang-letter-spacing);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container .blog-content .blog-texts .blog-text {
    font-size: 1.2rem;
  }
}
.page-landing .sections .blogs-container .blog-content .dot-container {
  display: flex;
  position: absolute;
  bottom: 23.8rem;
  right: 10%;
  margin-top: 2rem;
  z-index: 10;
}
@media only screen and (max-width: 1000px) {
  .page-landing .sections .blogs-container .blog-content .dot-container {
    bottom: 33.8rem;
  }
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container .blog-content .dot-container {
    order: 1;
    justify-content: flex-start;
    bottom: unset;
    right: unset;
    position: relative;
  }
}
.page-landing .sections .blogs-container .blog-content .dot-container .dot {
  display: flex;
  width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.page-landing .sections .blogs-container .blog-content .dot-container .dot svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.page-landing .sections .blogs-container .blog-content .dot-container .dot svg circle {
  stroke-dasharray: 50;
  stroke-dashoffset: -50;
  transition: stroke-dashoffset 0.2s;
  stroke: #c1c6ce;
}
.page-landing .sections .blogs-container .blog-content .dot-container .dot:not(:first-child) {
  margin-left: 2rem;
}
.page-landing .sections .blogs-container .blog-content .dot-container .dot::before {
  content: "";
  background-color: #c1c6ce;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 0.8rem;
  z-index: 1;
  transition: background-color 0.2s;
}
.page-landing .sections .blogs-container .blog-content .blogs {
  display: flex;
  align-items: flex-end;
  height: 30rem;
  margin-top: 2rem;
  z-index: 1;
  transform: translateX(var(--bias));
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container .blog-content .blogs {
    height: 45vw;
    margin-top: 0;
  }
}
.page-landing .sections .blogs-container .blog-content .blogs img {
  --width: 40rem;
  --height: 20rem;
  --gap: 2.4rem;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem;
  transition: all var(--slide-duration);
  cursor: pointer;
  position: relative;
  flex: 0 0 var(--width);
  width: var(--width);
  height: var(--height);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container .blog-content .blogs img {
    --width: 45vw;
    --height: 35vw;
  }
}
.page-landing .sections .blogs-container .blog-content .blogs img:not(:first-child) {
  margin-left: var(--gap);
}
.page-landing .sections .blogs-container .blog-content .blogs img:first-child {
  margin-left: calc((var(--index) + var(--total)) * -1 * (var(--width) + var(--gap)));
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container .blog-content .dot-container {
    order: 1;
  }
  .page-landing .sections .blogs-container .blog-content .blog-texts {
    order: 2;
    margin-top: 2rem;
    margin-bottom: 0;
  }
  .page-landing .sections .blogs-container .blog-content .button-area {
    order: 5;
    margin-top: 2rem;
    justify-content: flex-start !important;
  }
}
.page-landing .sections .blogs-container[data-index="0"] .blog-content .blogs img:nth-child(1) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="0"] .blog-content .blogs img:nth-child(1) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .blog-texts .blog-text:first-child {
  margin-left: calc(0 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .blog-title-area .blog-title:nth-child(1) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="0"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .button-area .detail-link-blogs:nth-child(1) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="0"] .button-area .detail-link-blogs:nth-child(1) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .button-area .detail-link-blogs:nth-child(1)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .dot-container .dot:nth-child(1) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="0"] .dot-container .dot:nth-child(1)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="1"] .blog-content .blogs img:nth-child(2) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="1"] .blog-content .blogs img:nth-child(2) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .blog-texts .blog-text:first-child {
  margin-left: calc(-1 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .blog-title-area .blog-title:nth-child(2) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="1"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .button-area .detail-link-blogs:nth-child(2) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="1"] .button-area .detail-link-blogs:nth-child(2) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .button-area .detail-link-blogs:nth-child(2)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .dot-container .dot:nth-child(2) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="1"] .dot-container .dot:nth-child(2)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="2"] .blog-content .blogs img:nth-child(3) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="2"] .blog-content .blogs img:nth-child(3) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .blog-texts .blog-text:first-child {
  margin-left: calc(-2 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .blog-title-area .blog-title:nth-child(3) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="2"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .button-area .detail-link-blogs:nth-child(3) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="2"] .button-area .detail-link-blogs:nth-child(3) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .button-area .detail-link-blogs:nth-child(3)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .dot-container .dot:nth-child(3) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="2"] .dot-container .dot:nth-child(3)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="3"] .blog-content .blogs img:nth-child(4) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="3"] .blog-content .blogs img:nth-child(4) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .blog-texts .blog-text:first-child {
  margin-left: calc(-3 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .blog-title-area .blog-title:nth-child(4) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="3"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .button-area .detail-link-blogs:nth-child(4) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="3"] .button-area .detail-link-blogs:nth-child(4) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .button-area .detail-link-blogs:nth-child(4)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .dot-container .dot:nth-child(4) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="3"] .dot-container .dot:nth-child(4)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="4"] .blog-content .blogs img:nth-child(5) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="4"] .blog-content .blogs img:nth-child(5) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .blog-texts .blog-text:first-child {
  margin-left: calc(-4 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .blog-title-area .blog-title:nth-child(5) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="4"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .button-area .detail-link-blogs:nth-child(5) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="4"] .button-area .detail-link-blogs:nth-child(5) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .button-area .detail-link-blogs:nth-child(5)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .dot-container .dot:nth-child(5) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="4"] .dot-container .dot:nth-child(5)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="5"] .blog-content .blogs img:nth-child(6) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="5"] .blog-content .blogs img:nth-child(6) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .blog-texts .blog-text:first-child {
  margin-left: calc(-5 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .blog-title-area .blog-title:nth-child(6) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="5"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .button-area .detail-link-blogs:nth-child(6) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="5"] .button-area .detail-link-blogs:nth-child(6) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .button-area .detail-link-blogs:nth-child(6)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .dot-container .dot:nth-child(6) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="5"] .dot-container .dot:nth-child(6)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="6"] .blog-content .blogs img:nth-child(7) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="6"] .blog-content .blogs img:nth-child(7) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .blog-texts .blog-text:first-child {
  margin-left: calc(-6 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .blog-title-area .blog-title:nth-child(7) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="6"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .button-area .detail-link-blogs:nth-child(7) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="6"] .button-area .detail-link-blogs:nth-child(7) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .button-area .detail-link-blogs:nth-child(7)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .dot-container .dot:nth-child(7) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="6"] .dot-container .dot:nth-child(7)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="7"] .blog-content .blogs img:nth-child(8) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="7"] .blog-content .blogs img:nth-child(8) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .blog-texts .blog-text:first-child {
  margin-left: calc(-7 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .blog-title-area .blog-title:nth-child(8) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="7"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .button-area .detail-link-blogs:nth-child(8) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="7"] .button-area .detail-link-blogs:nth-child(8) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .button-area .detail-link-blogs:nth-child(8)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .dot-container .dot:nth-child(8) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="7"] .dot-container .dot:nth-child(8)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="8"] .blog-content .blogs img:nth-child(9) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="8"] .blog-content .blogs img:nth-child(9) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .blog-texts .blog-text:first-child {
  margin-left: calc(-8 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .blog-title-area .blog-title:nth-child(9) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="8"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .button-area .detail-link-blogs:nth-child(9) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="8"] .button-area .detail-link-blogs:nth-child(9) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .button-area .detail-link-blogs:nth-child(9)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .dot-container .dot:nth-child(9) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="8"] .dot-container .dot:nth-child(9)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="9"] .blog-content .blogs img:nth-child(10) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="9"] .blog-content .blogs img:nth-child(10) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .blog-texts .blog-text:first-child {
  margin-left: calc(-9 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .blog-title-area .blog-title:nth-child(10) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="9"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .button-area .detail-link-blogs:nth-child(10) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="9"] .button-area .detail-link-blogs:nth-child(10) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .button-area .detail-link-blogs:nth-child(10)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .dot-container .dot:nth-child(10) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="9"] .dot-container .dot:nth-child(10)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="10"] .blog-content .blogs img:nth-child(11) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="10"] .blog-content .blogs img:nth-child(11) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .blog-texts .blog-text:first-child {
  margin-left: calc(-10 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .blog-title-area .blog-title:nth-child(11) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="10"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .button-area .detail-link-blogs:nth-child(11) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="10"] .button-area .detail-link-blogs:nth-child(11) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .button-area .detail-link-blogs:nth-child(11)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .dot-container .dot:nth-child(11) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="10"] .dot-container .dot:nth-child(11)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="11"] .blog-content .blogs img:nth-child(12) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="11"] .blog-content .blogs img:nth-child(12) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .blog-texts .blog-text:first-child {
  margin-left: calc(-11 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .blog-title-area .blog-title:nth-child(12) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="11"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .button-area .detail-link-blogs:nth-child(12) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="11"] .button-area .detail-link-blogs:nth-child(12) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .button-area .detail-link-blogs:nth-child(12)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .dot-container .dot:nth-child(12) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="11"] .dot-container .dot:nth-child(12)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="12"] .blog-content .blogs img:nth-child(13) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="12"] .blog-content .blogs img:nth-child(13) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .blog-texts .blog-text:first-child {
  margin-left: calc(-12 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .blog-title-area .blog-title:nth-child(13) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="12"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .button-area .detail-link-blogs:nth-child(13) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="12"] .button-area .detail-link-blogs:nth-child(13) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .button-area .detail-link-blogs:nth-child(13)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .dot-container .dot:nth-child(13) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="12"] .dot-container .dot:nth-child(13)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="13"] .blog-content .blogs img:nth-child(14) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="13"] .blog-content .blogs img:nth-child(14) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .blog-texts .blog-text:first-child {
  margin-left: calc(-13 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .blog-title-area .blog-title:nth-child(14) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="13"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .button-area .detail-link-blogs:nth-child(14) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="13"] .button-area .detail-link-blogs:nth-child(14) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .button-area .detail-link-blogs:nth-child(14)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .dot-container .dot:nth-child(14) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="13"] .dot-container .dot:nth-child(14)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="14"] .blog-content .blogs img:nth-child(15) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="14"] .blog-content .blogs img:nth-child(15) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .blog-texts .blog-text:first-child {
  margin-left: calc(-14 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .blog-title-area .blog-title:nth-child(15) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="14"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .button-area .detail-link-blogs:nth-child(15) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="14"] .button-area .detail-link-blogs:nth-child(15) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .button-area .detail-link-blogs:nth-child(15)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .dot-container .dot:nth-child(15) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="14"] .dot-container .dot:nth-child(15)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="15"] .blog-content .blogs img:nth-child(16) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="15"] .blog-content .blogs img:nth-child(16) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .blog-texts .blog-text:first-child {
  margin-left: calc(-15 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .blog-title-area .blog-title:nth-child(16) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="15"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .button-area .detail-link-blogs:nth-child(16) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="15"] .button-area .detail-link-blogs:nth-child(16) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .button-area .detail-link-blogs:nth-child(16)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .dot-container .dot:nth-child(16) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="15"] .dot-container .dot:nth-child(16)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="16"] .blog-content .blogs img:nth-child(17) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="16"] .blog-content .blogs img:nth-child(17) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .blog-texts .blog-text:first-child {
  margin-left: calc(-16 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .blog-title-area .blog-title:nth-child(17) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="16"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .button-area .detail-link-blogs:nth-child(17) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="16"] .button-area .detail-link-blogs:nth-child(17) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .button-area .detail-link-blogs:nth-child(17)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .dot-container .dot:nth-child(17) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="16"] .dot-container .dot:nth-child(17)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="17"] .blog-content .blogs img:nth-child(18) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="17"] .blog-content .blogs img:nth-child(18) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .blog-texts .blog-text:first-child {
  margin-left: calc(-17 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .blog-title-area .blog-title:nth-child(18) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="17"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .button-area .detail-link-blogs:nth-child(18) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="17"] .button-area .detail-link-blogs:nth-child(18) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .button-area .detail-link-blogs:nth-child(18)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .dot-container .dot:nth-child(18) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="17"] .dot-container .dot:nth-child(18)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="18"] .blog-content .blogs img:nth-child(19) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="18"] .blog-content .blogs img:nth-child(19) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .blog-texts .blog-text:first-child {
  margin-left: calc(-18 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .blog-title-area .blog-title:nth-child(19) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="18"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .button-area .detail-link-blogs:nth-child(19) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="18"] .button-area .detail-link-blogs:nth-child(19) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .button-area .detail-link-blogs:nth-child(19)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .dot-container .dot:nth-child(19) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="18"] .dot-container .dot:nth-child(19)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="19"] .blog-content .blogs img:nth-child(20) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="19"] .blog-content .blogs img:nth-child(20) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .blog-texts .blog-text:first-child {
  margin-left: calc(-19 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .blog-title-area .blog-title:nth-child(20) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="19"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .button-area .detail-link-blogs:nth-child(20) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="19"] .button-area .detail-link-blogs:nth-child(20) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .button-area .detail-link-blogs:nth-child(20)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .dot-container .dot:nth-child(20) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="19"] .dot-container .dot:nth-child(20)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="20"] .blog-content .blogs img:nth-child(21) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="20"] .blog-content .blogs img:nth-child(21) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .blog-texts .blog-text:first-child {
  margin-left: calc(-20 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .blog-title-area .blog-title:nth-child(21) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="20"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .button-area .detail-link-blogs:nth-child(21) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="20"] .button-area .detail-link-blogs:nth-child(21) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .button-area .detail-link-blogs:nth-child(21)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .dot-container .dot:nth-child(21) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="20"] .dot-container .dot:nth-child(21)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="21"] .blog-content .blogs img:nth-child(22) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="21"] .blog-content .blogs img:nth-child(22) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .blog-texts .blog-text:first-child {
  margin-left: calc(-21 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .blog-title-area .blog-title:nth-child(22) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="21"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .button-area .detail-link-blogs:nth-child(22) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="21"] .button-area .detail-link-blogs:nth-child(22) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .button-area .detail-link-blogs:nth-child(22)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .dot-container .dot:nth-child(22) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="21"] .dot-container .dot:nth-child(22)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="22"] .blog-content .blogs img:nth-child(23) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="22"] .blog-content .blogs img:nth-child(23) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .blog-texts .blog-text:first-child {
  margin-left: calc(-22 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .blog-title-area .blog-title:nth-child(23) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="22"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .button-area .detail-link-blogs:nth-child(23) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="22"] .button-area .detail-link-blogs:nth-child(23) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .button-area .detail-link-blogs:nth-child(23)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .dot-container .dot:nth-child(23) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="22"] .dot-container .dot:nth-child(23)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="23"] .blog-content .blogs img:nth-child(24) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="23"] .blog-content .blogs img:nth-child(24) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .blog-texts .blog-text:first-child {
  margin-left: calc(-23 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .blog-title-area .blog-title:nth-child(24) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="23"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .button-area .detail-link-blogs:nth-child(24) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="23"] .button-area .detail-link-blogs:nth-child(24) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .button-area .detail-link-blogs:nth-child(24)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .dot-container .dot:nth-child(24) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="23"] .dot-container .dot:nth-child(24)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="24"] .blog-content .blogs img:nth-child(25) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="24"] .blog-content .blogs img:nth-child(25) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .blog-texts .blog-text:first-child {
  margin-left: calc(-24 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .blog-title-area .blog-title:nth-child(25) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="24"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .button-area .detail-link-blogs:nth-child(25) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="24"] .button-area .detail-link-blogs:nth-child(25) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .button-area .detail-link-blogs:nth-child(25)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .dot-container .dot:nth-child(25) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="24"] .dot-container .dot:nth-child(25)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="25"] .blog-content .blogs img:nth-child(26) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="25"] .blog-content .blogs img:nth-child(26) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .blog-texts .blog-text:first-child {
  margin-left: calc(-25 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .blog-title-area .blog-title:nth-child(26) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="25"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .button-area .detail-link-blogs:nth-child(26) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="25"] .button-area .detail-link-blogs:nth-child(26) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .button-area .detail-link-blogs:nth-child(26)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .dot-container .dot:nth-child(26) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="25"] .dot-container .dot:nth-child(26)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="26"] .blog-content .blogs img:nth-child(27) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="26"] .blog-content .blogs img:nth-child(27) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .blog-texts .blog-text:first-child {
  margin-left: calc(-26 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .blog-title-area .blog-title:nth-child(27) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="26"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .button-area .detail-link-blogs:nth-child(27) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="26"] .button-area .detail-link-blogs:nth-child(27) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .button-area .detail-link-blogs:nth-child(27)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .dot-container .dot:nth-child(27) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="26"] .dot-container .dot:nth-child(27)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="27"] .blog-content .blogs img:nth-child(28) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="27"] .blog-content .blogs img:nth-child(28) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .blog-texts .blog-text:first-child {
  margin-left: calc(-27 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .blog-title-area .blog-title:nth-child(28) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="27"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .button-area .detail-link-blogs:nth-child(28) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="27"] .button-area .detail-link-blogs:nth-child(28) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .button-area .detail-link-blogs:nth-child(28)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .dot-container .dot:nth-child(28) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="27"] .dot-container .dot:nth-child(28)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="28"] .blog-content .blogs img:nth-child(29) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="28"] .blog-content .blogs img:nth-child(29) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .blog-texts .blog-text:first-child {
  margin-left: calc(-28 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .blog-title-area .blog-title:nth-child(29) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="28"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .button-area .detail-link-blogs:nth-child(29) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="28"] .button-area .detail-link-blogs:nth-child(29) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .button-area .detail-link-blogs:nth-child(29)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .dot-container .dot:nth-child(29) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="28"] .dot-container .dot:nth-child(29)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="29"] .blog-content .blogs img:nth-child(30) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="29"] .blog-content .blogs img:nth-child(30) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .blog-texts .blog-text:first-child {
  margin-left: calc(-29 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .blog-title-area .blog-title:nth-child(30) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="29"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .button-area .detail-link-blogs:nth-child(30) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="29"] .button-area .detail-link-blogs:nth-child(30) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .button-area .detail-link-blogs:nth-child(30)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .dot-container .dot:nth-child(30) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="29"] .dot-container .dot:nth-child(30)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="30"] .blog-content .blogs img:nth-child(31) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="30"] .blog-content .blogs img:nth-child(31) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .blog-texts .blog-text:first-child {
  margin-left: calc(-30 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .blog-title-area .blog-title:nth-child(31) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="30"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .button-area .detail-link-blogs:nth-child(31) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="30"] .button-area .detail-link-blogs:nth-child(31) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .button-area .detail-link-blogs:nth-child(31)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .dot-container .dot:nth-child(31) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="30"] .dot-container .dot:nth-child(31)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="31"] .blog-content .blogs img:nth-child(32) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="31"] .blog-content .blogs img:nth-child(32) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .blog-texts .blog-text:first-child {
  margin-left: calc(-31 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .blog-title-area .blog-title:nth-child(32) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="31"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .button-area .detail-link-blogs:nth-child(32) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="31"] .button-area .detail-link-blogs:nth-child(32) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .button-area .detail-link-blogs:nth-child(32)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .dot-container .dot:nth-child(32) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="31"] .dot-container .dot:nth-child(32)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="32"] .blog-content .blogs img:nth-child(33) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="32"] .blog-content .blogs img:nth-child(33) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .blog-texts .blog-text:first-child {
  margin-left: calc(-32 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .blog-title-area .blog-title:nth-child(33) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="32"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .button-area .detail-link-blogs:nth-child(33) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="32"] .button-area .detail-link-blogs:nth-child(33) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .button-area .detail-link-blogs:nth-child(33)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .dot-container .dot:nth-child(33) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="32"] .dot-container .dot:nth-child(33)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="33"] .blog-content .blogs img:nth-child(34) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="33"] .blog-content .blogs img:nth-child(34) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .blog-texts .blog-text:first-child {
  margin-left: calc(-33 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .blog-title-area .blog-title:nth-child(34) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="33"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .button-area .detail-link-blogs:nth-child(34) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="33"] .button-area .detail-link-blogs:nth-child(34) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .button-area .detail-link-blogs:nth-child(34)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .dot-container .dot:nth-child(34) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="33"] .dot-container .dot:nth-child(34)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="34"] .blog-content .blogs img:nth-child(35) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="34"] .blog-content .blogs img:nth-child(35) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .blog-texts .blog-text:first-child {
  margin-left: calc(-34 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .blog-title-area .blog-title:nth-child(35) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="34"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .button-area .detail-link-blogs:nth-child(35) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="34"] .button-area .detail-link-blogs:nth-child(35) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .button-area .detail-link-blogs:nth-child(35)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .dot-container .dot:nth-child(35) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="34"] .dot-container .dot:nth-child(35)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="35"] .blog-content .blogs img:nth-child(36) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="35"] .blog-content .blogs img:nth-child(36) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .blog-texts .blog-text:first-child {
  margin-left: calc(-35 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .blog-title-area .blog-title:nth-child(36) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="35"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .button-area .detail-link-blogs:nth-child(36) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="35"] .button-area .detail-link-blogs:nth-child(36) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .button-area .detail-link-blogs:nth-child(36)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .dot-container .dot:nth-child(36) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="35"] .dot-container .dot:nth-child(36)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="36"] .blog-content .blogs img:nth-child(37) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="36"] .blog-content .blogs img:nth-child(37) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .blog-texts .blog-text:first-child {
  margin-left: calc(-36 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .blog-title-area .blog-title:nth-child(37) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="36"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .button-area .detail-link-blogs:nth-child(37) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="36"] .button-area .detail-link-blogs:nth-child(37) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .button-area .detail-link-blogs:nth-child(37)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .dot-container .dot:nth-child(37) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="36"] .dot-container .dot:nth-child(37)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="37"] .blog-content .blogs img:nth-child(38) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="37"] .blog-content .blogs img:nth-child(38) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .blog-texts .blog-text:first-child {
  margin-left: calc(-37 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .blog-title-area .blog-title:nth-child(38) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="37"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .button-area .detail-link-blogs:nth-child(38) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="37"] .button-area .detail-link-blogs:nth-child(38) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .button-area .detail-link-blogs:nth-child(38)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .dot-container .dot:nth-child(38) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="37"] .dot-container .dot:nth-child(38)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="38"] .blog-content .blogs img:nth-child(39) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="38"] .blog-content .blogs img:nth-child(39) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .blog-texts .blog-text:first-child {
  margin-left: calc(-38 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .blog-title-area .blog-title:nth-child(39) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="38"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .button-area .detail-link-blogs:nth-child(39) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="38"] .button-area .detail-link-blogs:nth-child(39) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .button-area .detail-link-blogs:nth-child(39)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .dot-container .dot:nth-child(39) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="38"] .dot-container .dot:nth-child(39)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="39"] .blog-content .blogs img:nth-child(40) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="39"] .blog-content .blogs img:nth-child(40) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .blog-texts .blog-text:first-child {
  margin-left: calc(-39 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .blog-title-area .blog-title:nth-child(40) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="39"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .button-area .detail-link-blogs:nth-child(40) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="39"] .button-area .detail-link-blogs:nth-child(40) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .button-area .detail-link-blogs:nth-child(40)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .dot-container .dot:nth-child(40) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="39"] .dot-container .dot:nth-child(40)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container[data-index="40"] .blog-content .blogs img:nth-child(41) {
  --width: 60rem;
  --height: 30rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-index="40"] .blog-content .blogs img:nth-child(41) {
    --width: 80vw;
    --height: 45vw;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .blog-texts .blog-text:first-child {
  margin-left: calc(-40 * 100%);
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .blog-title-area .blog-title:nth-child(41) {
  display: block;
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .button-area {
  display: flex;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  transition: background 0.5s ease;
  z-index: 6;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="40"] .button-area {
    display: none;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .button-area.fade-in {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .button-area.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .button-area .detail-link-blogs:nth-child(41) {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  width: 20rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .blogs-container[data-normalized-index="40"] .button-area .detail-link-blogs:nth-child(41) {
    width: 20rem;
    height: 4.5rem;
  }
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .button-area .detail-link-blogs:nth-child(41)::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .dot-container .dot {
  color: #FF5600;
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .dot-container .dot:nth-child(41) svg circle {
  animation: revolve var(--duration) both linear;
  stroke: currentColor !important;
  stroke-dashoffset: 0;
}
.page-landing .sections .blogs-container[data-normalized-index="40"] .dot-container .dot:nth-child(41)::before {
  background-color: currentColor;
}
.page-landing .sections .blogs-container.interacting .dot-container .dot svg circle {
  animation: none !important;
}
.page-landing .sections .blogs-container:not(.interacting) .blogs {
  transition: transform 0.3s;
}
.page-landing .sections .news-container {
  padding: 0;
}
.page-landing .sections .news-container .news-articles-container {
  padding: var(--page-gutter);
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .news-container .news-articles-container {
    padding: unset;
  }
}
.page-landing .sections .news-container .news-articles-container h3 {
  font-weight: 600;
  font-size: 6.4rem;
  font-family: "Poppins";
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2c3045;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .news-container .news-articles-container h3 {
    font-size: 3.8rem;
    padding: 0 var(--page-gutter);
  }
}
.page-landing .sections .news-container .news-articles-container p {
  color: #FF5600;
  font-family: var(--lang-font-family);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: var(--lang-letter-spacing);
  text-transform: uppercase;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .news-container .news-articles-container p {
    font-size: 1.2rem;
    line-height: 1.7rem;
    padding: 0 var(--page-gutter);
  }
}
.page-landing .sections .news-container .news-articles-container .blog-text {
  color: #2c3045;
}
.page-landing .sections .news-container .news-articles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
  position: relative;
  grid-auto-flow: row dense;
  padding-top: 1rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .news-container .news-articles {
    grid-template-columns: 1fr;
    column-gap: 0;
    padding-right: var(--page-gutter);
    overflow-x: auto;
    overflow-y: hidden;
    grid-auto-rows: 8rem;
    margin-top: 0;
  }
}
.page-landing .sections .news-container .news-articles .article {
  display: flex;
  align-items: center;
  border-bottom: 1px solid lightgray;
  padding: 2rem 0;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .news-container .news-articles .article {
    height: 8rem;
    margin-left: var(--page-gutter);
  }
}
.page-landing .sections .news-container .news-articles .article > *:not(:first-child) {
  margin-left: 2rem;
}
.page-landing .sections .news-container .news-articles .article .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--lang-font-family);
}
.page-landing .sections .news-container .news-articles .article .date .article-date-month-year {
  font-size: 1rem;
}
.page-landing .sections .news-container .news-articles .article .date .article-date-day {
  font-size: 2.8rem;
  font-weight: 800;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .news-container .news-articles .article .date .article-date-day {
    font-weight: 600;
  }
}
.page-landing .sections .news-container .news-articles .article .article-tag {
  padding: 2px;
  text-transform: uppercase;
  background-color: #FF5600;
  border-radius: 3px;
  color: white;
  font-size: 1rem;
  font-family: var(--lang-font-family);
  letter-spacing: 1px;
  width: 4.4rem;
  text-align: center;
}
.page-landing .sections .news-container .news-articles .article .article-snippet {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  font-family: var(--lang-font-family);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 3px;
  line-height: 2.56rem;
}
.page-landing .sections .news-container .news-articles .article .article-snippet.eng {
  letter-spacing: 0.6px;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .news-container .news-articles .article .article-snippet {
    font-size: 1.2rem;
    line-height: 1.8rem;
    letter-spacing: 2px;
  }
}
.page-landing .sections .company-info-container .company-info {
  display: flex;
  flex-direction: column;
}
.page-landing .sections .company-info-container .company-info h3 {
  font-weight: bold;
  font-size: 6.4rem;
  font-family: "Poppins";
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2c3045;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .company-info-container .company-info h3 {
    font-size: 3.5rem;
  }
}
.page-landing .sections .company-info-container .company-info p {
  color: #FF5600;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: var(--lang-letter-spacing);
  font-family: var(--lang-font-family);
  text-transform: uppercase;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .company-info-container .company-info p {
    font-size: 1.2rem;
    line-height: 1.7rem;
  }
}
.page-landing .sections .company-info-container .company-info .company-info-content {
  margin-top: 6rem;
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .company-info-container .company-info .company-info-content {
    margin-top: 0;
  }
}
.page-landing .sections .company-info-container .company-info .company-info-content .company-info-item {
  display: flex;
  align-items: center;
  padding: 2rem;
}
.page-landing .sections .company-info-container .company-info .company-info-content .company-info-item:not(:last-of-type) {
  border-bottom: 0.5px solid lightgray;
}
.page-landing .sections .company-info-container .company-info .company-info-content .company-info-item .company-info-item-title {
  font-weight: bold;
  flex: 0 1 16rem;
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-family: var(--lang-font-family);
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .company-info-container .company-info .company-info-content .company-info-item .company-info-item-title {
    font-size: 1.2rem;
    flex: 0 1 10rem;
  }
}
.page-landing .sections .company-info-container .company-info .company-info-content .company-info-item .company-info-item-info {
  flex: 1;
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-family: "Poppins";
}
@media only screen and (max-width: 740px) {
  .page-landing .sections .company-info-container .company-info .company-info-content .company-info-item .company-info-item-info {
    font-size: 1.2rem;
  }
}
.page-landing .sections .company-info-container .company-info .company-info-content .company-info-item a {
  color: #FF5600;
}

@keyframes revolve {
  from {
    stroke-dashoffset: -50;
  }
  to {
    stroke-dashoffset: 0;
  }
}
footer.contact {
  padding-left: 16rem;
  padding-right: 16rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #202438;
  color: white;
  display: grid;
  grid-template-areas: "logo navs snss" "copy copy copy";
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  justify-items: center;
  position: relative;
  font-family: "Poppins", sans-serif;
}
@media only screen and (max-width: 1000px) {
  footer.contact {
    padding: 2.5rem;
  }
}
footer.contact .fb-logo {
  width: 32px;
  height: 32px;
}
footer.contact .linkedin-logo {
  width: 32px;
  height: 32px;
}
footer.contact .logo {
  width: 14rem;
  height: 8rem;
  grid-area: logo;
  justify-self: flex-start;
}
@media only screen and (max-width: 1000px) {
  footer.contact .logo {
    margin: unset;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .logo {
    width: 8.7rem;
    height: 3.8rem;
  }
}
footer.contact .footer-links {
  justify-content: center;
  text-transform: capitalize;
  grid-area: navs;
  white-space: nowrap;
  display: flex;
  margin: 0 2rem 0 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links {
    flex-direction: column;
    margin: unset;
  }
}
footer.contact .footer-links > *:not(:first-child) {
  margin-left: 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links > *:not(:first-child) {
    margin-left: 0;
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links > *:first-child {
    margin-left: unset;
  }
}
@media only screen and (max-width: 740px) {
  footer.contact .footer-links > * {
    line-height: 1rem;
    margin-right: auto;
    font-size: 1.2rem;
    flex-direction: column;
  }
}
footer.contact .footer-sns-links {
  grid-area: snss;
  justify-self: flex-end;
  white-space: nowrap;
}
footer.contact .footer-sns-links [class|=icon] {
  font-size: 2.8rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links [class|=icon] {
    font-size: 2rem;
  }
}
footer.contact .footer-sns-links > * {
  vertical-align: middle;
}
footer.contact .footer-sns-links > *:not(:first-child) {
  margin-left: 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links > *:not(:first-child) {
    margin-left: 1.2rem;
  }
}
footer.contact .copyrights {
  grid-area: copy;
  text-align: center;
  font-size: 0.8em;
  opacity: 0.6;
  text-align: center;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 740px) {
  footer.contact .copyrights {
    font-size: 0.5em;
    margin-top: 1rem;
  }
}
footer.contact #privacy-logo {
  width: 8rem;
  margin-bottom: 2rem;
  filter: saturate(0) brightness(100);
}
@media only screen and (max-width: 1000px) {
  footer.contact #privacy-logo {
    width: 6rem;
    margin-bottom: unset;
  }
}
footer.contact .go-top {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF5600;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
}
footer.contact a.footbutton {
  position: relative;
}
footer.contact a.footbutton::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #FF5600;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
footer.contact a.footbutton:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
@media only screen and (max-width: 1000px) {
  footer.contact {
    grid-template-areas: "navs snss" "logo copy";
    grid-template-columns: max-content 1fr;
  }
  footer.contact .logo,
footer.contact .footer-links {
    justify-self: flex-start;
    margin-bottom: 1rem;
  }
  footer.contact .copyrights {
    transform: translateY(0.8em);
  }
  footer.contact .footer-sns-links,
footer.contact .copyrights {
    justify-self: flex-end;
  }
  footer.contact .footer-sns-links {
    align-self: flex-end;
    transform: translateY(4rem);
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1000px) {
  footer.contact .footer-sns-links {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links [class|=icon] {
    display: inline-block;
    transform: translateY(-1rem);
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links > * {
    vertical-align: bottom;
  }
}

header.nav {
  position: fixed;
  z-index: 7;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 4rem 2.4rem 4rem;
  color: white;
  letter-spacing: 2px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 740px) {
  header.nav {
    flex-shrink: 0;
    height: 7rem;
    padding: 1rem 2rem 1rem 2rem;
  }
}
header.nav .logo {
  flex-shrink: 0;
  width: 13.7rem;
  height: 6.1rem;
  z-index: -10;
}
@media only screen and (max-width: 740px) {
  header.nav .logo {
    width: 12rem;
    height: 6rem;
  }
}
header.nav .logo::after {
  content: "we're hiring!";
  color: #FF5600;
  position: absolute;
  font-family: "ProximaNova-Bold";
  left: 14rem;
  top: 2rem;
  width: fit-content;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.1px;
  pointer-events: none;
}
@media only screen and (max-width: 740px) {
  header.nav .logo::after {
    left: 12.5rem;
    top: 2rem;
  }
}
header.nav a.navbutton::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scale(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ff5600;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
header.nav a.navbutton:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header.nav.inverted {
  color: #2c3045;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px);
}
header.nav.inverted .logo {
  background-image: url(/images/evolany-logo-inverted.svg);
}
header.nav.sticky {
  position: sticky;
  top: 0;
}
header.nav nav {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
header.nav nav a {
  color: inherit;
  white-space: nowrap;
  position: relative;
  line-height: initial;
  height: initial;
}
header.nav nav a.on::before {
  content: "";
  display: block;
  height: 2px;
  background-color: #FF5600;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}
header.nav nav > a:not(:first-child) {
  margin-left: 4rem;
}
header.nav nav [class|=icon] {
  color: #FF5600;
  font-size: 2rem;
}
header.nav nav .i18n {
  display: flex;
  align-items: center;
  margin-left: 6rem;
}
header.nav nav .i18n a:not(:first-child) {
  margin-left: 2rem;
}
header.nav .hamburger-menus {
  color: #FF5600;
}
header.nav .hamburger-menus a {
  font-size: 3rem;
}

[data-lang=jp] .sidemenu .side-menu-lang [data-lang=jp] {
  position: relative;
}
[data-lang=jp] .sidemenu .side-menu-lang [data-lang=jp]::before {
  content: "";
  display: block;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}

[data-lang=en] .sidemenu .side-menu-lang [data-lang=en] {
  position: relative;
}
[data-lang=en] .sidemenu .side-menu-lang [data-lang=en]::before {
  content: "";
  display: block;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}

.sidemenu {
  position: fixed;
  background-color: #FF5600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 8;
  overflow: hidden;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  transition: 0.1s;
  top: 0;
  left: 0;
}
.sidemenu .side-menu-lang {
  display: flex;
  align-items: center;
  margin-left: 3rem;
  color: white;
  text-transform: uppercase;
  position: fixed;
  font-size: 2rem;
  font-weight: bold;
  top: 2rem;
  left: 2px;
  letter-spacing: 2px;
}
.sidemenu .side-menu-lang a:not(:first-child) {
  margin-left: 2rem;
}
.sidemenu .full-nav-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin-left: 3rem;
  margin-bottom: 6.5rem;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-items {
    padding-top: 14rem;
  }
}
.sidemenu .full-nav-items .item {
  color: white;
  letter-spacing: 2px;
  line-height: 6rem;
  font-size: 2.2rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  font-weight: bold;
  text-transform: uppercase;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-items .item {
    font-weight: 500;
    line-height: 5rem;
  }
}
.sidemenu .full-nav-sns-links {
  display: flex;
  width: 100%;
  color: white;
  font-size: 3rem;
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-sns-links {
    padding-bottom: 5rem;
    font-size: 2.5rem;
  }
}
.sidemenu .full-nav-sns-links > a {
  margin-left: 2.4rem;
  color: white;
}
.sidemenu .full-nav-sns-links > a:not(:last-child) {
  margin-left: 3rem;
}

.side-menu-on .sidemenu {
  transform: translateX(0);
}

.hamburger {
  position: fixed;
  display: block;
  width: 2.7rem;
  height: 2.7rem;
  cursor: pointer;
  z-index: 10;
  right: 2rem;
  top: 2rem;
}
.hamburger .bar, .hamburger::before, .hamburger::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ff5600;
  transition: transform 0.3s;
  z-index: 10;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
}
.hamburger::before {
  transform: translateY(-9px);
}
.hamburger::after {
  transform: translateY(9px);
}

.side-menu-on .hamburger .bar {
  opacity: 0;
}
.side-menu-on .hamburger::before {
  transform: rotate(-45deg);
  background-color: white;
}
.side-menu-on .hamburger::after {
  transform: rotate(45deg);
  background-color: white;
}

.recruit-page {
  overflow-x: hidden;
}
.recruit-page .safari .page-landing .banner::after {
  height: 100%;
  background-attachment: initial;
  transform: translateY(calc(20% * var(--phase)));
}
.recruit-page .scrolltext {
  color: white;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  z-index: 2;
  bottom: 10rem;
  display: inline-block;
  transform: rotate(90deg);
  letter-spacing: 4px;
  position: absolute;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
}
.recruit-page .scrolling-line {
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 6rem;
  overflow: hidden;
  transition: opacity 0.5s ease-in;
}
.recruit-page .scrolling-line:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 2px;
  height: 8rem;
  background-color: white;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-animation-name: scroll;
  animation-name: scroll;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.recruit-page .below:before {
  background-color: black;
}
@keyframes scroll {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.recruit-page .scroller {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  margin-bottom: 0 !important;
}
.recruit-page .scroller .scrolltext.below {
  color: black;
}
.recruit-page .recruit-page-container {
  --gap: 6rem;
  color: #2c3045;
}
.recruit-page .recruit-page-container .chatbot-btn {
  position: fixed;
  bottom: 10rem;
  right: 0;
  transform: translateY(-50%);
  background-color: #FF5600;
  width: 8.5rem;
  height: 8.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
}
.recruit-page .recruit-page-container .chatbot-btn.close {
  color: white;
  content: "CLOSE";
}
.recruit-page .recruit-page-container .chatbot-btn .text {
  line-height: 1.5rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 1.2rem;
  width: 70%;
  color: white;
  font-family: "ProximaNova-Bold";
  text-align: center;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .chatbot-btn {
    display: none;
  }
}
.recruit-page .recruit-page-container .chatbot-btn::before {
  content: "";
  color: white;
  width: 2.6rem;
  height: 2.3rem;
  background: url(/images/chatbubble.svg) center/contain no-repeat;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container {
    margin-bottom: 8rem;
  }
}
.recruit-page .recruit-page-container .typing {
  white-space: pre-wrap;
}
.recruit-page .recruit-page-container .typing:not(.on),
.recruit-page .recruit-page-container .typing:not(.on) * {
  color: transparent !important;
}
.recruit-page .recruit-page-container .typing.on .character {
  position: absolute;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.02, 0.83, 0.63, 1.3);
  display: inline-block;
  transform: translateY(50%);
}
.recruit-page .recruit-page-container .typing.on .character.on {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}
.recruit-page .recruit-page-container .typing.on br.character {
  display: none;
}
.recruit-page .recruit-page-container .typing.on br.character.on {
  display: initial;
}
.recruit-page .recruit-page-container .typing.on::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 5rem;
  background-color: #FF5600;
  animation: blink 0.5s both infinite;
}
.recruit-page .recruit-page-container .banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.recruit-page .recruit-page-container .banner .scrollbar {
  position: absolute;
}
.recruit-page .recruit-page-container .banner .scrollbar .copyright-text {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  z-index: 2;
  letter-spacing: 1px;
  bottom: 50%;
  display: inline-block;
  transform: rotate(90deg);
  position: fixed;
  right: -6.6rem;
  transition: 0.5s ease-in;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .banner .scrollbar .copyright-text {
    display: none;
  }
}
.recruit-page .recruit-page-container .banner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-image: url(/webroot/images/recruit-banner-min.jpg);
  background-blend-mode: darken;
  transition: 3s;
  filter: brightness(0.6);
  transform-origin: top;
  background-attachment: fixed;
  height: 120%;
  transform: translate3D(0, calc(-10% * var(--phase)), 0);
}
.recruit-page .recruit-page-container .banner > * {
  z-index: 1;
}
.recruit-page .recruit-page-container .banner .banner-text {
  position: relative;
  width: 100%;
  height: 100%;
}
.recruit-page .recruit-page-container .banner .banner-text .banner-main {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
}
.recruit-page .recruit-page-container .banner .banner-text strong {
  color: #FF5600;
}
.recruit-page .recruit-page-container .sections {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.recruit-page .recruit-page-container .sections > section {
  position: relative;
  display: flex;
}
.recruit-page .recruit-page-container .sections > section:first-child {
  height: 90rem;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections > section:first-child {
    height: 60rem;
  }
}
.recruit-page .recruit-page-container .sections > section:nth-child(2) {
  height: 16rem;
  margin-bottom: 0;
}
.recruit-page .recruit-page-container .sections > section:nth-child(3) {
  height: 150rem;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections > section:nth-child(3) {
    height: 200rem;
  }
}
@media only screen and (max-width: 740px) {
  .recruit-page .recruit-page-container .sections > section:nth-child(3) {
    height: unset;
  }
}
.recruit-page .recruit-page-container .sections > section .title {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: url(/webroot/images/recruit-banner-min.jpg);
  background-position: 65% 55%;
  background-attachment: fixed !important;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 8.4rem;
  text-align: left;
  width: 100%;
  line-height: 8rem;
}
.recruit-page .recruit-page-container .sections > section .title.intro-title {
  letter-spacing: 1%;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections > section .title.intro-title {
    line-height: 6.6rem;
  }
}
.recruit-page .recruit-page-container .sections > section .title.intro-title span:first-of-type {
  padding-left: 2rem;
}
.recruit-page .recruit-page-container .sections > section .title.intro-title span:nth-of-type(2) {
  padding-left: 1rem;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections > section .title {
    font-size: 6.6rem;
    line-height: unset;
  }
}
.recruit-page .recruit-page-container .sections > section .title.white-main {
  background-image: unset;
  background-color: white;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections > section .title.white-main {
    font-size: 4rem;
  }
  .recruit-page .recruit-page-container .sections > section .title.white-main img {
    position: absolute;
    left: 0;
    overflow: visible;
    width: 70rem;
  }
}
.recruit-page .recruit-page-container .sections > section .title.smaller {
  font-size: 4.6rem;
  background-color: white;
  background-image: unset;
  font-family: var(--lang-font-family);
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections > section .title.smaller {
    font-size: 3rem;
  }
}
.recruit-page .recruit-page-container .sections > section .content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 80%;
  padding: 7rem 12rem 7rem 0;
}
.recruit-page .recruit-page-container .sections > section .content.intro-content {
  font-weight: var(--boldness);
  letter-spacing: var(--lang-letter-spacing);
}
.recruit-page .recruit-page-container .sections > section .content.interview-content {
  height: 100%;
  padding: 2rem;
  letter-spacing: 1.5px;
}
.recruit-page .recruit-page-container .sections > section .content.interview-content .text {
  font-weight: var(--boldness);
}
.recruit-page .recruit-page-container .sections > section .content .recruit-contact {
  color: #FF5600;
  text-transform: uppercase;
  font-family: var(--lang-font-family);
}
.recruit-page .recruit-page-container .sections > section .content .read-more {
  background-color: white;
  width: 16rem;
  padding: 0.6rem 1rem 0.6rem 2rem;
  clip-path: polygon(5% 1%, 100% 0, 96% 100%, 0% 100%);
  text-align: center;
  font-family: var(--lang-font-family);
  font-size: 1.2rem;
  cursor: pointer;
  font-weight: normal;
  text-transform: uppercase;
  font-style: italic;
}
@media only screen and (max-width: 740px) {
  .recruit-page .recruit-page-container .sections > section .content .read-more {
    font-size: 1rem;
  }
}
.recruit-page .recruit-page-container .sections > section .content .read-more::after {
  background: url(/images/grey-arrow.svg) center/contain no-repeat;
}
.recruit-page .recruit-page-container .sections > section .text {
  font-family: var(--lang-font-family);
  font-size: 1.4rem;
  width: 80%;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 3.4rem;
}
.recruit-page .recruit-page-container .sections > section .text.interview-style {
  color: white;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections > section .text.interview-style {
    width: 100%;
  }
}
.recruit-page .recruit-page-container .sections > section .sm-title {
  color: white;
  font-family: var(--lang-font-family);
  font-style: italic;
  font-weight: normal !important;
  letter-spacing: 2px;
  width: 100%;
}
.recruit-page .recruit-page-container .sections > section .date {
  color: white;
  font-family: var(--lang-font-family);
  width: 100%;
  font-size: 1.8rem;
  margin-top: 1rem;
}
.recruit-page .recruit-page-container .sections > section > .side {
  display: flex;
}
.recruit-page .recruit-page-container .sections > section > .side.left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recruit-page .recruit-page-container .sections > section > .side.left img {
  width: 60rem;
}
.recruit-page .recruit-page-container .sections > section > .side.right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections > section > .side.right {
    width: 100%;
    height: 100%;
  }
  .recruit-page .recruit-page-container .sections > section > .side.right .content {
    height: 100%;
    width: 100%;
  }
  .recruit-page .recruit-page-container .sections > section > .side.right .content .text {
    width: 100%;
  }
}
.recruit-page .recruit-page-container .sections .wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.recruit-page .recruit-page-container .sections .wrapper.intro {
  display: flex;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections .wrapper.intro {
    flex-direction: column;
  }
  .recruit-page .recruit-page-container .sections .wrapper.intro .right {
    width: 100vw;
  }
  .recruit-page .recruit-page-container .sections .wrapper.intro .right .content {
    width: 100%;
    padding: 12rem 2rem 0 2rem;
  }
  .recruit-page .recruit-page-container .sections .wrapper.intro .left {
    display: none;
  }
}
.recruit-page .recruit-page-container .sections .wrapper.interview-part {
  position: relative;
}
.recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-img {
  z-index: -100;
  -webkit-filter: blur(26px);
  position: absolute;
  -webkit-clip-path: inset(0.2% 0 0.2% 8%);
  clip-path: inset(0.2% 0 0.2% 8%);
  min-height: 140rem;
  max-height: 100%;
  min-width: 100%;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-img {
    min-height: 200rem;
  }
}
@media only screen and (max-width: 740px) {
  .recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-img {
    min-height: 180rem;
  }
}
@media only screen and (min-width: 1400px) {
  .recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-img {
    clip-path: inset(0.4% 0 8% 8%);
  }
}
.recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck {
  min-height: 100%;
}
.recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .title-section {
  width: 86%;
  height: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  float: right;
  z-index: 10;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .title-section {
    height: 10%;
  }
}
.recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .title-section.within-content {
  float: unset;
  justify-content: space-around;
}
.recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .interview {
  width: 100%;
  display: flex;
  top: 30rem;
  height: 50rem;
  z-index: 10;
  filter: blur(0) !important;
  display: flex;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .interview {
    height: 90rem;
  }
}
@media only screen and (max-width: 740px) {
  .recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .interview {
    height: 80rem;
  }
}
.recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .interview.ayaka .content-wrapper {
  display: flex;
  justify-content: space-between;
  z-index: 20;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .interview.ayaka .content-wrapper {
    flex-direction: column;
  }
}
.recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .interview.ayaka .content-wrapper .content {
  width: 56%;
  padding: 4rem;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .interview.ayaka .content-wrapper .content {
    order: 2;
    width: 100%;
    padding: 0 4rem 4rem 8rem;
    margin-left: 2rem;
  }
}
@media only screen and (max-width: 740px) {
  .recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .interview.ayaka .content-wrapper .content {
    padding: 0 4rem 4rem 4rem;
  }
}
.recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .interview.ayaka .content-wrapper img {
  object-fit: contain;
  margin-right: 2rem;
}
.recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .interview.yosuke {
  float: right;
  display: flex;
  justify-content: flex-end;
  justify-content: space-between;
  width: 90%;
}
.recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .interview.yosuke .content-wrapper {
  display: flex;
  justify-content: space-between;
  z-index: 20;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .interview.yosuke .content-wrapper {
    flex-direction: column;
  }
}
.recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .interview.yosuke .content-wrapper .content {
  width: 56%;
  padding: 4rem;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .interview.yosuke .content-wrapper .content {
    order: 2;
    width: 100%;
    padding: 0 2rem 2rem 2rem;
  }
}
.recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .interview.yosuke .content-wrapper .interview-img {
  position: absolute;
  right: 0;
  top: 16rem;
  overflow: visible;
  width: 64rem;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .sections .wrapper.interview-part .blurred-bck .interview.yosuke .content-wrapper .interview-img {
    position: unset;
    object-fit: contain;
  }
}
.recruit-page .recruit-page-container .contact-area {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: 12rem;
}
@media only screen and (min-width: 1400px) {
  .recruit-page .recruit-page-container .contact-area {
    margin: 20rem;
  }
}
@media only screen and (max-width: 740px) {
  .recruit-page .recruit-page-container .contact-area {
    margin-top: 26rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
.recruit-page .recruit-page-container .contact-area .contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.recruit-page .recruit-page-container .contact-area a {
  margin: 1rem 2rem 1rem 2rem;
}
@media only screen and (max-width: 1200px) {
  .recruit-page .recruit-page-container .contact-area {
    flex-direction: column;
  }
}
.recruit-page .recruit-page-container .contact-area > * {
  flex: 1 0 40%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-top: 2rem;
  max-width: 100%;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
}
.recruit-page .recruit-page-container .contact-area > * .texts {
  display: flex;
  justify-content: center;
  padding: 2rem;
  flex-direction: column;
  z-index: 30;
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  -webkit-background-filter: blur(26px);
  height: 12rem;
  width: 50%;
  transition: all 0.6s ease-in-out;
}
@media only screen and (min-width: 1080.01px) {
  .recruit-page .recruit-page-container .contact-area > * .texts {
    height: 20rem;
  }
}
.recruit-page .recruit-page-container .contact-area > * .texts h2 {
  color: white;
  font-size: 3.4vmin;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: "YuGothic", sans-serif;
  z-index: 40;
}
@media only screen and (max-width: 740px) {
  .recruit-page .recruit-page-container .contact-area > * .texts h2 {
    font-size: 2rem;
  }
}
.recruit-page .recruit-page-container .contact-area > * .texts p {
  font-size: 1.3rem;
  color: white;
  font-family: "Poppins", sans-serif;
  z-index: 40;
}
.recruit-page .recruit-page-container .contact-area > *:hover .texts {
  width: 66%;
}
.recruit-page .recruit-page-container .contact-area > *::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #2c3045;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}
.recruit-page .recruit-page-container .contact-area > *:hover::before {
  opacity: 1;
}
.recruit-page .recruit-page-container .contact-area > *::after {
  content: "";
  display: block;
  position: absolute;
  width: 4.5rem;
  height: 4rem;
  right: 2rem;
  z-index: 30;
  transition: all 0.6s ease-in-out;
}
.recruit-page .recruit-page-container .contact-area .contact::after {
  background: url(/images/arrow-circle-outline.svg) center/contain no-repeat;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .contact-area .contact::after {
    width: 3rem;
  }
}
.recruit-page .recruit-page-container .contact-area .contact:hover::after {
  background: url(/images/arrow-circle-white.svg) center/contain no-repeat;
}
@media only screen and (max-width: 1000px) {
  .recruit-page .recruit-page-container .contact-area .contact:hover::after {
    width: 3rem;
  }
}

[data-lang=en] .sm-title.within-content {
  display: none;
}
[data-lang=en] .read-more {
  padding: 0.8rem 1rem 0.8rem 1rem !important;
}

.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 5s linear;
  animation-fill-mode: forwards;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
* {
  --black: #2C3045;
  --grey:#8C96A6;
  --lightGrey: #C1C6CE;
  --formFont: "Poppins", sans-serif;
}

.popup-mask {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup {
  width: 45rem;
  min-height: 70rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: var(--grey);
}
@media only screen and (max-width: 740px) {
  .popup {
    width: 100%;
    height: 100%;
  }
}
.popup li {
  list-style: none;
  margin: 2rem;
}
.popup .form-item-accept {
  display: flex;
  align-items: center;
  font-family: var(--formFont);
}
.popup h1 {
  font-size: 5rem;
  font-weight: 600;
  font-family: var(--formFont);
  color: var(--black);
  text-align: start;
  width: 80%;
  margin-bottom: 2.5rem;
  position: relative;
}
.popup h1::after {
  content: "";
  background: #FF5600;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10%;
  height: 2px;
}
.popup .form-type-textarea {
  border: 1.6px #ccc solid;
  padding: 1rem;
}
.popup .form-type-textarea .form-item {
  width: 100%;
}
.popup .form-type-textarea textarea {
  resize: none;
}
.popup .detail-button {
  margin-left: 2rem;
  border: none;
}
.popup .detail-button input {
  width: 100%;
  height: 100%;
  background-color: #FF5600;
  border: none;
  color: white;
  cursor: pointer;
}

.pop {
  visibility: visible;
  z-index: 200;
  opacity: 1;
  transform: scale(1);
}

.popup form ul {
  list-style: none;
  margin-bottom: 2rem;
}
.popup form ul .form-item {
  color: var(--grey);
}

.popup form ul li div:not(.form-type-checkbox) {
  width: 35.5rem;
  padding: 1rem 0;
  margin-bottom: 16px;
  border: 1px solid var(--L2);
  box-sizing: content-box;
  display: flex;
}

.popup form ul li div.form-type-text {
  height: 2.2rem;
}

.popup form ul li div input,
.popup form ul li div textarea {
  border: none;
  height: 100%;
  padding-left: 16px;
}

.popup form ul li div input {
  border-left: 1px solid var(--grey);
  width: 256px;
}

.popup form ul li div textarea {
  width: 100%;
}

.popup a {
  color: var(--grey);
  text-decoration: none;
  font-size: 1.4rem;
}

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

.popup .form-type-checkbox label {
  padding-left: 2.4rem;
}

.popup input[type=checkbox] {
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 1rem;
}

.popup .inq-btn:disabled {
  filter: grayscale(1);
}

.popup input:focus {
  outline: none;
}

.popup form li.hidden {
  display: none;
}

#mask form cite {
  display: none;
}

#mask form li > div {
  position: relative;
}

#mask form li > div.error cite {
  display: block;
  position: absolute;
  right: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  background: #FF5600;
  color: white;
  top: 10px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 4px;
  opacity: 0.6;
}

#mask form li.icons > div.error cite {
  right: 8px;
}

#mask form li.icons > div > i {
  color: #8C96A6;
  border-right: 1px solid #CCC;
}

#mask form li.icons > div, #mask form textarea {
  width: 100%;
  /* border-radius: 4px; */
  border: 1px solid var(--lightGrey);
  /* padding-left: 16px; */
  /* padding-right: 16px; */
  /* line-height: 40px; */
  /* position: relative; */
}

#mask form textarea {
  padding-top: 12px;
  height: 140px;
  line-height: 24px;
  font-size: 13px;
}

#mask img {
  max-width: 80vw;
  max-height: 80vh;
}

#co-mask {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#covid19 {
  position: fixed;
  top: 50%;
  margin: 6vw;
  margin-top: -25vh;
  width: 80vw;
  padding: 48px;
  z-index: 100;
  background-color: #FFF;
}

#covid19 h2 {
  font-size: 28px;
  padding-top: 0;
}

#covid19 p {
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  footer:before {
    background-size: 24vw auto;
  }
  footer .wrapper {
    flex-wrap: wrap;
  }
  #covid19 {
    position: fixed;
    top: 50%;
    margin: 10vw;
    margin-top: -32vh;
    width: 80vw;
    padding: 24px;
    z-index: 100;
    background-color: #FFF;
  }
  #covid19 h2 {
    font-size: 12px;
    padding-top: 0;
  }
  #covid19 button {
    padding-left: 16px;
    padding-right: 16px;
  }
  #covid19 h2::after {
    content: unset;
  }
  #covid19 p {
    font-size: 12px !important;
  }
}
.form-item {
  font-family: var(--formFont);
  border: none;
  width: 80%;
}

[data-lang=en] .form-item {
  font-family: var(--formFont);
}

.input-container {
  width: 100%;
  padding: 1rem;
  /* border-radius: 4px; */
  border: 1px solid var(--lightGrey);
}
.input-container input {
  width: 80%;
}
.input-container input:not(:last-child) {
  border-left: 1.6px #ccc solid;
  padding-left: 1rem;
  margin-left: 1rem;
}

.contact-form {
  width: 100%;
  padding: 2rem;
  transition: ease-in-out 0.2s;
}
.contact-form .error-msg {
  padding: 1rem;
  border: 1px #FF5600 solid;
  color: #FF5600;
  border-radius: 3px;
  font-family: "Poppins";
}
.contact-form .error-msg p {
  font-size: 14px;
}
.contact-form .error-msg p::before {
  content: "・";
  display: inline-block;
}

.msg {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #FF5600;
  color: white;
  width: 100%;
  padding: 14px 28px;
  transition: 0.5s;
  opacity: 0;
  transform: translateY(100%);
  display: flex;
  align-items: center;
}
.msg::before {
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 0C14.3268 0 0 14.3268 0 32C0 49.6732 14.3268 64 32 64C49.6732 64 64 49.6732 64 32C64 14.3268 49.6732 0 32 0ZM32 6.19355C46.2622 6.19355 57.8064 17.7356 57.8064 32C57.8064 46.2622 46.2644 57.8064 32 57.8064C17.7378 57.8064 6.19355 46.2644 6.19355 32C6.19355 17.7378 17.7356 6.19355 32 6.19355ZM50.0908 23.0022L47.183 20.0708C46.5808 19.4637 45.6004 19.4597 44.9933 20.0621L26.7543 38.1544L19.0392 30.3768C18.437 29.7697 17.4566 29.7657 16.8495 30.3679L13.9181 33.2757C13.311 33.8779 13.307 34.8583 13.9093 35.4655L25.623 47.2741C26.2252 47.8812 27.2055 47.8852 27.8126 47.2828L50.0822 25.192C50.6892 24.5897 50.693 23.6093 50.0908 23.0022V23.0022Z' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 8px;
}
.msg.show {
  opacity: 1;
  transform: translateY(0%);
}

body[data-lang=en] {
  --lang-font-family: "Proxima Nova", Arial;
}

:root {
  --page-gutter: 16rem;
  --phase: 0;
  --lang-font-family: "YuGothic", "Poppins", "monospace", Helvetica, Arial, sans-serif;
  --titleFont: "AP-OTF-A1GothicStdN-Regular", "Proxima Nova";
  --boldness: 700;
  --lightness: 400;
  --lang-letter-spacing: 2px;
  --recruit-letter-spacing: 2px;
  --detail-button-letter-spacing: 1.2px;
}
@media only screen and (max-width: 1280px) {
  :root {
    --page-gutter: 6rem;
  }
}
@media only screen and (max-width: 740px) {
  :root {
    --page-gutter: 4rem;
  }
}
@media only screen and (max-width: 480px) {
  :root {
    --page-gutter: 2rem;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
  margin: 0;
  padding: 0;
}

html {
  font-family: "YuGothic", "Proxima Nova", "Poppins", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
html body {
  font-size: 1.6rem;
  overflow-x: hidden;
  width: 100vw;
}

.disabled {
  pointer-events: none;
}

input {
  outline: none;
}

a, a:link, a:visited {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

@media only screen and (max-width: 1000px) {
  [data-device][data-device=pc] {
    display: none !important;
  }
}
[data-device][data-device=mobile] {
  display: none;
}
@media only screen and (max-width: 1000px) {
  [data-device][data-device=mobile] {
    display: block;
  }
}

.logo {
  display: block;
  width: 11rem;
  height: 4.3rem;
  background: url(/images/evolany-logo-svg.svg) center/contain no-repeat;
  transform: translateY(-4%);
}

.hide {
  opacity: 0;
}

.inactive {
  display: none;
}

.detail-link {
  display: flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: var(--recruit-letter-spacing);
  font-weight: 700;
}
.detail-link::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.detail-link-mobile {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
}
.detail-link-mobile::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.link-mobile {
  display: flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: var(--lang-letter-spacing);
  font-weight: 700;
}
.link-mobile::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.detail-button {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  font-weight: --boldness;
  width: 26rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
.detail-button::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}

.contact_evolany {
  cursor: pointer;
}

.chatbot-mask {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  z-index: 10;
}
.chatbot-mask #simulator {
  position: absolute;
  z-index: 100;
  border: 0px;
  border-radius: 8px;
  inset: auto 16px 16px auto;
  width: 375px;
  height: 600px;
  right: 2rem;
  bottom: 2rem;
}
@media only screen and (max-width: 740px) {
  .chatbot-mask #simulator {
    position: unset;
    height: 100vh;
    width: 100vw;
    display: flex;
  }
}
.chatbot-mask .close-x {
  display: none;
  z-index: 100;
}
@media only screen and (max-width: 740px) {
  .chatbot-mask .close-x {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: white;
    width: 3.6rem;
    height: 3.6rem;
    top: 1rem;
    right: 4px;
    background: #FF5600;
  }
  .chatbot-mask .close-x::before, .chatbot-mask .close-x::after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 2.4rem;
    width: 2px;
    transition: width ease 0.3s;
    background-color: rgb(255, 255, 255);
  }
  .chatbot-mask .close-x::before {
    transform: rotate(45deg);
  }
  .chatbot-mask .close-x::after {
    transform: rotate(-45deg);
  }
}

.icon-fb, .icon-linkedin {
  width: 3.2rem;
  height: 3.2rem;
}

footer.contact {
  padding-left: 16rem;
  padding-right: 16rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #202438;
  color: white;
  display: grid;
  grid-template-areas: "logo navs snss" "copy copy copy";
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  justify-items: center;
  position: relative;
  font-family: "Poppins", sans-serif;
}
@media only screen and (max-width: 1000px) {
  footer.contact {
    padding: 2.5rem;
  }
}
footer.contact .fb-logo {
  width: 32px;
  height: 32px;
}
footer.contact .linkedin-logo {
  width: 32px;
  height: 32px;
}
footer.contact .logo {
  width: 14rem;
  height: 8rem;
  grid-area: logo;
  justify-self: flex-start;
}
@media only screen and (max-width: 1000px) {
  footer.contact .logo {
    margin: unset;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .logo {
    width: 8.7rem;
    height: 3.8rem;
  }
}
footer.contact .footer-links {
  justify-content: center;
  text-transform: capitalize;
  grid-area: navs;
  white-space: nowrap;
  display: flex;
  margin: 0 2rem 0 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links {
    flex-direction: column;
    margin: unset;
  }
}
footer.contact .footer-links > *:not(:first-child) {
  margin-left: 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links > *:not(:first-child) {
    margin-left: 0;
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links > *:first-child {
    margin-left: unset;
  }
}
@media only screen and (max-width: 740px) {
  footer.contact .footer-links > * {
    line-height: 1rem;
    margin-right: auto;
    font-size: 1.2rem;
    flex-direction: column;
  }
}
footer.contact .footer-sns-links {
  grid-area: snss;
  justify-self: flex-end;
  white-space: nowrap;
}
footer.contact .footer-sns-links [class|=icon] {
  font-size: 2.8rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links [class|=icon] {
    font-size: 2rem;
  }
}
footer.contact .footer-sns-links > * {
  vertical-align: middle;
}
footer.contact .footer-sns-links > *:not(:first-child) {
  margin-left: 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links > *:not(:first-child) {
    margin-left: 1.2rem;
  }
}
footer.contact .copyrights {
  grid-area: copy;
  text-align: center;
  font-size: 0.8em;
  opacity: 0.6;
  text-align: center;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 740px) {
  footer.contact .copyrights {
    font-size: 0.5em;
    margin-top: 1rem;
  }
}
footer.contact #privacy-logo {
  width: 8rem;
  margin-bottom: 2rem;
  filter: saturate(0) brightness(100);
}
@media only screen and (max-width: 1000px) {
  footer.contact #privacy-logo {
    width: 6rem;
    margin-bottom: unset;
  }
}
footer.contact .go-top {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF5600;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
}
footer.contact a.footbutton {
  position: relative;
}
footer.contact a.footbutton::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #FF5600;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
footer.contact a.footbutton:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
@media only screen and (max-width: 1000px) {
  footer.contact {
    grid-template-areas: "navs snss" "logo copy";
    grid-template-columns: max-content 1fr;
  }
  footer.contact .logo,
footer.contact .footer-links {
    justify-self: flex-start;
    margin-bottom: 1rem;
  }
  footer.contact .copyrights {
    transform: translateY(0.8em);
  }
  footer.contact .footer-sns-links,
footer.contact .copyrights {
    justify-self: flex-end;
  }
  footer.contact .footer-sns-links {
    align-self: flex-end;
    transform: translateY(4rem);
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1000px) {
  footer.contact .footer-sns-links {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links [class|=icon] {
    display: inline-block;
    transform: translateY(-1rem);
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links > * {
    vertical-align: bottom;
  }
}

header.nav {
  position: fixed;
  z-index: 7;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 4rem 2.4rem 4rem;
  color: white;
  letter-spacing: 2px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 740px) {
  header.nav {
    flex-shrink: 0;
    height: 7rem;
    padding: 1rem 2rem 1rem 2rem;
  }
}
header.nav .logo {
  flex-shrink: 0;
  width: 13.7rem;
  height: 6.1rem;
  z-index: -10;
}
@media only screen and (max-width: 740px) {
  header.nav .logo {
    width: 12rem;
    height: 6rem;
  }
}
header.nav .logo::after {
  content: "we're hiring!";
  color: #FF5600;
  position: absolute;
  font-family: "ProximaNova-Bold";
  left: 14rem;
  top: 2rem;
  width: fit-content;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.1px;
  pointer-events: none;
}
@media only screen and (max-width: 740px) {
  header.nav .logo::after {
    left: 12.5rem;
    top: 2rem;
  }
}
header.nav a.navbutton::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scale(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ff5600;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
header.nav a.navbutton:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header.nav.inverted {
  color: #2c3045;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px);
}
header.nav.inverted .logo {
  background-image: url(/images/evolany-logo-inverted.svg);
}
header.nav.sticky {
  position: sticky;
  top: 0;
}
header.nav nav {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
header.nav nav a {
  color: inherit;
  white-space: nowrap;
  position: relative;
  line-height: initial;
  height: initial;
}
header.nav nav a.on::before {
  content: "";
  display: block;
  height: 2px;
  background-color: #FF5600;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}
header.nav nav > a:not(:first-child) {
  margin-left: 4rem;
}
header.nav nav [class|=icon] {
  color: #FF5600;
  font-size: 2rem;
}
header.nav nav .i18n {
  display: flex;
  align-items: center;
  margin-left: 6rem;
}
header.nav nav .i18n a:not(:first-child) {
  margin-left: 2rem;
}
header.nav .hamburger-menus {
  color: #FF5600;
}
header.nav .hamburger-menus a {
  font-size: 3rem;
}

[data-lang=jp] .sidemenu .side-menu-lang [data-lang=jp] {
  position: relative;
}
[data-lang=jp] .sidemenu .side-menu-lang [data-lang=jp]::before {
  content: "";
  display: block;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}

[data-lang=en] .sidemenu .side-menu-lang [data-lang=en] {
  position: relative;
}
[data-lang=en] .sidemenu .side-menu-lang [data-lang=en]::before {
  content: "";
  display: block;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}

.sidemenu {
  position: fixed;
  background-color: #FF5600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 8;
  overflow: hidden;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  transition: 0.1s;
  top: 0;
  left: 0;
}
.sidemenu .side-menu-lang {
  display: flex;
  align-items: center;
  margin-left: 3rem;
  color: white;
  text-transform: uppercase;
  position: fixed;
  font-size: 2rem;
  font-weight: bold;
  top: 2rem;
  left: 2px;
  letter-spacing: 2px;
}
.sidemenu .side-menu-lang a:not(:first-child) {
  margin-left: 2rem;
}
.sidemenu .full-nav-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin-left: 3rem;
  margin-bottom: 6.5rem;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-items {
    padding-top: 14rem;
  }
}
.sidemenu .full-nav-items .item {
  color: white;
  letter-spacing: 2px;
  line-height: 6rem;
  font-size: 2.2rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  font-weight: bold;
  text-transform: uppercase;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-items .item {
    font-weight: 500;
    line-height: 5rem;
  }
}
.sidemenu .full-nav-sns-links {
  display: flex;
  width: 100%;
  color: white;
  font-size: 3rem;
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-sns-links {
    padding-bottom: 5rem;
    font-size: 2.5rem;
  }
}
.sidemenu .full-nav-sns-links > a {
  margin-left: 2.4rem;
  color: white;
}
.sidemenu .full-nav-sns-links > a:not(:last-child) {
  margin-left: 3rem;
}

.side-menu-on .sidemenu {
  transform: translateX(0);
}

.hamburger {
  position: fixed;
  display: block;
  width: 2.7rem;
  height: 2.7rem;
  cursor: pointer;
  z-index: 10;
  right: 2rem;
  top: 2rem;
}
.hamburger .bar, .hamburger::before, .hamburger::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ff5600;
  transition: transform 0.3s;
  z-index: 10;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
}
.hamburger::before {
  transform: translateY(-9px);
}
.hamburger::after {
  transform: translateY(9px);
}

.side-menu-on .hamburger .bar {
  opacity: 0;
}
.side-menu-on .hamburger::before {
  transform: rotate(-45deg);
  background-color: white;
}
.side-menu-on .hamburger::after {
  transform: rotate(45deg);
  background-color: white;
}

.privacy-policy-page header.nav, .personal-info-page header.nav {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px);
  position: fixed;
  width: 100%;
  top: 0;
}
.privacy-policy-page header.nav .logo, .personal-info-page header.nav .logo {
  display: block;
  width: 11rem;
  height: 4.3rem;
  background: url(/images/evolany-logo-inverted.svg) center/contain no-repeat;
  transform: translateY(-4%);
}
.privacy-policy-page header.nav .logo::after, .personal-info-page header.nav .logo::after {
  font-size: 1.2rem;
  left: 11rem;
  top: 1.2rem;
}
.privacy-policy-page header.nav nav, .personal-info-page header.nav nav {
  color: #2c3045;
}
.privacy-policy-page .privacy-page-container h3, .privacy-policy-page .personal-info-container h3, .personal-info-page .privacy-page-container h3, .personal-info-page .personal-info-container h3 {
  border-bottom: lightgrey solid 1px;
}
.privacy-policy-page .privacy-page-container h3::before, .privacy-policy-page .personal-info-container h3::before, .personal-info-page .privacy-page-container h3::before, .personal-info-page .personal-info-container h3::before {
  content: "";
  background: #ff5600;
  height: 100%;
  width: 2px;
}
.privacy-policy-page .privacy-page-container .back, .privacy-policy-page .personal-info-container .back, .personal-info-page .privacy-page-container .back, .personal-info-page .personal-info-container .back {
  position: fixed;
  top: 55rem;
  left: 0;
  transform: translateY(-50%);
  background-color: #ff5600;
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 740px) {
  .privacy-policy-page .privacy-page-container .back, .privacy-policy-page .personal-info-container .back, .personal-info-page .privacy-page-container .back, .personal-info-page .personal-info-container .back {
    display: none;
  }
}
.privacy-policy-page .privacy-page-container .back::before, .privacy-policy-page .personal-info-container .back::before, .personal-info-page .privacy-page-container .back::before, .personal-info-page .personal-info-container .back::before {
  content: "";
  color: white;
  font-weight: bold;
  font-size: 2.3rem;
  -webkit-text-stroke: 1px;
  line-height: 2.3rem;
  width: 1.8rem;
  height: 2.2rem;
  background: url(/images/back-arrow.svg) center/contain;
}
.privacy-policy-page .privacy-page-container .privacy-page-main, .privacy-policy-page .privacy-page-container .personal-info-main, .privacy-policy-page .personal-info-container .privacy-page-main, .privacy-policy-page .personal-info-container .personal-info-main, .personal-info-page .privacy-page-container .privacy-page-main, .personal-info-page .privacy-page-container .personal-info-main, .personal-info-page .personal-info-container .privacy-page-main, .personal-info-page .personal-info-container .personal-info-main {
  align-items: center;
  justify-content: center;
  color: black;
  margin: 16rem;
}
@media only screen and (max-width: 740px) {
  .privacy-policy-page .privacy-page-container .privacy-page-main, .privacy-policy-page .privacy-page-container .personal-info-main, .privacy-policy-page .personal-info-container .privacy-page-main, .privacy-policy-page .personal-info-container .personal-info-main, .personal-info-page .privacy-page-container .privacy-page-main, .personal-info-page .privacy-page-container .personal-info-main, .personal-info-page .personal-info-container .privacy-page-main, .personal-info-page .personal-info-container .personal-info-main {
    margin: 1rem;
  }
}
.privacy-policy-page .privacy-page-container .privacy-page-main .title, .privacy-policy-page .privacy-page-container .personal-info-main .title, .privacy-policy-page .personal-info-container .privacy-page-main .title, .privacy-policy-page .personal-info-container .personal-info-main .title, .personal-info-page .privacy-page-container .privacy-page-main .title, .personal-info-page .privacy-page-container .personal-info-main .title, .personal-info-page .personal-info-container .privacy-page-main .title, .personal-info-page .personal-info-container .personal-info-main .title {
  width: 100%;
  margin-bottom: 2rem;
  text-align: center;
}
@media only screen and (max-width: 740px) {
  .privacy-policy-page .privacy-page-container .privacy-page-main .title, .privacy-policy-page .privacy-page-container .personal-info-main .title, .privacy-policy-page .personal-info-container .privacy-page-main .title, .privacy-policy-page .personal-info-container .personal-info-main .title, .personal-info-page .privacy-page-container .privacy-page-main .title, .personal-info-page .privacy-page-container .personal-info-main .title, .personal-info-page .personal-info-container .privacy-page-main .title, .personal-info-page .personal-info-container .personal-info-main .title {
    padding: 8rem 1rem 1rem 1rem;
  }
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content, .privacy-policy-page .privacy-page-container .personal-info-main .content, .privacy-policy-page .personal-info-container .privacy-page-main .content, .privacy-policy-page .personal-info-container .personal-info-main .content, .personal-info-page .privacy-page-container .privacy-page-main .content, .personal-info-page .privacy-page-container .personal-info-main .content, .personal-info-page .personal-info-container .privacy-page-main .content, .personal-info-page .personal-info-container .personal-info-main .content {
  letter-spacing: 1.2px;
  line-height: 3.4rem;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content.personal-info ol, .privacy-policy-page .privacy-page-container .personal-info-main .content.personal-info ol, .privacy-policy-page .personal-info-container .privacy-page-main .content.personal-info ol, .privacy-policy-page .personal-info-container .personal-info-main .content.personal-info ol, .personal-info-page .privacy-page-container .privacy-page-main .content.personal-info ol, .personal-info-page .privacy-page-container .personal-info-main .content.personal-info ol, .personal-info-page .personal-info-container .privacy-page-main .content.personal-info ol, .personal-info-page .personal-info-container .personal-info-main .content.personal-info ol {
  list-style: none;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content.personal-info ol > li h3::before, .privacy-policy-page .privacy-page-container .personal-info-main .content.personal-info ol > li h3::before, .privacy-policy-page .personal-info-container .privacy-page-main .content.personal-info ol > li h3::before, .privacy-policy-page .personal-info-container .personal-info-main .content.personal-info ol > li h3::before, .personal-info-page .privacy-page-container .privacy-page-main .content.personal-info ol > li h3::before, .personal-info-page .privacy-page-container .personal-info-main .content.personal-info ol > li h3::before, .personal-info-page .personal-info-container .privacy-page-main .content.personal-info ol > li h3::before, .personal-info-page .personal-info-container .personal-info-main .content.personal-info ol > li h3::before {
  content: attr(seq) ") ";
  background-color: unset;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content .information, .privacy-policy-page .privacy-page-container .personal-info-main .content .information, .privacy-policy-page .personal-info-container .privacy-page-main .content .information, .privacy-policy-page .personal-info-container .personal-info-main .content .information, .personal-info-page .privacy-page-container .privacy-page-main .content .information, .personal-info-page .privacy-page-container .personal-info-main .content .information, .personal-info-page .personal-info-container .privacy-page-main .content .information, .personal-info-page .personal-info-container .personal-info-main .content .information {
  width: 100%;
  height: 20rem;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content .information ul, .privacy-policy-page .privacy-page-container .personal-info-main .content .information ul, .privacy-policy-page .personal-info-container .privacy-page-main .content .information ul, .privacy-policy-page .personal-info-container .personal-info-main .content .information ul, .personal-info-page .privacy-page-container .privacy-page-main .content .information ul, .personal-info-page .privacy-page-container .personal-info-main .content .information ul, .personal-info-page .personal-info-container .privacy-page-main .content .information ul, .personal-info-page .personal-info-container .personal-info-main .content .information ul {
  list-style-type: none;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content .privacy-list, .privacy-policy-page .privacy-page-container .personal-info-main .content .privacy-list, .privacy-policy-page .personal-info-container .privacy-page-main .content .privacy-list, .privacy-policy-page .personal-info-container .personal-info-main .content .privacy-list, .personal-info-page .privacy-page-container .privacy-page-main .content .privacy-list, .personal-info-page .privacy-page-container .personal-info-main .content .privacy-list, .personal-info-page .personal-info-container .privacy-page-main .content .privacy-list, .personal-info-page .personal-info-container .personal-info-main .content .privacy-list {
  list-style-type: lower-alpha;
  margin-left: 4rem;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content .privacy-list li, .privacy-policy-page .privacy-page-container .personal-info-main .content .privacy-list li, .privacy-policy-page .personal-info-container .privacy-page-main .content .privacy-list li, .privacy-policy-page .personal-info-container .personal-info-main .content .privacy-list li, .personal-info-page .privacy-page-container .privacy-page-main .content .privacy-list li, .personal-info-page .privacy-page-container .personal-info-main .content .privacy-list li, .personal-info-page .personal-info-container .privacy-page-main .content .privacy-list li, .personal-info-page .personal-info-container .personal-info-main .content .privacy-list li {
  padding: 1rem;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content .personal-info-list, .privacy-policy-page .privacy-page-container .personal-info-main .content .personal-info-list, .privacy-policy-page .personal-info-container .privacy-page-main .content .personal-info-list, .privacy-policy-page .personal-info-container .personal-info-main .content .personal-info-list, .personal-info-page .privacy-page-container .privacy-page-main .content .personal-info-list, .personal-info-page .privacy-page-container .personal-info-main .content .personal-info-list, .personal-info-page .personal-info-container .privacy-page-main .content .personal-info-list, .personal-info-page .personal-info-container .personal-info-main .content .personal-info-list {
  list-style-type: lower-alpha;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content .personal-info-list li, .privacy-policy-page .privacy-page-container .personal-info-main .content .personal-info-list li, .privacy-policy-page .personal-info-container .privacy-page-main .content .personal-info-list li, .privacy-policy-page .personal-info-container .personal-info-main .content .personal-info-list li, .personal-info-page .privacy-page-container .privacy-page-main .content .personal-info-list li, .personal-info-page .privacy-page-container .personal-info-main .content .personal-info-list li, .personal-info-page .personal-info-container .privacy-page-main .content .personal-info-list li, .personal-info-page .personal-info-container .personal-info-main .content .personal-info-list li {
  padding: 2rem;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content .personal-info-list li p, .privacy-policy-page .privacy-page-container .personal-info-main .content .personal-info-list li p, .privacy-policy-page .personal-info-container .privacy-page-main .content .personal-info-list li p, .privacy-policy-page .personal-info-container .personal-info-main .content .personal-info-list li p, .personal-info-page .privacy-page-container .privacy-page-main .content .personal-info-list li p, .personal-info-page .privacy-page-container .personal-info-main .content .personal-info-list li p, .personal-info-page .personal-info-container .privacy-page-main .content .personal-info-list li p, .personal-info-page .personal-info-container .personal-info-main .content .personal-info-list li p {
  padding: 1rem;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content .ijou, .privacy-policy-page .privacy-page-container .personal-info-main .content .ijou, .privacy-policy-page .personal-info-container .privacy-page-main .content .ijou, .privacy-policy-page .personal-info-container .personal-info-main .content .ijou, .personal-info-page .privacy-page-container .privacy-page-main .content .ijou, .personal-info-page .privacy-page-container .personal-info-main .content .ijou, .personal-info-page .personal-info-container .privacy-page-main .content .ijou, .personal-info-page .personal-info-container .personal-info-main .content .ijou {
  margin: 4rem 0 8rem 0;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content .ijou .subtitle, .privacy-policy-page .privacy-page-container .personal-info-main .content .ijou .subtitle, .privacy-policy-page .personal-info-container .privacy-page-main .content .ijou .subtitle, .privacy-policy-page .personal-info-container .personal-info-main .content .ijou .subtitle, .personal-info-page .privacy-page-container .privacy-page-main .content .ijou .subtitle, .personal-info-page .privacy-page-container .personal-info-main .content .ijou .subtitle, .personal-info-page .personal-info-container .privacy-page-main .content .ijou .subtitle, .personal-info-page .personal-info-container .personal-info-main .content .ijou .subtitle {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content #privacy-table, .privacy-policy-page .privacy-page-container .personal-info-main .content #privacy-table, .privacy-policy-page .personal-info-container .privacy-page-main .content #privacy-table, .privacy-policy-page .personal-info-container .personal-info-main .content #privacy-table, .personal-info-page .privacy-page-container .privacy-page-main .content #privacy-table, .personal-info-page .privacy-page-container .personal-info-main .content #privacy-table, .personal-info-page .personal-info-container .privacy-page-main .content #privacy-table, .personal-info-page .personal-info-container .personal-info-main .content #privacy-table {
  border-collapse: collapse;
  width: 100%;
  margin: 4rem 0 4rem 0;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content #privacy-table td, .privacy-policy-page .privacy-page-container .privacy-page-main .content #privacy-table th, .privacy-policy-page .privacy-page-container .personal-info-main .content #privacy-table td, .privacy-policy-page .privacy-page-container .personal-info-main .content #privacy-table th, .privacy-policy-page .personal-info-container .privacy-page-main .content #privacy-table td, .privacy-policy-page .personal-info-container .privacy-page-main .content #privacy-table th, .privacy-policy-page .personal-info-container .personal-info-main .content #privacy-table td, .privacy-policy-page .personal-info-container .personal-info-main .content #privacy-table th, .personal-info-page .privacy-page-container .privacy-page-main .content #privacy-table td, .personal-info-page .privacy-page-container .privacy-page-main .content #privacy-table th, .personal-info-page .privacy-page-container .personal-info-main .content #privacy-table td, .personal-info-page .privacy-page-container .personal-info-main .content #privacy-table th, .personal-info-page .personal-info-container .privacy-page-main .content #privacy-table td, .personal-info-page .personal-info-container .privacy-page-main .content #privacy-table th, .personal-info-page .personal-info-container .personal-info-main .content #privacy-table td, .personal-info-page .personal-info-container .personal-info-main .content #privacy-table th {
  border: 1px solid #ddd;
  padding: 8px;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content #privacy-table th, .privacy-policy-page .privacy-page-container .personal-info-main .content #privacy-table th, .privacy-policy-page .personal-info-container .privacy-page-main .content #privacy-table th, .privacy-policy-page .personal-info-container .personal-info-main .content #privacy-table th, .personal-info-page .privacy-page-container .privacy-page-main .content #privacy-table th, .personal-info-page .privacy-page-container .personal-info-main .content #privacy-table th, .personal-info-page .personal-info-container .privacy-page-main .content #privacy-table th, .personal-info-page .personal-info-container .personal-info-main .content #privacy-table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #FF5600;
  color: white;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content #privacy-table tr:nth-child(even), .privacy-policy-page .privacy-page-container .personal-info-main .content #privacy-table tr:nth-child(even), .privacy-policy-page .personal-info-container .privacy-page-main .content #privacy-table tr:nth-child(even), .privacy-policy-page .personal-info-container .personal-info-main .content #privacy-table tr:nth-child(even), .personal-info-page .privacy-page-container .privacy-page-main .content #privacy-table tr:nth-child(even), .personal-info-page .privacy-page-container .personal-info-main .content #privacy-table tr:nth-child(even), .personal-info-page .personal-info-container .privacy-page-main .content #privacy-table tr:nth-child(even), .personal-info-page .personal-info-container .personal-info-main .content #privacy-table tr:nth-child(even) {
  background-color: #f2f2f2;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content #privacy-table tr:hover, .privacy-policy-page .privacy-page-container .personal-info-main .content #privacy-table tr:hover, .privacy-policy-page .personal-info-container .privacy-page-main .content #privacy-table tr:hover, .privacy-policy-page .personal-info-container .personal-info-main .content #privacy-table tr:hover, .personal-info-page .privacy-page-container .privacy-page-main .content #privacy-table tr:hover, .personal-info-page .privacy-page-container .personal-info-main .content #privacy-table tr:hover, .personal-info-page .personal-info-container .privacy-page-main .content #privacy-table tr:hover, .personal-info-page .personal-info-container .personal-info-main .content #privacy-table tr:hover {
  background-color: #ddd;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content .data-protection .data-protection-list, .privacy-policy-page .privacy-page-container .personal-info-main .content .data-protection .data-protection-list, .privacy-policy-page .personal-info-container .privacy-page-main .content .data-protection .data-protection-list, .privacy-policy-page .personal-info-container .personal-info-main .content .data-protection .data-protection-list, .personal-info-page .privacy-page-container .privacy-page-main .content .data-protection .data-protection-list, .personal-info-page .privacy-page-container .personal-info-main .content .data-protection .data-protection-list, .personal-info-page .personal-info-container .privacy-page-main .content .data-protection .data-protection-list, .personal-info-page .personal-info-container .personal-info-main .content .data-protection .data-protection-list {
  list-style-type: none;
  margin-left: 4rem;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content .data-protection .data-protection-list li, .privacy-policy-page .privacy-page-container .personal-info-main .content .data-protection .data-protection-list li, .privacy-policy-page .personal-info-container .privacy-page-main .content .data-protection .data-protection-list li, .privacy-policy-page .personal-info-container .personal-info-main .content .data-protection .data-protection-list li, .personal-info-page .privacy-page-container .privacy-page-main .content .data-protection .data-protection-list li, .personal-info-page .privacy-page-container .personal-info-main .content .data-protection .data-protection-list li, .personal-info-page .personal-info-container .privacy-page-main .content .data-protection .data-protection-list li, .personal-info-page .personal-info-container .personal-info-main .content .data-protection .data-protection-list li {
  margin-left: 4rem;
  padding: 1rem;
  list-style-type: none;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content .data-protection .data-protection-list.second, .privacy-policy-page .privacy-page-container .personal-info-main .content .data-protection .data-protection-list.second, .privacy-policy-page .personal-info-container .privacy-page-main .content .data-protection .data-protection-list.second, .privacy-policy-page .personal-info-container .personal-info-main .content .data-protection .data-protection-list.second, .personal-info-page .privacy-page-container .privacy-page-main .content .data-protection .data-protection-list.second, .personal-info-page .privacy-page-container .personal-info-main .content .data-protection .data-protection-list.second, .personal-info-page .personal-info-container .privacy-page-main .content .data-protection .data-protection-list.second, .personal-info-page .personal-info-container .personal-info-main .content .data-protection .data-protection-list.second {
  list-style-type: none;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content .data-protection .final-ijou, .privacy-policy-page .privacy-page-container .personal-info-main .content .data-protection .final-ijou, .privacy-policy-page .personal-info-container .privacy-page-main .content .data-protection .final-ijou, .privacy-policy-page .personal-info-container .personal-info-main .content .data-protection .final-ijou, .personal-info-page .privacy-page-container .privacy-page-main .content .data-protection .final-ijou, .personal-info-page .privacy-page-container .personal-info-main .content .data-protection .final-ijou, .personal-info-page .personal-info-container .privacy-page-main .content .data-protection .final-ijou, .personal-info-page .personal-info-container .personal-info-main .content .data-protection .final-ijou {
  text-align: right;
}
.privacy-policy-page .privacy-page-container .privacy-page-main .content .numbered-list, .privacy-policy-page .privacy-page-container .personal-info-main .content .numbered-list, .privacy-policy-page .personal-info-container .privacy-page-main .content .numbered-list, .privacy-policy-page .personal-info-container .personal-info-main .content .numbered-list, .personal-info-page .privacy-page-container .privacy-page-main .content .numbered-list, .personal-info-page .privacy-page-container .personal-info-main .content .numbered-list, .personal-info-page .personal-info-container .privacy-page-main .content .numbered-list, .personal-info-page .personal-info-container .personal-info-main .content .numbered-list {
  list-style-type: none;
}

.employment header.nav {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px);
  position: fixed;
  width: 100%;
  top: 0;
}
.employment header.nav .logo {
  display: block;
  width: 11rem;
  height: 4.3rem;
  background: url(/images/evolany-logo-inverted.svg) center/contain no-repeat;
  transform: translateY(-4%);
}
.employment header.nav .logo::after {
  font-size: 1.2rem;
  left: 11rem;
  top: 1.2rem;
}
.employment header.nav nav {
  color: #2c3045;
}
.employment .employment-main {
  align-items: center;
  justify-content: center;
  color: black;
  margin: 16rem;
}
@media only screen and (max-width: 740px) {
  .employment .employment-main {
    margin: 4rem;
  }
}
.employment .employment-main .title {
  width: 100%;
  text-align: center;
}
.employment .employment-main .eng {
  text-align: center;
  color: #FF5600;
  font-family: "ProximaNova-Bold";
  font-size: 1.8rem;
  margin-bottom: 6rem;
}
.employment .employment-main .content {
  letter-spacing: 0.64px;
  line-height: 3.4rem;
}
.employment .employment-main .content h2 {
  margin-top: 5.5rem;
  margin-bottom: 2.8rem;
  font-size: 2.6rem;
}
.employment .employment-main .content .paragraph {
  margin-bottom: 4rem;
  margin-top: 1rem;
}
.employment .employment-main .content ul {
  list-style-type: none;
}
.employment .employment-main .content .intro {
  background-color: #F8F8F8;
  padding: 6rem;
}
.employment .employment-main .content .schedule-area .step-content .paragraph {
  display: flex;
}
.employment .employment-main .content .schedule-area .step-content .paragraph:first-child {
  margin-top: 8rem;
}
.employment .employment-main .content .schedule-area .step-content .paragraph .circle-area {
  width: 20%;
  margin-right: 2rem;
}
.employment .employment-main .content .schedule-area .step-content .paragraph .circle-area .circle {
  width: 7rem;
  height: 7rem;
  background-color: #2c3045;
  border-radius: 50%;
  margin-top: 1rem;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "ProximaNova-Bold";
  text-transform: uppercase;
}
.employment .employment-main .content .schedule-area .step-content .paragraph .circle-area .circle p {
  font-size: 1.2rem;
  height: 2.2rem;
}
.employment .employment-main .content .schedule-area .step-content .paragraph .circle-area .circle p:last-child {
  font-size: 2.8rem;
  height: 3rem;
  margin-bottom: 0.8rem;
}
.employment .employment-main .content .schedule-area .step-line {
  border-top: 1px dashed rgb(194, 194, 194);
  height: 1px;
  margin-top: -4rem;
}
.employment .employment-main .content .schedule-area .steps-outline {
  display: flex;
  justify-content: space-around;
}
.employment .employment-main .content .schedule-area .steps-outline .step {
  color: #2c3045;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.employment .employment-main .content .schedule-area .steps-outline .step::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  -moz-border-radius: 7.5px;
  -webkit-border-radius: 7.5px;
  border-radius: 7.5px;
  background-color: #2c3045;
  display: flex;
  order: 2;
}
.employment .employment-main .content .schedule-area .steps-outline .step::after {
  content: "nothing";
  color: #2c3045;
  font-size: 1.8rem;
  font-family: "ProximaNova-Bold";
  display: flex;
  order: 3;
}
.employment .employment-main .content .schedule-area .steps-outline .step .step-text {
  text-transform: uppercase;
  font-size: 1.8rem;
  font-family: "ProximaNova-Bold";
}
.employment .employment-main .content .schedule-area .steps-outline .step span {
  font-size: 3.2rem;
}
.employment .employment-main .content .schedule-area .steps-outline .step:first-child::after {
  content: "書類選考";
}
.employment .employment-main .content .schedule-area .steps-outline .step:nth-child(2)::after {
  content: "一次審査面接";
}
.employment .employment-main .content .schedule-area .steps-outline .step:nth-child(3)::after {
  content: "最終面接";
}
.employment .employment-main .content .schedule-area .steps-outline .step:nth-child(4)::after {
  content: "内々定";
}
.employment .employment-main .content .schedule-area .steps-outline .step:first-child::after {
  content: "書類選考";
}
.employment .employment-main .content .schedule-area .steps-outline .step:nth-child(2)::after {
  content: "一次審査面接";
}
.employment .employment-main .content .schedule-area .steps-outline .step:nth-child(3)::after {
  content: "最終面接";
}
.employment .employment-main .content .schedule-area .steps-outline .step:nth-child(4)::after {
  content: "内々定";
}
.employment .employment-main .content .schedule-area .steps-outline .step:first-child::after {
  content: "書類選考";
}
.employment .employment-main .content .schedule-area .steps-outline .step:nth-child(2)::after {
  content: "一次審査面接";
}
.employment .employment-main .content .schedule-area .steps-outline .step:nth-child(3)::after {
  content: "最終面接";
}
.employment .employment-main .content .schedule-area .steps-outline .step:nth-child(4)::after {
  content: "内々定";
}
.employment .employment-main .content .schedule-area .steps-outline .step:first-child::after {
  content: "書類選考";
}
.employment .employment-main .content .schedule-area .steps-outline .step:nth-child(2)::after {
  content: "一次審査面接";
}
.employment .employment-main .content .schedule-area .steps-outline .step:nth-child(3)::after {
  content: "最終面接";
}
.employment .employment-main .content .schedule-area .steps-outline .step:nth-child(4)::after {
  content: "内々定";
}

body[data-lang=en] {
  --lang-font-family: "Proxima Nova", Arial;
}

:root {
  --page-gutter: 16rem;
  --phase: 0;
  --lang-font-family: "YuGothic", "Poppins", "monospace", Helvetica, Arial, sans-serif;
  --titleFont: "AP-OTF-A1GothicStdN-Regular", "Proxima Nova";
  --boldness: 700;
  --lightness: 400;
  --lang-letter-spacing: 2px;
  --recruit-letter-spacing: 2px;
  --detail-button-letter-spacing: 1.2px;
}
@media only screen and (max-width: 1280px) {
  :root {
    --page-gutter: 6rem;
  }
}
@media only screen and (max-width: 740px) {
  :root {
    --page-gutter: 4rem;
  }
}
@media only screen and (max-width: 480px) {
  :root {
    --page-gutter: 2rem;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
  margin: 0;
  padding: 0;
}

html {
  font-family: "YuGothic", "Proxima Nova", "Poppins", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
html body {
  font-size: 1.6rem;
  overflow-x: hidden;
  width: 100vw;
}

.disabled {
  pointer-events: none;
}

input {
  outline: none;
}

a, a:link, a:visited {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

@media only screen and (max-width: 1000px) {
  [data-device][data-device=pc] {
    display: none !important;
  }
}
[data-device][data-device=mobile] {
  display: none;
}
@media only screen and (max-width: 1000px) {
  [data-device][data-device=mobile] {
    display: block;
  }
}

.logo {
  display: block;
  width: 11rem;
  height: 4.3rem;
  background: url(/images/evolany-logo-svg.svg) center/contain no-repeat;
  transform: translateY(-4%);
}

.hide {
  opacity: 0;
}

.inactive {
  display: none;
}

.detail-link {
  display: flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: var(--recruit-letter-spacing);
  font-weight: 700;
}
.detail-link::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.detail-link-mobile {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
}
.detail-link-mobile::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.link-mobile {
  display: flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: var(--lang-letter-spacing);
  font-weight: 700;
}
.link-mobile::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(/images/arrow.svg) center/contain no-repeat;
}

.detail-button {
  background-color: #FF5600;
  color: white !important;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: var(--detail-button-letter-spacing);
  font-family: var(--lang-font-family);
  font-weight: --boldness;
  width: 26rem;
  height: 6rem;
  text-align: center;
  justify-content: center;
}
.detail-button::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/images/arrow-2.svg) center/contain no-repeat;
  right: 1rem;
}

.contact_evolany {
  cursor: pointer;
}

.chatbot-mask {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  z-index: 10;
}
.chatbot-mask #simulator {
  position: absolute;
  z-index: 100;
  border: 0px;
  border-radius: 8px;
  inset: auto 16px 16px auto;
  width: 375px;
  height: 600px;
  right: 2rem;
  bottom: 2rem;
}
@media only screen and (max-width: 740px) {
  .chatbot-mask #simulator {
    position: unset;
    height: 100vh;
    width: 100vw;
    display: flex;
  }
}
.chatbot-mask .close-x {
  display: none;
  z-index: 100;
}
@media only screen and (max-width: 740px) {
  .chatbot-mask .close-x {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: white;
    width: 3.6rem;
    height: 3.6rem;
    top: 1rem;
    right: 4px;
    background: #FF5600;
  }
  .chatbot-mask .close-x::before, .chatbot-mask .close-x::after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 2.4rem;
    width: 2px;
    transition: width ease 0.3s;
    background-color: rgb(255, 255, 255);
  }
  .chatbot-mask .close-x::before {
    transform: rotate(45deg);
  }
  .chatbot-mask .close-x::after {
    transform: rotate(-45deg);
  }
}

.icon-fb, .icon-linkedin {
  width: 3.2rem;
  height: 3.2rem;
}

footer.contact {
  padding-left: 16rem;
  padding-right: 16rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #202438;
  color: white;
  display: grid;
  grid-template-areas: "logo navs snss" "copy copy copy";
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  justify-items: center;
  position: relative;
  font-family: "Poppins", sans-serif;
}
@media only screen and (max-width: 1000px) {
  footer.contact {
    padding: 2.5rem;
  }
}
footer.contact .fb-logo {
  width: 32px;
  height: 32px;
}
footer.contact .linkedin-logo {
  width: 32px;
  height: 32px;
}
footer.contact .logo {
  width: 14rem;
  height: 8rem;
  grid-area: logo;
  justify-self: flex-start;
}
@media only screen and (max-width: 1000px) {
  footer.contact .logo {
    margin: unset;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .logo {
    width: 8.7rem;
    height: 3.8rem;
  }
}
footer.contact .footer-links {
  justify-content: center;
  text-transform: capitalize;
  grid-area: navs;
  white-space: nowrap;
  display: flex;
  margin: 0 2rem 0 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links {
    flex-direction: column;
    margin: unset;
  }
}
footer.contact .footer-links > *:not(:first-child) {
  margin-left: 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links > *:not(:first-child) {
    margin-left: 0;
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-links > *:first-child {
    margin-left: unset;
  }
}
@media only screen and (max-width: 740px) {
  footer.contact .footer-links > * {
    line-height: 1rem;
    margin-right: auto;
    font-size: 1.2rem;
    flex-direction: column;
  }
}
footer.contact .footer-sns-links {
  grid-area: snss;
  justify-self: flex-end;
  white-space: nowrap;
}
footer.contact .footer-sns-links [class|=icon] {
  font-size: 2.8rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links [class|=icon] {
    font-size: 2rem;
  }
}
footer.contact .footer-sns-links > * {
  vertical-align: middle;
}
footer.contact .footer-sns-links > *:not(:first-child) {
  margin-left: 2rem;
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links > *:not(:first-child) {
    margin-left: 1.2rem;
  }
}
footer.contact .copyrights {
  grid-area: copy;
  text-align: center;
  font-size: 0.8em;
  opacity: 0.6;
  text-align: center;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 740px) {
  footer.contact .copyrights {
    font-size: 0.5em;
    margin-top: 1rem;
  }
}
footer.contact #privacy-logo {
  width: 8rem;
  margin-bottom: 2rem;
  filter: saturate(0) brightness(100);
}
@media only screen and (max-width: 1000px) {
  footer.contact #privacy-logo {
    width: 6rem;
    margin-bottom: unset;
  }
}
footer.contact .go-top {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF5600;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
}
footer.contact a.footbutton {
  position: relative;
}
footer.contact a.footbutton::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #FF5600;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
footer.contact a.footbutton:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
@media only screen and (max-width: 1000px) {
  footer.contact {
    grid-template-areas: "navs snss" "logo copy";
    grid-template-columns: max-content 1fr;
  }
  footer.contact .logo,
footer.contact .footer-links {
    justify-self: flex-start;
    margin-bottom: 1rem;
  }
  footer.contact .copyrights {
    transform: translateY(0.8em);
  }
  footer.contact .footer-sns-links,
footer.contact .copyrights {
    justify-self: flex-end;
  }
  footer.contact .footer-sns-links {
    align-self: flex-end;
    transform: translateY(4rem);
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1000px) {
  footer.contact .footer-sns-links {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links [class|=icon] {
    display: inline-block;
    transform: translateY(-1rem);
  }
}
@media only screen and (max-width: 1000px) {
  footer.contact .footer-sns-links > * {
    vertical-align: bottom;
  }
}

header.nav {
  position: fixed;
  z-index: 7;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 4rem 2.4rem 4rem;
  color: white;
  letter-spacing: 2px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 740px) {
  header.nav {
    flex-shrink: 0;
    height: 7rem;
    padding: 1rem 2rem 1rem 2rem;
  }
}
header.nav .logo {
  flex-shrink: 0;
  width: 13.7rem;
  height: 6.1rem;
  z-index: -10;
}
@media only screen and (max-width: 740px) {
  header.nav .logo {
    width: 12rem;
    height: 6rem;
  }
}
header.nav .logo::after {
  content: "we're hiring!";
  color: #FF5600;
  position: absolute;
  font-family: "ProximaNova-Bold";
  left: 14rem;
  top: 2rem;
  width: fit-content;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.1px;
  pointer-events: none;
}
@media only screen and (max-width: 740px) {
  header.nav .logo::after {
    left: 12.5rem;
    top: 2rem;
  }
}
header.nav a.navbutton::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scale(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ff5600;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
header.nav a.navbutton:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header.nav.inverted {
  color: #2c3045;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px);
}
header.nav.inverted .logo {
  background-image: url(/images/evolany-logo-inverted.svg);
}
header.nav.sticky {
  position: sticky;
  top: 0;
}
header.nav nav {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
header.nav nav a {
  color: inherit;
  white-space: nowrap;
  position: relative;
  line-height: initial;
  height: initial;
}
header.nav nav a.on::before {
  content: "";
  display: block;
  height: 2px;
  background-color: #FF5600;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}
header.nav nav > a:not(:first-child) {
  margin-left: 4rem;
}
header.nav nav [class|=icon] {
  color: #FF5600;
  font-size: 2rem;
}
header.nav nav .i18n {
  display: flex;
  align-items: center;
  margin-left: 6rem;
}
header.nav nav .i18n a:not(:first-child) {
  margin-left: 2rem;
}
header.nav .hamburger-menus {
  color: #FF5600;
}
header.nav .hamburger-menus a {
  font-size: 3rem;
}

[data-lang=jp] .sidemenu .side-menu-lang [data-lang=jp] {
  position: relative;
}
[data-lang=jp] .sidemenu .side-menu-lang [data-lang=jp]::before {
  content: "";
  display: block;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}

[data-lang=en] .sidemenu .side-menu-lang [data-lang=en] {
  position: relative;
}
[data-lang=en] .sidemenu .side-menu-lang [data-lang=en]::before {
  content: "";
  display: block;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}

.sidemenu {
  position: fixed;
  background-color: #FF5600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 8;
  overflow: hidden;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  transition: 0.1s;
  top: 0;
  left: 0;
}
.sidemenu .side-menu-lang {
  display: flex;
  align-items: center;
  margin-left: 3rem;
  color: white;
  text-transform: uppercase;
  position: fixed;
  font-size: 2rem;
  font-weight: bold;
  top: 2rem;
  left: 2px;
  letter-spacing: 2px;
}
.sidemenu .side-menu-lang a:not(:first-child) {
  margin-left: 2rem;
}
.sidemenu .full-nav-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin-left: 3rem;
  margin-bottom: 6.5rem;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-items {
    padding-top: 14rem;
  }
}
.sidemenu .full-nav-items .item {
  color: white;
  letter-spacing: 2px;
  line-height: 6rem;
  font-size: 2.2rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  font-weight: bold;
  text-transform: uppercase;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-items .item {
    font-weight: 500;
    line-height: 5rem;
  }
}
.sidemenu .full-nav-sns-links {
  display: flex;
  width: 100%;
  color: white;
  font-size: 3rem;
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (max-width: 740px) {
  .sidemenu .full-nav-sns-links {
    padding-bottom: 5rem;
    font-size: 2.5rem;
  }
}
.sidemenu .full-nav-sns-links > a {
  margin-left: 2.4rem;
  color: white;
}
.sidemenu .full-nav-sns-links > a:not(:last-child) {
  margin-left: 3rem;
}

.side-menu-on .sidemenu {
  transform: translateX(0);
}

.hamburger {
  position: fixed;
  display: block;
  width: 2.7rem;
  height: 2.7rem;
  cursor: pointer;
  z-index: 10;
  right: 2rem;
  top: 2rem;
}
.hamburger .bar, .hamburger::before, .hamburger::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ff5600;
  transition: transform 0.3s;
  z-index: 10;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
}
.hamburger::before {
  transform: translateY(-9px);
}
.hamburger::after {
  transform: translateY(9px);
}

.side-menu-on .hamburger .bar {
  opacity: 0;
}
.side-menu-on .hamburger::before {
  transform: rotate(-45deg);
  background-color: white;
}
.side-menu-on .hamburger::after {
  transform: rotate(45deg);
  background-color: white;
}

.security-policy-page header.nav, .personal-info-page header.nav {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px);
  position: fixed;
  width: 100%;
  top: 0;
}
.security-policy-page header.nav .logo, .personal-info-page header.nav .logo {
  display: block;
  width: 11rem;
  height: 4.3rem;
  background: url(/images/evolany-logo-inverted.svg) center/contain no-repeat;
  transform: translateY(-4%);
}
.security-policy-page header.nav .logo::after, .personal-info-page header.nav .logo::after {
  font-size: 1.2rem;
  left: 11rem;
  top: 1.2rem;
}
.security-policy-page header.nav nav, .personal-info-page header.nav nav {
  color: #2c3045;
}
.security-policy-page .security-page-container h3, .security-policy-page .personal-info-container h3, .personal-info-page .security-page-container h3, .personal-info-page .personal-info-container h3 {
  border-bottom: lightgrey solid 1px;
}
.security-policy-page .security-page-container h3::before, .security-policy-page .personal-info-container h3::before, .personal-info-page .security-page-container h3::before, .personal-info-page .personal-info-container h3::before {
  content: "";
  background: #ff5600;
  height: 100%;
  width: 2px;
}
.security-policy-page .security-page-container .back, .security-policy-page .personal-info-container .back, .personal-info-page .security-page-container .back, .personal-info-page .personal-info-container .back {
  position: fixed;
  top: 55rem;
  left: 0;
  transform: translateY(-50%);
  background-color: #ff5600;
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 740px) {
  .security-policy-page .security-page-container .back, .security-policy-page .personal-info-container .back, .personal-info-page .security-page-container .back, .personal-info-page .personal-info-container .back {
    display: none;
  }
}
.security-policy-page .security-page-container .back::before, .security-policy-page .personal-info-container .back::before, .personal-info-page .security-page-container .back::before, .personal-info-page .personal-info-container .back::before {
  content: "";
  color: white;
  font-weight: bold;
  font-size: 2.3rem;
  -webkit-text-stroke: 1px;
  line-height: 2.3rem;
  width: 1.8rem;
  height: 2.2rem;
  background: url(/images/back-arrow.svg) center/contain;
}
.security-policy-page .security-page-container .security-page-main, .security-policy-page .security-page-container .personal-info-main, .security-policy-page .personal-info-container .security-page-main, .security-policy-page .personal-info-container .personal-info-main, .personal-info-page .security-page-container .security-page-main, .personal-info-page .security-page-container .personal-info-main, .personal-info-page .personal-info-container .security-page-main, .personal-info-page .personal-info-container .personal-info-main {
  align-items: center;
  justify-content: center;
  color: black;
  margin: 16rem;
}
@media only screen and (max-width: 740px) {
  .security-policy-page .security-page-container .security-page-main, .security-policy-page .security-page-container .personal-info-main, .security-policy-page .personal-info-container .security-page-main, .security-policy-page .personal-info-container .personal-info-main, .personal-info-page .security-page-container .security-page-main, .personal-info-page .security-page-container .personal-info-main, .personal-info-page .personal-info-container .security-page-main, .personal-info-page .personal-info-container .personal-info-main {
    margin: 1rem;
  }
}
.security-policy-page .security-page-container .security-page-main .title, .security-policy-page .security-page-container .personal-info-main .title, .security-policy-page .personal-info-container .security-page-main .title, .security-policy-page .personal-info-container .personal-info-main .title, .personal-info-page .security-page-container .security-page-main .title, .personal-info-page .security-page-container .personal-info-main .title, .personal-info-page .personal-info-container .security-page-main .title, .personal-info-page .personal-info-container .personal-info-main .title {
  width: 100%;
  margin-bottom: 2rem;
  text-align: center;
}
.security-policy-page .security-page-container .security-page-main .title h1, .security-policy-page .security-page-container .personal-info-main .title h1, .security-policy-page .personal-info-container .security-page-main .title h1, .security-policy-page .personal-info-container .personal-info-main .title h1, .personal-info-page .security-page-container .security-page-main .title h1, .personal-info-page .security-page-container .personal-info-main .title h1, .personal-info-page .personal-info-container .security-page-main .title h1, .personal-info-page .personal-info-container .personal-info-main .title h1 {
  font-size: 1.7em;
}
@media only screen and (max-width: 740px) {
  .security-policy-page .security-page-container .security-page-main .title, .security-policy-page .security-page-container .personal-info-main .title, .security-policy-page .personal-info-container .security-page-main .title, .security-policy-page .personal-info-container .personal-info-main .title, .personal-info-page .security-page-container .security-page-main .title, .personal-info-page .security-page-container .personal-info-main .title, .personal-info-page .personal-info-container .security-page-main .title, .personal-info-page .personal-info-container .personal-info-main .title {
    padding: 8rem 1rem 1rem 1rem;
  }
}
.security-policy-page .security-page-container .security-page-main .content, .security-policy-page .security-page-container .personal-info-main .content, .security-policy-page .personal-info-container .security-page-main .content, .security-policy-page .personal-info-container .personal-info-main .content, .personal-info-page .security-page-container .security-page-main .content, .personal-info-page .security-page-container .personal-info-main .content, .personal-info-page .personal-info-container .security-page-main .content, .personal-info-page .personal-info-container .personal-info-main .content {
  letter-spacing: 1.2px;
  line-height: 3.4rem;
}
.security-policy-page .security-page-container .security-page-main .content.personal-info ol, .security-policy-page .security-page-container .personal-info-main .content.personal-info ol, .security-policy-page .personal-info-container .security-page-main .content.personal-info ol, .security-policy-page .personal-info-container .personal-info-main .content.personal-info ol, .personal-info-page .security-page-container .security-page-main .content.personal-info ol, .personal-info-page .security-page-container .personal-info-main .content.personal-info ol, .personal-info-page .personal-info-container .security-page-main .content.personal-info ol, .personal-info-page .personal-info-container .personal-info-main .content.personal-info ol {
  list-style: none;
}
.security-policy-page .security-page-container .security-page-main .content.personal-info ol > li h3::before, .security-policy-page .security-page-container .personal-info-main .content.personal-info ol > li h3::before, .security-policy-page .personal-info-container .security-page-main .content.personal-info ol > li h3::before, .security-policy-page .personal-info-container .personal-info-main .content.personal-info ol > li h3::before, .personal-info-page .security-page-container .security-page-main .content.personal-info ol > li h3::before, .personal-info-page .security-page-container .personal-info-main .content.personal-info ol > li h3::before, .personal-info-page .personal-info-container .security-page-main .content.personal-info ol > li h3::before, .personal-info-page .personal-info-container .personal-info-main .content.personal-info ol > li h3::before {
  content: attr(seq) ") ";
  background-color: unset;
}
.security-policy-page .security-page-container .security-page-main .content .information, .security-policy-page .security-page-container .personal-info-main .content .information, .security-policy-page .personal-info-container .security-page-main .content .information, .security-policy-page .personal-info-container .personal-info-main .content .information, .personal-info-page .security-page-container .security-page-main .content .information, .personal-info-page .security-page-container .personal-info-main .content .information, .personal-info-page .personal-info-container .security-page-main .content .information, .personal-info-page .personal-info-container .personal-info-main .content .information {
  width: 100%;
  height: 20rem;
}
.security-policy-page .security-page-container .security-page-main .content .information ul, .security-policy-page .security-page-container .personal-info-main .content .information ul, .security-policy-page .personal-info-container .security-page-main .content .information ul, .security-policy-page .personal-info-container .personal-info-main .content .information ul, .personal-info-page .security-page-container .security-page-main .content .information ul, .personal-info-page .security-page-container .personal-info-main .content .information ul, .personal-info-page .personal-info-container .security-page-main .content .information ul, .personal-info-page .personal-info-container .personal-info-main .content .information ul {
  list-style-type: none;
}
.security-policy-page .security-page-container .security-page-main .content .security-list, .security-policy-page .security-page-container .personal-info-main .content .security-list, .security-policy-page .personal-info-container .security-page-main .content .security-list, .security-policy-page .personal-info-container .personal-info-main .content .security-list, .personal-info-page .security-page-container .security-page-main .content .security-list, .personal-info-page .security-page-container .personal-info-main .content .security-list, .personal-info-page .personal-info-container .security-page-main .content .security-list, .personal-info-page .personal-info-container .personal-info-main .content .security-list {
  list-style-type: lower-alpha;
  margin-left: 4rem;
}
.security-policy-page .security-page-container .security-page-main .content .security-list li, .security-policy-page .security-page-container .personal-info-main .content .security-list li, .security-policy-page .personal-info-container .security-page-main .content .security-list li, .security-policy-page .personal-info-container .personal-info-main .content .security-list li, .personal-info-page .security-page-container .security-page-main .content .security-list li, .personal-info-page .security-page-container .personal-info-main .content .security-list li, .personal-info-page .personal-info-container .security-page-main .content .security-list li, .personal-info-page .personal-info-container .personal-info-main .content .security-list li {
  padding: 1rem;
}
.security-policy-page .security-page-container .security-page-main .content .personal-info-list, .security-policy-page .security-page-container .personal-info-main .content .personal-info-list, .security-policy-page .personal-info-container .security-page-main .content .personal-info-list, .security-policy-page .personal-info-container .personal-info-main .content .personal-info-list, .personal-info-page .security-page-container .security-page-main .content .personal-info-list, .personal-info-page .security-page-container .personal-info-main .content .personal-info-list, .personal-info-page .personal-info-container .security-page-main .content .personal-info-list, .personal-info-page .personal-info-container .personal-info-main .content .personal-info-list {
  list-style-type: lower-alpha;
}
.security-policy-page .security-page-container .security-page-main .content .personal-info-list li, .security-policy-page .security-page-container .personal-info-main .content .personal-info-list li, .security-policy-page .personal-info-container .security-page-main .content .personal-info-list li, .security-policy-page .personal-info-container .personal-info-main .content .personal-info-list li, .personal-info-page .security-page-container .security-page-main .content .personal-info-list li, .personal-info-page .security-page-container .personal-info-main .content .personal-info-list li, .personal-info-page .personal-info-container .security-page-main .content .personal-info-list li, .personal-info-page .personal-info-container .personal-info-main .content .personal-info-list li {
  padding: 2rem;
}
.security-policy-page .security-page-container .security-page-main .content .personal-info-list li p, .security-policy-page .security-page-container .personal-info-main .content .personal-info-list li p, .security-policy-page .personal-info-container .security-page-main .content .personal-info-list li p, .security-policy-page .personal-info-container .personal-info-main .content .personal-info-list li p, .personal-info-page .security-page-container .security-page-main .content .personal-info-list li p, .personal-info-page .security-page-container .personal-info-main .content .personal-info-list li p, .personal-info-page .personal-info-container .security-page-main .content .personal-info-list li p, .personal-info-page .personal-info-container .personal-info-main .content .personal-info-list li p {
  padding: 1rem;
}
.security-policy-page .security-page-container .security-page-main .content .ijou, .security-policy-page .security-page-container .personal-info-main .content .ijou, .security-policy-page .personal-info-container .security-page-main .content .ijou, .security-policy-page .personal-info-container .personal-info-main .content .ijou, .personal-info-page .security-page-container .security-page-main .content .ijou, .personal-info-page .security-page-container .personal-info-main .content .ijou, .personal-info-page .personal-info-container .security-page-main .content .ijou, .personal-info-page .personal-info-container .personal-info-main .content .ijou {
  margin: 4rem 0 8rem 0;
}
.security-policy-page .security-page-container .security-page-main .content .ijou .subtitle, .security-policy-page .security-page-container .personal-info-main .content .ijou .subtitle, .security-policy-page .personal-info-container .security-page-main .content .ijou .subtitle, .security-policy-page .personal-info-container .personal-info-main .content .ijou .subtitle, .personal-info-page .security-page-container .security-page-main .content .ijou .subtitle, .personal-info-page .security-page-container .personal-info-main .content .ijou .subtitle, .personal-info-page .personal-info-container .security-page-main .content .ijou .subtitle, .personal-info-page .personal-info-container .personal-info-main .content .ijou .subtitle {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.security-policy-page .security-page-container .security-page-main .content .data-protection .data-protection-list, .security-policy-page .security-page-container .personal-info-main .content .data-protection .data-protection-list, .security-policy-page .personal-info-container .security-page-main .content .data-protection .data-protection-list, .security-policy-page .personal-info-container .personal-info-main .content .data-protection .data-protection-list, .personal-info-page .security-page-container .security-page-main .content .data-protection .data-protection-list, .personal-info-page .security-page-container .personal-info-main .content .data-protection .data-protection-list, .personal-info-page .personal-info-container .security-page-main .content .data-protection .data-protection-list, .personal-info-page .personal-info-container .personal-info-main .content .data-protection .data-protection-list {
  list-style-type: none;
  margin-left: 4rem;
}
.security-policy-page .security-page-container .security-page-main .content .data-protection .data-protection-list li, .security-policy-page .security-page-container .personal-info-main .content .data-protection .data-protection-list li, .security-policy-page .personal-info-container .security-page-main .content .data-protection .data-protection-list li, .security-policy-page .personal-info-container .personal-info-main .content .data-protection .data-protection-list li, .personal-info-page .security-page-container .security-page-main .content .data-protection .data-protection-list li, .personal-info-page .security-page-container .personal-info-main .content .data-protection .data-protection-list li, .personal-info-page .personal-info-container .security-page-main .content .data-protection .data-protection-list li, .personal-info-page .personal-info-container .personal-info-main .content .data-protection .data-protection-list li {
  margin-left: 4rem;
  padding: 1rem;
  list-style-type: none;
}
.security-policy-page .security-page-container .security-page-main .content .data-protection .data-protection-list.second, .security-policy-page .security-page-container .personal-info-main .content .data-protection .data-protection-list.second, .security-policy-page .personal-info-container .security-page-main .content .data-protection .data-protection-list.second, .security-policy-page .personal-info-container .personal-info-main .content .data-protection .data-protection-list.second, .personal-info-page .security-page-container .security-page-main .content .data-protection .data-protection-list.second, .personal-info-page .security-page-container .personal-info-main .content .data-protection .data-protection-list.second, .personal-info-page .personal-info-container .security-page-main .content .data-protection .data-protection-list.second, .personal-info-page .personal-info-container .personal-info-main .content .data-protection .data-protection-list.second {
  list-style-type: none;
}
.security-policy-page .security-page-container .security-page-main .content .data-protection .final-ijou, .security-policy-page .security-page-container .personal-info-main .content .data-protection .final-ijou, .security-policy-page .personal-info-container .security-page-main .content .data-protection .final-ijou, .security-policy-page .personal-info-container .personal-info-main .content .data-protection .final-ijou, .personal-info-page .security-page-container .security-page-main .content .data-protection .final-ijou, .personal-info-page .security-page-container .personal-info-main .content .data-protection .final-ijou, .personal-info-page .personal-info-container .security-page-main .content .data-protection .final-ijou, .personal-info-page .personal-info-container .personal-info-main .content .data-protection .final-ijou {
  text-align: right;
}
.security-policy-page .security-page-container .security-page-main .content .numbered-list, .security-policy-page .security-page-container .personal-info-main .content .numbered-list, .security-policy-page .personal-info-container .security-page-main .content .numbered-list, .security-policy-page .personal-info-container .personal-info-main .content .numbered-list, .personal-info-page .security-page-container .security-page-main .content .numbered-list, .personal-info-page .security-page-container .personal-info-main .content .numbered-list, .personal-info-page .personal-info-container .security-page-main .content .numbered-list, .personal-info-page .personal-info-container .personal-info-main .content .numbered-list {
  list-style-type: none;
}

/*# sourceMappingURL=style.css.map */
