@charset "UTF-8";
:root {
  --color-black: #1F1F1F;
  --color-white: #FFF;
  --color-gray-50: #FAFAFA;
  --color-gray-100: #F5F5F5;
  --color-gray-200: #EEE;
  --color-gray-300: #E0E0E0;
  --color-gray-400: #BDBDBD;
  --color-gray-500: #9E9E9E;
  --color-gray-600: #757575;
  --color-gray-700: #616161;
  --color-navy-200: #A0ACE3;
  --color-navy-800: #143273;
  --color-navy-900: #07225D;
  --color-blue-600: #13A4C6;
  --color-blue-700: #1095B7;
  --text-jp: 'Noto Sans JP', sans-serif;
  --text-en: 'Montserrat', var(--text-jp);
}

html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scroll-padding-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 6.25rem;
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

body {
  margin: 0;
  min-block-size: 100svh;
  font-family: var(--text-jp);
  font-optical-sizing: auto;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.is-en {
  font-family: var(--text-en);
}

@media screen and (max-width: 767px) {
  .u-hiddenSp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-hiddenPc {
    display: none;
  }
}

.u-visuallyHidden {
  position: absolute;
  left: -1px;
  top: -1px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 1px;
  height: 1px;
}

.u-text-center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .u-text-center-pc {
    text-align: center;
  }
}

.c-link-arrow {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 0.25rem;
  width: 2rem;
  overflow: hidden;
  background-color: var(--color-blue-600);
  transition: background-color 0.2s linear;
}
@media screen and (min-width: 768px) {
  .c-link-arrow {
    width: 2.5rem;
  }
}
.c-link-arrow span {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/movele/assets/img/common/arrow_right_white.svg") no-repeat center/0.5rem auto;
}
@media screen and (min-width: 768px) {
  .c-link-arrow span {
    background-size: 0.625rem auto;
  }
}

@media (hover: hover) and (pointer: fine) {
  a:hover .c-link-arrow {
    background-color: var(--color-blue-700);
  }
  a:hover .c-link-arrow span {
    animation: arrow-bounce-right 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  }
}

.c-page-header {
  margin-top: 3.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: clip;
}
.c-page-header .char {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.05s * var(--char-index));
}
.c-page-header.is-active .char {
  opacity: 1;
}

.c-heading-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.625rem;
  margin: 0;
  line-height: 1.6;
  font-weight: 700;
  font-size: 0.875rem;
}
.c-heading-1 > .is-ja {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
}
.c-heading-1 > .is-ja::before {
  content: "";
  display: block;
  aspect-ratio: 15/12;
  width: 0.6875rem;
  background: url("/movele/assets/img/common/icon_left_slanted.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .c-heading-1 > .is-ja::before {
    width: 0.9375rem;
  }
}
.c-heading-1 > .is-ja .is-en {
  font-size: 0.9375rem;
  font-style: normal;
}
.c-heading-1 > .is-en {
  font-size: 2.1875rem;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-heading-1 > .is-en {
    font-size: 3.375rem;
  }
}

.c-heading-2 {
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
  margin: 0;
  line-height: 1.6;
  font-weight: 700;
  font-size: 0.875rem;
}
.c-heading-2 > .is-ja {
  order: 1;
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
}
.c-heading-2 > .is-ja::before {
  content: "";
  display: block;
  aspect-ratio: 15/12;
  width: 0.6875rem;
  background: url("/movele/assets/img/common/icon_left_slanted.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .c-heading-2 > .is-ja::before {
    width: 0.9375rem;
  }
}
.c-heading-2 > .is-ja .is-en {
  font-size: 0.9375rem;
  font-style: normal;
}
.c-heading-2 > .is-en {
  font-size: 2.125rem;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-heading-2 {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 0.5rem;
  }
  .c-heading-2 > .is-ja {
    order: 0;
  }
  .c-heading-2 > .is-en {
    font-size: 3.25rem;
  }
}

.c-heading-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.75rem;
  margin: 0;
  line-height: 1.6;
  font-weight: 700;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-heading-3 {
    font-weight: 500;
  }
}
.c-heading-3 > .is-ja {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
}
.c-heading-3 > .is-ja::before {
  content: "";
  display: block;
  aspect-ratio: 15/12;
  width: 0.6875rem;
  background: url("/movele/assets/img/common/icon_left_slanted.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .c-heading-3 > .is-ja::before {
    width: 0.9375rem;
  }
}
.c-heading-3 > .is-ja .is-en {
  font-size: 0.9375rem;
  font-style: normal;
}
.c-heading-3 > .is-en {
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-heading-3 > .is-en {
    font-size: 3rem;
  }
}

.c-heading-4 {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin: 0 0 1.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-heading-4 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }
}
.c-heading-4__head {
  font-family: var(--text-en);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-blue-600);
}
@media screen and (min-width: 768px) {
  .c-heading-4__head {
    font-size: 0.875rem;
  }
}

.c-heading-5 {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.8;
  margin: 1.8em 0 0;
}
.c-heading-5:first-child {
  margin-top: 0;
}

.c-button-1 {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-white);
  height: 4rem;
  margin: 0 auto;
  max-width: 19.375rem;
  padding: 0 1.25rem;
  border-radius: 0.25rem;
  overflow: clip;
  background-color: var(--color-blue-600);
  line-height: 1.6;
  transition: background-color 0.2s linear;
}
.c-button-1.is-alt-color {
  background-color: var(--color-navy-800);
}
@media screen and (min-width: 768px) {
  .c-button-1 {
    max-width: 17.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-button-1.--full-sp {
    max-width: 100%;
  }
}
.c-button-1__arrow {
  display: block;
  height: 1.5rem;
  width: 1.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.c-button-1__arrow::before, .c-button-1__arrow::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 0.625rem;
  background: url("/movele/assets/img/common/arrow_right_white.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
.c-button-1__arrow::before {
  left: 1.125rem;
}
.c-button-1__arrow::after {
  left: -100%;
}
@media (hover: hover) and (pointer: fine) {
  .c-button-1:hover {
    background-color: var(--color-blue-700);
  }
  .c-button-1:hover.is-alt-color {
    background-color: var(--color-navy-900);
  }
  .c-button-1:hover .c-button-1__arrow::before {
    animation-name: circleIconRightLeftButton;
  }
  .c-button-1:hover .c-button-1__arrow::after {
    animation-name: circleIconLeftRightButton;
  }
}

.c-next {
  display: flex;
  flex-direction: column;
  row-gap: 3.5rem;
  margin: 5rem -1rem 0;
  background: var(--color-gray-200) url("/movele/assets/img/common/movele_bg_sp.svg") no-repeat left bottom/100% auto;
  border-radius: 0.75rem;
  overflow: clip;
  padding: 5rem 1.75rem;
  min-height: 29.875rem;
}
@media screen and (min-width: 768px) {
  .c-next {
    margin: 7.5rem auto 0;
    background-image: url("/movele/assets/img/common/movele_bg_pc.svg");
    background-position: right bottom;
    background-color: auto 100%;
    height: 33.75rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: clamp(1.25rem, 5.55555556vw, 5rem);
    padding: 5rem clamp(1.25rem, 5.55555556vw, 5rem);
  }
}
.c-next__body {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .c-next__body {
    row-gap: 1.75rem;
    max-width: 30.5rem;
  }
}
.c-next__link {
  margin: auto auto 0;
  max-width: 19.375rem;
  flex-shrink: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-next__link {
    margin: 0;
    width: 17.5rem;
  }
}
.c-next__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .c-next__text {
    font-size: 1rem;
  }
}
.c-next .c-heading-3 > .is-en {
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-next .c-heading-3 > .is-en {
    font-size: 2.5rem;
  }
}

.c-internal-links {
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-internal-links {
    column-gap: 3rem;
    margin-bottom: 6.5625rem;
  }
}
.c-internal-links > li {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  width: calc(50% - 0.75rem);
}
@media screen and (min-width: 768px) {
  .c-internal-links > li {
    width: auto;
    font-size: 0.9375rem;
  }
}
.c-internal-links .is-en {
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-internal-links .is-en {
    font-size: 1rem;
  }
}
.c-internal-links a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s linear;
  column-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-internal-links a {
    column-gap: 0.75rem;
  }
}
.c-internal-links a .is-link-arrow {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 0.125rem;
  width: 1rem;
  overflow: hidden;
  background-color: var(--color-blue-600);
  transition: background-color 0.2s linear;
}
.c-internal-links a .is-link-arrow span {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/movele/assets/img/common/arrow_bottom_white.svg") no-repeat center/0.375rem auto;
}
@media screen and (min-width: 768px) {
  .c-internal-links a .is-link-arrow {
    width: 1.25rem;
  }
  .c-internal-links a .is-link-arrow span {
    background-size: 0.5rem auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-internal-links a:hover {
    color: var(--color-blue-700);
  }
  .c-internal-links a:hover .is-link-arrow {
    background-color: var(--color-blue-700);
  }
  .c-internal-links a:hover .is-link-arrow span {
    animation: arrow-bounce-bottom 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  }
}

.c-icon-link {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s linear;
  column-gap: 0.5rem;
  margin: 0;
}
.c-icon-link .is-link-arrow {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 0.125rem;
  width: 1.25rem;
  overflow: hidden;
  background-color: var(--color-blue-600);
  transition: background-color 0.2s linear;
}
.c-icon-link .is-link-arrow span {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/movele/assets/img/common/arrow_right_white.svg") no-repeat center/0.5rem auto;
}
@media (hover: hover) and (pointer: fine) {
  .c-icon-link:is(a):hover, a:hover .c-icon-link {
    color: var(--color-blue-700);
  }
  .c-icon-link:is(a):hover .is-link-arrow, a:hover .c-icon-link .is-link-arrow {
    background-color: var(--color-blue-700);
  }
  .c-icon-link:is(a):hover .is-link-arrow span, a:hover .c-icon-link .is-link-arrow span {
    animation: arrow-bounce-right 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  }
}

.c-gray-box {
  margin: 2.5rem -1rem 5rem;
  padding: 5rem 1.75rem;
  background-color: var(--color-gray-100);
  border-radius: 0.75rem;
}
.c-gray-box:first-child {
  margin-top: 0;
}
.c-gray-box:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-gray-box {
    margin: 7.5rem 0;
    padding: 7.5rem clamp(1.5rem, 5.88235294vw, 5rem);
  }
}

.c-content-group-1 {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .c-content-group-1 {
    row-gap: 2.5rem;
  }
}

.c-content-group-2 {
  display: flex;
  flex-direction: column;
  row-gap: 5rem;
  margin-inline: auto;
  max-width: 800px;
}
@media screen and (min-width: 768px) {
  .c-content-group-2 {
    row-gap: 7.5rem;
  }
}

.c-content-group-3 {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-content-group-3 {
    row-gap: 3rem;
  }
}

.c-content-group-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-content-group-4 {
    margin-top: 2rem;
    margin-bottom: 4rem;
  }
}

.c-content-group-5 {
  margin-top: 3.5rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .c-content-group-5 {
    margin-top: 6.25rem;
    margin-bottom: 7.5rem;
  }
}

.c-text-catch-1 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-text-catch-1 {
    font-size: 1.75rem;
  }
}

.c-text-1 {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin: 0;
}
.c-text-1 + .c-text-1 {
  margin-top: 1.8em;
}
.c-text-1.--lh-2 {
  line-height: 2;
}
.c-text-1.--lh-2 + .c-text-1.--lh-2 {
  margin-top: 2em;
}

.c-figure-1 {
  margin: 0 auto;
  line-height: 1;
  max-width: 900px;
}
@media screen and (min-width: 768px) {
  .c-figure-1.is-full {
    max-width: 100%;
  }
}
.c-figure-1.is-rounded img {
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-figure-1.is-rounded img {
    border-radius: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .c-horizontal-scroll {
    margin-inline: -1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-horizontal-scroll__track {
    padding-inline: 1.75rem;
    display: flex;
    overflow-x: auto;
    padding-bottom: 1rem;
    width: 100vw;
  }
  .c-horizontal-scroll__track > * {
    flex-shrink: 0;
    max-width: none;
    width: var(--element-width);
  }
}
.c-horizontal-scroll__notice {
  margin: 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.625rem;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  color: var(--color-gray-700);
  background-color: var(--color-gray-100);
}
.c-horizontal-scroll__notice::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background: url("/movele/assets/img/common/icon_scroll.svg") no-repeat center/contain;
  width: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-horizontal-scroll__notice {
    display: none;
  }
}

.c-page-mv {
  margin: 3rem 0 2rem;
}
@media screen and (min-width: 768px) {
  .c-page-mv {
    margin-bottom: 7.5rem;
  }
}
.c-page-mv img {
  display: block;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-page-mv img {
    border-radius: 0.75rem;
  }
}

.c-gradient-bg-01 {
  background: linear-gradient(180deg, #FFF 0%, #E0F6FC 90%, #FFF 100%);
}
@media screen and (min-width: 768px) {
  .c-gradient-bg-01 {
    background: linear-gradient(180deg, #FFF 0%, #E0F6FC 80%, #FFF 100%);
  }
}

.c-fixed-aspect-ratio {
  width: 100%;
  height: auto;
  max-width: calc(var(--target-height) * attr(width type(<number>)) / attr(height type(<number>)));
}

@keyframes arrow-bounce-right {
  0% {
    transform: translateZ(0);
  }
  35.9% {
    transform: translate3d(100%, 0, 0);
  }
  36% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translateZ(0);
  }
}
@keyframes arrow-bounce-bottom {
  0% {
    transform: translateZ(0);
  }
  35.9% {
    transform: translate3d(0, 100%, 0);
  }
  36% {
    transform: translate3d(0, -100%, 0);
  }
  100% {
    transform: translateZ(0);
  }
}
@keyframes circleIconRightLeftButton {
  0% {
    left: 1.125rem;
  }
  100% {
    left: 100%;
  }
}
@keyframes circleIconLeftRightButton {
  0% {
    left: -1.125rem;
    opacity: 0;
  }
  100% {
    left: 1.125rem;
    opacity: 1;
  }
}
@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes scroll-speed-30 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-30px);
  }
}
@keyframes scroll-speed-60 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-60px);
  }
}
@keyframes scroll-speed-90 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-90px);
  }
}
@keyframes scroll-speed-120 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-120px);
  }
}
@keyframes parallax {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-15%);
  }
}
.l-lecip {
  line-height: 1;
  margin: 0;
  display: flex;
  align-items: center;
  height: 2.8125rem;
  padding: 0 1.75rem;
  background-color: var(--color-gray-100);
}
.l-lecip a {
  display: block;
  width: 3.1875rem;
}
@media screen and (min-width: 768px) {
  .l-lecip {
    display: none;
  }
}

.l-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  min-block-size: 100svh;
  overflow: clip;
}

.l-header {
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  z-index: 100;
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.5rem;
  padding-inline-start: 1.75rem;
  height: 4.375rem;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    transition: height 0.1s linear;
    height: 6.25rem;
    padding-inline: 2.5rem;
    column-gap: 1.5rem;
  }
  .l-header__inner.is-scrolled {
    height: 4.375rem;
  }
}
.l-header__logo {
  line-height: 1;
  width: 8.125rem;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 9.375rem;
  }
}
.l-header__logo a {
  display: block;
  transition: opacity 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}
.l-header__button {
  appearance: none;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  line-height: 1;
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: auto;
  height: 100%;
  font-size: 0.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-header__button {
    display: none;
  }
}
.l-header__button-box {
  position: relative;
  display: block;
  width: 1.75rem;
  height: 1.125rem;
}
.l-header__button-inner {
  display: block;
  position: absolute;
  width: 100%;
  height: 0.125rem;
  border-radius: 0.25rem;
  background: var(--color-black);
  transition: width 0.3s ease-out, top 0.3s ease-out, left 0.3s ease-out, transform 0.3s ease-out;
  left: 0;
  transform: translate(0, 0);
}
.l-header__button-inner:nth-child(1) {
  top: 0rem;
}
.is-opened .l-header__button-inner:nth-child(1) {
  top: 50%;
  left: 50%;
  margin-top: -0.0625rem;
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header__button-inner:nth-child(2) {
  top: 50%;
  margin-top: -0.0625rem;
}
.is-opened .l-header__button-inner:nth-child(2) {
  width: 0;
}
.l-header__button-inner:nth-child(3) {
  top: 1rem;
}
.is-opened .l-header__button-inner:nth-child(3) {
  top: 50%;
  left: 50%;
  margin-top: -0.0625rem;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .l-header__navigation {
    width: 100%;
    background-color: var(--color-white);
    padding: 1.5rem 2.5rem;
    overflow-y: auto;
    height: calc(100dvh - 4.375rem);
    transition: opacity 0.3s linear, display 0.3s linear;
    position: absolute;
    left: 0;
    top: 4.375rem;
    transition-behavior: allow-discrete;
    opacity: 0;
    display: none;
  }
  .l-header__navigation.is-opened {
    opacity: 1;
    display: block;
  }
}
@starting-style {
  .l-header__navigation.is-opened {
    opacity: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-header__navigation {
    display: flex;
    align-items: center;
    column-gap: 1.75rem;
  }
}
.l-header__navList {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .l-header__navList {
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
  }
  .l-header__navList::after {
    content: "";
    display: block;
    width: 1px;
    height: 1.25rem;
    background-color: var(--color-gray-300);
    margin-left: 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__navList > li:not(:last-child) {
    border-bottom: 1px solid var(--color-gray-300);
    padding: 2rem 0;
  }
  .l-header__navList > li:last-child {
    margin-top: 3.5rem;
  }
}
.l-header__navList a {
  text-decoration: none;
  color: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.6;
  transition: color 0.2s linear;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__navList a:hover {
    color: var(--color-blue-700);
  }
}
.l-header__navList a .is-en {
  font-style: normal;
  font-size: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .l-header__navList a:not(.contact) {
    display: block;
    font-size: 0.8125rem;
  }
  .l-header__navList a:not(.contact)::after {
    display: block;
    font-family: var(--text-en);
    line-height: 1;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.625rem;
    text-transform: uppercase;
  }
  .l-header__navList a:not(.contact) > span::before {
    content: "";
    display: inline-block;
    aspect-ratio: 11/9;
    width: 0.6875rem;
    background: url("/movele/assets/img/common/icon_left_slanted.svg") no-repeat center/contain;
    margin-top: 0.1875rem;
    margin-right: 0.625rem;
    line-height: 1;
  }
  .l-header__navList a:not(.contact) .is-en {
    font-size: 0.875rem;
  }
  .l-header__navList a.about::after {
    content: "About";
  }
  .l-header__navList a.mission::after {
    content: "Mission・Vision";
  }
  .l-header__navList a.solution::after {
    content: "Solution";
  }
  .l-header__navList a.contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    padding: 0 1.25rem;
    height: 4.5rem;
    border-radius: 0.25rem;
    background-color: var(--color-blue-600);
    column-gap: 1.25rem;
  }
  .l-header__navList a.contact::after {
    content: "";
    display: block;
    width: 1.75rem;
    height: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    background: url("/movele/assets/img/common/arrow_right_white.svg") no-repeat right center/0.625rem auto;
  }
}
@media screen and (min-width: 768px) {
  .l-header__navList a.is-active {
    color: var(--color-blue-700);
  }
}
.l-header__topLink {
  display: block;
  width: 4rem;
  line-height: 1;
  margin: 2rem auto;
  transition: opacity 0.2s linear;
}
@media screen and (max-width: 767px) {
  .l-header__topLink {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .l-header__topLink {
    margin: 0;
    width: 3.625rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header__topLink:hover {
    opacity: 0.7;
  }
}

.l-footer__breadcrumbs {
  margin: 5rem auto 0;
  padding: 1.5rem 1.75rem;
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  max-width: 1920px;
  font-family: var(--text-en);
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__breadcrumbs {
    margin-top: 7.5rem;
    padding: 2rem 2.5rem;
  }
}
.l-footer__breadcrumbs > li {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
}
.l-footer__breadcrumbs > li:not(:first-child)::before {
  content: "/";
  font-size: 0.6875rem;
  line-height: 1;
  color: var(--color-gray-400);
}
.l-footer__breadcrumbs a {
  text-decoration: none;
  color: var(--color-gray-700);
  transition: opacity 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__breadcrumbs a:hover {
    opacity: 0.7;
  }
}
.l-footer__wrap {
  background-color: var(--color-gray-100);
  padding: 4rem 1.75rem 2rem;
}
@media screen and (min-width: 768px) {
  .l-footer__wrap {
    padding-top: 7rem;
    padding-inline: 2.5rem;
  }
}
.l-footer__inner {
  margin-inline: auto;
  max-width: 1920px;
}
.l-footer__logo {
  line-height: 1;
  width: 5.625rem;
  margin: 0 auto 3rem;
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    width: 8.125rem;
  }
}
.l-footer__logo a {
  display: block;
  transition: opacity 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__logo a:hover {
    opacity: 0.7;
  }
}
.l-footer__navList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  line-height: 1.6;
  font-size: 0.9375rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .l-footer__navList {
    flex-direction: row;
    justify-content: center;
    column-gap: 2rem;
    flex-wrap: wrap;
  }
}
.l-footer__navList .is-en {
  font-size: 1rem;
  font-style: normal;
}
.l-footer__navList a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  transition: color 0.2s linear;
}
.l-footer__navList a .is-link-arrow {
  display: block;
}
@media screen and (max-width: 767px) {
  .l-footer__navList a {
    justify-content: space-between;
    column-gap: 1.25rem;
    height: 3.5rem;
    border-radius: 0.25rem;
    background-color: var(--color-white);
    padding-left: 1.25rem;
    padding-right: 1.125rem;
  }
  .l-footer__navList a .is-link-arrow {
    width: 1.875rem;
    height: 1.25rem;
    border-left: 1px solid var(--color-gray-300);
    background: url("/movele/assets/img/common/arrow_right_blue.svg") no-repeat right center/0.625rem auto;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__navList a {
    justify-content: center;
    text-align: center;
    column-gap: 0.5rem;
  }
  .l-footer__navList a .is-link-arrow {
    aspect-ratio: 1/1;
    border-radius: 0.125rem;
    width: 1.25rem;
    overflow: hidden;
    background-color: var(--color-blue-600);
    transition: background-color 0.2s linear;
  }
  .l-footer__navList a .is-link-arrow span {
    display: block;
    width: 100%;
    height: 100%;
    background: url("/movele/assets/img/common/arrow_right_white.svg") no-repeat center/0.5rem auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__navList a:hover {
    color: var(--color-blue-700);
  }
  .l-footer__navList a:hover .is-link-arrow {
    background-color: var(--color-blue-700);
  }
  .l-footer__navList a:hover .is-link-arrow span {
    animation: arrow-bounce-right 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  }
}
.l-footer__bottom {
  padding-top: 2rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--color-gray-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-footer__bottom {
    margin-top: 5rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.l-footer__otherLinks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  font-size: 0.6875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .l-footer__otherLinks {
    column-gap: 1.25rem;
    justify-content: flex-start;
    text-align: left;
  }
}
.l-footer__otherLinks a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__otherLinks a:hover {
    opacity: 0.7;
  }
}
.l-footer__otherLinks .is-en {
  font-style: normal;
  font-size: 0.75rem;
}
.l-footer__copyright {
  text-align: center;
  color: var(--color-gray-500);
  font-size: 0.625rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.6;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    text-align: right;
    font-size: 0.6875rem;
  }
}

.l-wrap {
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: 1.75rem;
}
@media screen and (min-width: 768px) {
  .l-wrap {
    padding-inline: 2.5rem;
  }
}

.l-inner {
  max-width: 1200px;
  margin-inline: auto;
}

.p-movele-top-hero {
  padding: 0 0.75rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-movele-top-hero {
    padding: 0 2.5rem 2.5rem;
  }
}
.p-movele-top-hero__scene {
  position: sticky;
  top: 4.375rem;
  overflow: hidden;
  border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-movele-top-hero__scene {
    min-height: calc(100lvh - 7.8125rem);
    height: 33.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-movele-top-hero__scene {
    top: 6.25rem;
    min-height: calc(100lvh - 8.75rem);
    height: 41.875rem;
  }
}
.p-movele-top-hero__slide {
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 1.5rem;
}
.p-movele-top-hero__slide::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0) 50%);
  z-index: 2;
}
.p-movele-top-hero__slide::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
  transition: opacity 0.8s ease-in-out;
  opacity: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-movele-top-hero__slide {
    justify-content: center;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .p-movele-top-hero__slide::after {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2) 100%);
  }
}
.p-movele-top-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.p-movele-top-hero__slide.is-active::before {
  opacity: 1;
  transition-delay: 0.4s;
}
.p-movele-top-hero__slide.is-slide1::before {
  background-image: url("/movele/assets/img/top/mv_01_layer_sp.webp");
}
@media screen and (min-width: 768px) {
  .p-movele-top-hero__slide.is-slide1::before {
    background-image: url("/movele/assets/img/top/mv_01_layer_pc.webp");
  }
}
.p-movele-top-hero__slide.is-slide2 {
  background-image: url("/movele/assets/img/top/mv_02_bg_sp.webp");
}
.p-movele-top-hero__slide.is-slide2::before {
  background-image: url("/movele/assets/img/top/mv_02_layer_sp.webp");
}
@media screen and (min-width: 768px) {
  .p-movele-top-hero__slide.is-slide2 {
    background-image: url("/movele/assets/img/top/mv_02_bg_pc.webp");
  }
  .p-movele-top-hero__slide.is-slide2::before {
    background-image: url("/movele/assets/img/top/mv_02_layer_pc.webp");
  }
}
.p-movele-top-hero__slide.is-slide3 {
  background-image: url("/movele/assets/img/top/mv_03_bg_sp.webp");
}
.p-movele-top-hero__slide.is-slide3::before {
  background-image: url("/movele/assets/img/top/mv_03_layer_sp.webp");
}
@media screen and (min-width: 768px) {
  .p-movele-top-hero__slide.is-slide3 {
    background-image: url("/movele/assets/img/top/mv_03_bg_pc.webp");
  }
  .p-movele-top-hero__slide.is-slide3::before {
    background-image: url("/movele/assets/img/top/mv_03_layer_pc.webp");
  }
}
.p-movele-top-hero__placeholder {
  height: 40rem;
  position: relative;
  z-index: -1;
}
.p-movele-top-hero__placeholder.is-first {
  margin-top: -20rem;
}
@media screen and (min-width: 768px) {
  .p-movele-top-hero__placeholder {
    height: 41.875rem;
  }
  .p-movele-top-hero__placeholder.is-first {
    margin-top: -20.9375rem;
  }
}
.p-movele-top-hero__wave {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  transform: translateZ(0);
  will-change: transform;
  z-index: 0;
  overflow: clip;
}
.p-movele-top-hero__wave video {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.p-movele-top-hero__content {
  position: relative;
  color: var(--color-white);
  z-index: 3;
  overflow: clip;
}
.p-movele-top-hero__catch {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 1.125rem;
  letter-spacing: 0.03em;
}
.p-movele-top-hero__catch .is-en {
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .p-movele-top-hero__catch {
    font-size: 3rem;
  }
  .p-movele-top-hero__catch .is-en {
    font-size: 3.6875rem;
  }
}
.p-movele-top-hero__catch .char {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.05s * var(--char-index));
}
.is-active .p-movele-top-hero__catch .char {
  opacity: 1;
}
.p-movele-top-hero__text {
  margin: 0;
  font-weight: 500;
  transition: opacity 0.8s ease-in-out;
  opacity: 0;
}
.is-active .p-movele-top-hero__text {
  opacity: 1;
  transition-delay: 1s;
}
.p-movele-top-hero__text + .p-movele-top-hero__text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-movele-top-hero__text {
    font-size: 1rem;
  }
  .p-movele-top-hero__text + .p-movele-top-hero__text {
    margin-top: 1rem;
  }
}
.p-movele-top-hero__dots {
  width: 0.375rem;
  position: absolute;
  right: 0.875rem;
  bottom: 2.625rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  row-gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-movele-top-hero__dots {
    bottom: unset;
    top: 50%;
    transform: translateY(-50%);
  }
}
.p-movele-top-hero__dots > div {
  height: 0.5rem;
  border-radius: 0.25rem;
  background-color: var(--color-navy-200);
  transition: background-color 0.8s ease-in-out, height 0.8s ease-in-out;
}
.p-movele-top-hero__dots > div.is-active {
  height: 1.25rem;
  background-color: var(--color-navy-900);
}
.p-movele-top-pages {
  margin: 3.75rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-movele-top-pages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 1.25rem;
    grid-row-gap: 1rem;
  }
}
.p-movele-top-pages a {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: var(--color-gray-100);
  border-radius: 0.5rem;
  padding: 3.375rem 1.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-movele-top-pages a {
    height: 100%;
    padding: 4.5rem clamp(0.625rem, 3.5vw, 2.5rem);
    border: 1px solid transparent;
    transition: background-color 0.3s linear;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-movele-top-pages a:hover {
    background-color: var(--color-gray-200);
  }
}
.p-movele-top-pages .c-link-arrow {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
}
.p-movele-top-pages__text1 {
  margin: 0 0 1rem;
  line-height: 1.6;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.p-movele-top-pages__text1 .is-en {
  font-style: normal;
  font-size: 0.9375rem;
}
.p-movele-top-pages__text1-en {
  font-family: var(--text-en);
  font-style: normal;
  font-size: 1.875rem;
  font-weight: 600;
  display: block;
  margin-top: 0.25rem;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-movele-top-pages__text1-en.--ls0 {
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-movele-top-pages__text1 {
    margin-bottom: 1.75rem;
  }
  .p-movele-top-pages__text1-en {
    font-size: 2rem;
    margin-top: 0.5rem;
  }
}
.p-movele-top-pages__text2 {
  margin: 0;
  color: var(--color-gray-600);
  font-size: 0.9375rem;
  font-weight: 400;
}
.p-movele-top-news {
  margin: 3rem auto 4.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.75rem;
  max-width: 1200px;
}
@media screen and (min-width: 768px) {
  .p-movele-top-news {
    margin-top: 7.5rem;
    margin-bottom: 7.5rem;
    flex-direction: row;
    column-gap: 1.25rem;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .p-movele-top-news__head {
    flex-shrink: 0;
    width: fit-content;
  }
}
@media screen and (min-width: 768px) {
  .p-movele-top-news__body {
    flex-grow: 1;
    max-width: 50rem;
  }
}
.p-movele-top-news__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-movele-top-news__list > li {
  border-bottom: 1px solid var(--color-gray-300);
}
.p-movele-top-news__list > li:first-child {
  border-top: 1px solid var(--color-gray-300);
}
.p-movele-top-news__link {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  padding: 1.5rem 3.25rem 1.5rem 0;
}
.p-movele-top-news__link.is-external::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 2.125rem;
  border-radius: 0.125rem;
  background: var(--color-gray-100) url("/movele/assets/img/common/icon_external.svg") no-repeat center/0.75rem auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-movele-top-news__link {
    padding: 2rem 4.125rem 2rem 1rem;
  }
  .p-movele-top-news__link:is(a)::after {
    right: 1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-movele-top-news__link:is(a):hover .p-movele-top-news__wrap {
    transform: translateX(4px);
  }
  .p-movele-top-news__link:is(a):hover .p-movele-top-news__text span {
    border-bottom-color: var(--color-black);
  }
}
.p-movele-top-news__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  transition: transform 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-movele-top-news__wrap {
    flex-direction: row;
    column-gap: 1rem;
    align-items: center;
    justify-content: space-between;
  }
}
.p-movele-top-news__date {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-gray-600);
  display: block;
}
@media screen and (min-width: 768px) {
  .p-movele-top-news__date {
    flex-shrink: 0;
    width: 6.875rem;
    line-height: 1.71428571;
  }
}
.p-movele-top-news__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-movele-top-news__text {
    flex-grow: 1;
  }
  .p-movele-top-news__text span {
    transition: border-bottom-color 0.3s ease-in-out;
    border-bottom: 1px solid transparent;
  }
}
.p-movele-top-contact {
  margin: 4.5rem -1rem 3rem;
  overflow: clip;
  background: #D3ECF4 url("/movele/assets/img/top/contact_bg_sp.webp") no-repeat center/cover;
  border-radius: 0.5rem;
  padding: 11.25rem 1rem;
  position: relative;
  view-timeline-name: --parent-scroller-element;
}
@media screen and (min-width: 768px) {
  .p-movele-top-contact {
    margin-top: 7.5rem;
    margin-bottom: 4.5rem;
    background-image: url("/movele/assets/img/top/contact_bg_pc.webp");
    background-size: auto 100%;
    padding: 8.75rem 1.75rem;
  }
}
.p-movele-top-contact__content {
  position: relative;
}
.p-movele-top-contact__catch {
  text-align: center;
  font-size: 1.4375rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.p-movele-top-contact__catch em {
  font-style: normal;
  color: var(--color-blue-600);
}
@media screen and (min-width: 768px) {
  .p-movele-top-contact__catch {
    font-size: 2.125rem;
    margin-bottom: 1.25rem;
  }
}
.p-movele-top-contact__text {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-movele-top-contact__text {
    font-size: 1rem;
  }
}
.p-movele-top-contact__text .is-en {
  font-style: normal;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-movele-top-contact__text .is-en {
    font-size: 1.0625rem;
  }
}
.p-movele-top-contact .c-button-1 {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-movele-top-contact .c-button-1 {
    margin-top: 3rem;
  }
}
.p-movele-top-contact__image {
  position: absolute;
  line-height: 1;
  animation-timeline: --parent-scroller-element;
  animation-duration: 1ms;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.p-movele-top-contact__image img {
  display: block;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-movele-top-contact__image img {
    border-radius: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-movele-top-contact__image.is-img01 {
    width: 4.375rem;
    top: 5rem;
    left: 0.8125rem;
    animation-name: scroll-speed-30;
  }
}
@media screen and (min-width: 768px) {
  .p-movele-top-contact__image.is-img01 {
    width: 9.375rem;
    top: 7.375rem;
    left: calc(50% - 38.125rem);
    animation-name: scroll-speed-90;
  }
}
@media screen and (max-width: 767px) {
  .p-movele-top-contact__image.is-img02 {
    width: 8.75rem;
    bottom: -1.5625rem;
    left: 2.875rem;
    animation-name: scroll-speed-30;
  }
}
@media screen and (min-width: 768px) {
  .p-movele-top-contact__image.is-img02 {
    width: 13.125rem;
    top: 5.625rem;
    left: calc(50% + 18.75rem);
    animation-name: scroll-speed-120;
  }
}
@media screen and (max-width: 767px) {
  .p-movele-top-contact__image.is-img03 {
    width: 7.8125rem;
    top: 0.3125rem;
    left: calc(50% + 1.75rem);
    animation-name: scroll-speed-60;
  }
}
@media screen and (min-width: 768px) {
  .p-movele-top-contact__image.is-img03 {
    width: 14.375rem;
    left: calc(50% - 31.25rem);
    bottom: -3.125rem;
    animation-name: scroll-speed-120;
  }
}
@media screen and (max-width: 767px) {
  .p-movele-top-contact__image.is-img04 {
    width: 5.625rem;
    bottom: 4.5rem;
    left: calc(50% + 4.25rem);
    animation-name: scroll-speed-30;
  }
}
@media screen and (min-width: 768px) {
  .p-movele-top-contact__image.is-img04 {
    width: 10rem;
    bottom: 0;
    left: calc(50% + 28.125rem);
    animation-name: scroll-speed-90;
  }
}
.p-movele-top-obi {
  margin: 3rem 0;
  overflow: hidden;
  width: 100vw;
  contain: paint;
  position: relative;
  display: flex;
  align-items: center;
}
.p-movele-top-obi::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-movele-top-obi {
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }
}
.p-movele-top-obi__track {
  display: flex;
  align-items: center;
  animation: scroll-right 45s linear infinite;
  will-change: transform;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .p-movele-top-obi__track {
    animation-duration: 90s;
  }
}
.p-movele-top-obi__item {
  line-height: 1;
  width: 35.9375rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-movele-top-obi__item {
    width: 71.8125rem;
  }
}
.p-movele-top-obi__item img {
  display: block;
}

.p-movele-about-heading-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.625rem;
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.p-movele-about-heading-1 .is-en {
  font-size: 0.9375rem;
  font-weight: 600;
  font-style: normal;
}
.p-movele-about-heading-1::before {
  content: "";
  display: block;
  aspect-ratio: 15/12;
  width: 0.6875rem;
  background: url("/movele/assets/img/common/icon_left_slanted.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-movele-about-heading-1::before {
    width: 0.9375rem;
  }
}
.p-movele-about-solutions {
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-movele-about-solutions {
    margin-top: 4rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.5rem;
    width: 97%;
    max-width: 36.25rem;
  }
}
@media screen and (min-width: 1000px) {
  .p-movele-about-solutions {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-movele-about-solutions__item {
    width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .p-movele-about-solutions__item {
    width: calc(50% - 1.25rem);
  }
}
.p-movele-about-solutions__card {
  border-radius: 0.75rem;
  background-color: var(--color-white);
  padding: 2rem 1.5rem;
}
.p-movele-about-solutions__card:is(a) {
  display: block;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .p-movele-about-solutions__card:is(a):hover .p-movele-about-solutions__image img {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 768px) {
  .p-movele-about-solutions__card {
    height: 100%;
    padding: 1.75rem;
    display: grid;
    grid-template-columns: 34.35114504% 1fr;
    grid-template-rows: auto 1fr;
    grid-column-gap: 1.75rem;
    grid-row-gap: 1.25rem;
  }
  .p-movele-about-solutions__card:is(a) {
    display: grid;
  }
}
.p-movele-about-solutions__title {
  line-height: 1;
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-movele-about-solutions__title .c-fixed-aspect-ratio {
  --target-height: 20px;
}
@media screen and (min-width: 768px) {
  .p-movele-about-solutions__title {
    margin-bottom: 0;
    justify-content: flex-start;
    grid-area: 1/2/2/3;
  }
  .p-movele-about-solutions__title .c-fixed-aspect-ratio {
    --target-height: 23px;
  }
}
.p-movele-about-solutions__image {
  line-height: 1;
  margin-bottom: 1.25rem;
}
.p-movele-about-solutions__image-wrap {
  border-radius: 0.5rem;
  overflow: clip;
}
.p-movele-about-solutions__image img {
  display: block;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .p-movele-about-solutions__image {
    margin-bottom: 0;
    grid-area: 1/1/3/2;
  }
  .p-movele-about-solutions__image-wrap {
    aspect-ratio: 1/1;
  }
  .p-movele-about-solutions__image img {
    object-fit: cover;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-movele-about-solutions__body {
    grid-area: 2/2/3/3;
  }
}
.p-movele-about-solutions__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-gray-700);
}
.p-movele-about-solutions__label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--color-gray-700);
  max-width: fit-content;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  background-color: var(--color-gray-100);
}
.p-movele-about-solutions__foot {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-movele-about-solutions__foot {
    margin-top: 1.5rem;
  }
}
.p-movele-about-message {
  margin: 4rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-movele-about-message {
    margin-top: 7.5rem;
    margin-bottom: 7.5rem;
  }
}
.p-movele-about-message__group {
  border-top: 1px solid var(--color-gray-300);
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-movele-about-message__group {
    padding-top: 5rem;
    column-gap: 4.66666667%;
    flex-direction: row;
  }
}
.p-movele-about-message__image {
  margin: 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-movele-about-message__image {
    width: 18.75rem;
    flex-shrink: 0;
  }
}
.p-movele-about-message__image img {
  display: block;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-movele-about-message__body {
    flex-grow: 1;
  }
}
.p-movele-about-message__heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-blue-600);
  margin: 0 0 1rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-movele-about-message__heading {
    margin-bottom: 1.25rem;
  }
}
.p-movele-about-message__text {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 0.75rem;
  color: var(--color-gray-700);
}
.p-movele-about-message__text .is-slash {
  color: var(--color-gray-400);
  display: inline-block;
  margin: 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 400;
}
.p-movele-about-message__message {
  margin: 0;
}
.p-movele-about-message__message > dt {
  font-weight: 700;
  font-size: 1.625rem;
  margin: 0 0 1.5rem;
  display: flex;
  column-gap: 1rem;
  line-height: 1.6;
  align-items: baseline;
}
@media screen and (min-width: 768px) {
  .p-movele-about-message__message > dt {
    margin-bottom: 1.75rem;
  }
}
.p-movele-about-message__message > dd {
  margin: 0;
}
.p-movele-about-development {
  margin: 1rem 0 0;
  padding: 1.25rem 1.25rem 2rem;
  border-radius: 0.5rem;
  background-color: var(--color-gray-100);
}
@media screen and (min-width: 768px) {
  .p-movele-about-development {
    padding-bottom: 1.25rem;
  }
}
.p-movele-about-development__title {
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 0 0 0.75rem;
}
.p-movele-about-development__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-movele-about-development__list {
    gap: 1rem;
    justify-content: center;
  }
}
.p-movele-about-development__list > li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.8;
  background-color: var(--color-white);
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  width: calc((100% - 0.75rem) / 2);
}
.p-movele-about-development__list > li img {
  display: block;
  width: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-movele-about-development__list > li {
    width: 11.25rem;
    font-size: 1rem;
  }
  .p-movele-about-development__list > li img {
    width: 2rem;
  }
}

.p-movele-mission-hero {
  padding-top: 2rem;
  padding-bottom: 6.25rem;
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-movele-mission-hero {
    padding-top: 0rem;
    padding-bottom: 11rem;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 2rem;
  }
}
.p-movele-mission-hero__head {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-movele-mission-hero__head {
    row-gap: 1.25rem;
    flex-shrink: 0;
    width: fit-content;
  }
}
.p-movele-mission-hero__body {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-movele-mission-hero__body {
    flex-grow: 1;
    max-width: 700px;
    row-gap: 4rem;
  }
}
.p-movele-mission-hero__title {
  font-family: var(--text-en);
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  letter-spacing: normal;
}
.p-movele-mission-hero__title em {
  font-style: normal;
  color: var(--color-blue-600);
}
@media screen and (min-width: 768px) {
  .p-movele-mission-hero__title {
    font-size: 3.25rem;
  }
}
.p-movele-mission-hero__catch {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.8;
  margin: 0;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .p-movele-mission-hero__catch {
    font-size: 1.125rem;
  }
}
.p-movele-mission-hero__text {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-movele-mission-hero__text {
    font-size: 1rem;
  }
}
.p-movele-mission-section {
  border-top: 1px solid var(--color-gray-300);
  padding-top: 3rem;
}
.p-movele-mission-section + .p-movele-mission-section {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-movele-mission-section {
    padding-top: 5.5rem;
    display: flex;
    justify-content: space-between;
    column-gap: 2rem;
  }
  .p-movele-mission-section + .p-movele-mission-section {
    margin-top: 5.5rem;
  }
}
.p-movele-mission-section__head {
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-movele-mission-section__head {
    width: fit-content;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-movele-mission-section__body {
    max-width: 700px;
    flex-grow: 1;
  }
}
.p-movele-mission-section__body .c-figure-1 {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-movele-mission-section__body .c-figure-1 {
    margin-top: 2.5rem;
  }
}
.p-movele-mission-section__title {
  font-family: var(--text-en);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
  letter-spacing: normal;
}
.p-movele-mission-section__title.is-uppercase {
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-movele-mission-section__title {
    font-size: 1.25rem;
  }
}
.p-movele-mission-section__title::before {
  content: "";
  display: block;
  aspect-ratio: 15/12;
  width: 0.9375rem;
  background: url("/movele/assets/img/common/icon_left_slanted.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.p-movele-mission-section__catch {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.p-movele-mission-section__catch:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-movele-mission-section__catch {
    font-size: 2rem;
    margin-bottom: 1.75rem;
  }
}
.p-movele-mission-section__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin: 0;
}
.p-movele-mission-section__text + .p-movele-mission-section__text {
  margin-top: 1.8em;
}
.p-movele-mission-logo {
  margin: 2rem 0 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-movele-mission-logo {
    margin-top: 2.5rem;
  }
}
.p-movele-mission-logo__image {
  aspect-ratio: 334/188;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gray-100);
}
.p-movele-mission-logo__image img {
  display: block;
  width: 58.1395348837%;
}
@media screen and (min-width: 768px) {
  .p-movele-mission-logo__image {
    aspect-ratio: 700/404;
  }
  .p-movele-mission-logo__image img {
    width: 54.2857142857%;
  }
}
.p-movele-mission-logo figcaption {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.p-movele-mission-logo figcaption picture {
  display: block;
  flex-shrink: 0;
  width: fit-content;
}
.p-movele-mission-logo figcaption img {
  display: block;
  width: auto;
  height: 2.125rem;
}
@media screen and (min-width: 768px) {
  .p-movele-mission-logo figcaption {
    column-gap: 1.5rem;
  }
  .p-movele-mission-logo figcaption img {
    width: 9.4375rem;
    height: auto;
  }
}
.p-movele-mission-parallax {
  margin: 5rem 0;
  line-height: 1;
  position: relative;
  aspect-ratio: 390/219;
  overflow: clip;
  view-timeline-name: --parent-parallax;
}
@media screen and (min-width: 768px) {
  .p-movele-mission-parallax {
    margin-block: 7.5rem;
    aspect-ratio: 1440/700;
  }
}
.p-movele-mission-parallax img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation-timeline: --parent-parallax;
  animation-timing-function: linear;
  animation-name: parallax;
  animation-fill-mode: forwards;
}

.p-movele-solution-service {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .p-movele-solution-service {
    row-gap: 3.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-movele-solution-service__item {
    margin-inline: -1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-movele-solution-service__item {
    border-bottom: 1px solid var(--color-gray-300);
    padding-bottom: 3.375rem;
  }
  .p-movele-solution-service__item:first-child {
    border-top: 1px solid var(--color-gray-300);
    padding-top: 3.375rem;
  }
}
.p-movele-solution-service__card {
  border-radius: 0.75rem;
  background-color: var(--color-gray-100);
  padding: 2.5rem 1.75rem;
}
.p-movele-solution-service__card:is(a) {
  display: block;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .p-movele-solution-service__card:is(a):hover .p-movele-solution-service__image img {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 768px) {
  .p-movele-solution-service__card {
    padding: 0;
    background-color: transparent;
    display: grid;
    grid-template-columns: 1fr 33.33333333%;
    grid-template-rows: auto 1fr;
    grid-column-gap: 3rem;
    grid-row-gap: 1.5rem;
  }
  .p-movele-solution-service__card:is(a) {
    display: grid;
  }
}
.p-movele-solution-service__title {
  line-height: 1;
  margin: 0 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-movele-solution-service__title .c-fixed-aspect-ratio {
  --target-height: 23px;
}
@media screen and (min-width: 768px) {
  .p-movele-solution-service__title {
    margin-bottom: 0;
    justify-content: flex-start;
    grid-area: 1/1/2/2;
  }
  .p-movele-solution-service__title .c-fixed-aspect-ratio {
    --target-height: 42px;
  }
}
.p-movele-solution-service__image {
  line-height: 1;
  margin-bottom: 1.5rem;
}
.p-movele-solution-service__image-wrap {
  border-radius: 0.5rem;
  overflow: clip;
}
.p-movele-solution-service__image img {
  display: block;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .p-movele-solution-service__image {
    margin-bottom: 0;
    grid-area: 1/2/3/3;
  }
}
@media screen and (min-width: 768px) {
  .p-movele-solution-service__body {
    grid-area: 2/1/3/2;
  }
}
.p-movele-solution-service__label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--color-gray-700);
  max-width: fit-content;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-movele-solution-service__label {
    background-color: var(--color-gray-100);
  }
}
.p-movele-solution-service__foot {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-movele-solution-service__foot {
    margin-top: 2.5rem;
  }
}
.p-movele-solution-link-block {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-movele-solution-link-block {
    margin-top: 7.5rem;
  }
}
.p-movele-solution-link-block .c-button-1 {
  margin-top: 2.5rem;
}
.p-movele-solution-article {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 5rem;
}
@media screen and (min-width: 768px) {
  .p-movele-solution-article {
    margin-top: 7rem;
    row-gap: 7.5rem;
  }
}
.p-movele-solution-article .p-movele-mission-section + .p-movele-mission-section {
  margin-top: 0;
}
.p-movele-solution-article__head {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}
.p-movele-solution-article__title {
  line-height: 1;
  margin: 0;
  text-align: center;
}
.p-movele-solution-article__title .c-fixed-aspect-ratio {
  --target-height: 25px;
}
@media screen and (min-width: 768px) {
  .p-movele-solution-article__title {
    text-align: left;
  }
  .p-movele-solution-article__title .c-fixed-aspect-ratio {
    --target-height: 45px;
  }
}