@keyframes kvScale {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes toRight {
  0% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes toLeft {
  0% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showAndUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes showToRight {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes clipToRight {
  0% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
}
@media (max-width: 768px) {
  .common-heading01{
    padding-top: 30px;
}
}

.top-kv {
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .top-kv {
    display: flex;
    justify-content: space-between;
    gap: 32px;
  }
}

.top-kv_main {
  position: relative;
  aspect-ratio: 375/308;
}
@media (min-width: 768px) {
  .top-kv_main {
    position: static;
    width: 50.5555555556%;
    height: calc(100vh - 60px);
    border-radius: 0 0 20px 0;
  }
}
@media (min-width: 1024px) {
  .top-kv_main {
    height: calc(100vh - 96px);
    aspect-ratio: auto;
  }
}

.top-kv_mainImg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translateX(0);
}
@media (min-width: 768px) {
  .top-kv_mainImg {
    animation: toRight 2s ease-out forwards;
    border-radius: 0 0 20px 0;
  }
}
.top-kv_mainImg .img {
  width: 100%;
  height: 100%;
  background-image: url("/jp/ja/site/relocation/images/top/kv_img01_s.jpg");
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  animation: kvScale 2s cubic-bezier(0.61, 1, 0.88, 1) forwards;
}
@media (min-width: 768px) {
  .top-kv_mainImg .img {
    background-image: url("/jp/ja/site/relocation/images/top/kv_img01_l.jpg");
  }
}
.top-kv_mainImg.is-animated {
  animation: none;
}

.top-kv_message {
  position: absolute;
  left: 16px;
  bottom: -17px;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 768px) {
  .top-kv_message {
    top: 28.4090909091vh;
    z-index: 1;
  }
}
@media (min-width: 1200px) {
  .top-kv_message {
    top: 42.6136363636vh;
    left: 40px;
  }
}

.top-kv_mainMessage {
  display: inline-block;
  position: relative;
  font-size: var(--font-size-28);
  font-weight: bold;
  color: var(--color-white);
  animation: showToRight 0.3s ease-out forwards 1.3s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  padding: 2px 0;
}
@media (min-width: 768px) {
  .top-kv_mainMessage {
    font-size: var(--font-size-40);
  }
}
.top-kv_mainMessage .text {
  position: relative;
  padding: 0 8px;
}
@media (min-width: 768px) {
  .top-kv_mainMessage .text {
    padding: 0 12px;
  }
}
.top-kv_mainMessage .text span {
  font-size: var(--font-size-21);
}
@media (min-width: 768px) {
  .top-kv_mainMessage .text span {
    font-size: var(--font-size-40);
  }
}
.top-kv_mainMessage::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  border-radius: 4px;
}
.top-kv_mainMessage::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  animation: clipToRight 0.3s ease-out forwards 1.5s;
  border-radius: 4px;
}

.top-kv_subMessage {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .top-kv_subMessage {
    gap: 8px;
    margin-top: 16px;
  }
}
.top-kv_subMessage .text {
  display: block;
  position: relative;
  font-size: var(--font-size-13);
  color: var(--color-primary);
  padding: 2px 8px;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  animation: showToRight 0.3s ease-out forwards 1.8s;
}
@media (min-width: 768px) {
  .top-kv_subMessage .text {
    font-size: var(--font-size-22);
  }
}
.top-kv_subMessage .text::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  background-color: var(--color-white);
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.top-kv_subMessage .text::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  background-color: var(--color-white);
  width: 100%;
  height: 100%;
  animation: clipToRight 0.3s ease-out forwards 2s;
  border-radius: 4px;
}
.top-kv_subMessage span {
  position: relative;
}

.top-kv_contents {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .top-kv_contents {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    width: 45.1388888889%;
    margin: 0;
  }
}

.top-kv_subImg {
  width: 78.9333333333%;
  margin-left: auto;
  border-radius: 12px 0 0 12px;
  aspect-ratio: 296/130;
  overflow: hidden;
  animation: toLeft 2s ease-out forwards;
}
@media (min-width: 768px) {
  .top-kv_subImg {
    width: 100%;
    height: calc(100% - 375px);
    border-radius: 0 0 0 12px;
  }
}
@media (min-width: 1024px) {
  .top-kv_subImg {
    width: 100%;
    height: calc(100% - 300px);
    border-radius: 0 0 0 12px;
  }
}
.top-kv_subImg .img {
  width: 100%;
  height: 100%;
  background-image: url("/jp/ja/site/relocation/images/top/kv_img02_s.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: kvScale 2s cubic-bezier(0.61, 1, 0.88, 1) forwards;
}
@media (min-width: 768px) {
  .top-kv_subImg .img {
    background-image: url("/jp/ja/site/relocation/images/top/kv_img02_l.jpg");
    height: 100%;
  }
}

.top-kv_menu {
  padding: 16px;
  margin-top: 24px;
  background-color: var(--color-primary);
  opacity: 0;
  animation: show 0.3s ease-out forwards 1s;
}
@media (min-width: 768px) {
  .top-kv_menu {
    margin: 0;
    border-radius: 12px;
    padding: 24px;
  }
}
@media (min-width: 1024px) {
  .top-kv_menu {
    padding: 22px;
  }
}
@media (min-width: 1200px) {
  .top-kv_menu {
    padding: 24px;
  }
}
@media (min-width: 1440px) {
  .top-kv_menu {
    width: calc(100% - 64px);
  }
}

.top-kv_list {
  display: grid;
  gap: 12px;
  grid-template-areas: "item1 item1" "item2 item2" "item3 item4";
}
@media (min-width: 1024px) {
  .top-kv_list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 11px;
    grid-template-areas: "item1 item1 item1 item1" "item2 item2 item3 item4";
  }
}
@media (min-width: 1200px) {
  .top-kv_list {
    gap: 12px;
  }
}

.top-kv_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  border-radius: 4px;
  padding: 8px 16px 8px 8px;
  font-weight: bold;
  opacity: 0;
  transform: translateY(30px);
}
.top-kv_item::after {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("/jp/ja/site/relocation/images/common/ico_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.2s ease-out;
}
.top-kv_item p {
  color: var(--color-primary);
  transition: color 0.2s ease-out;
}
.top-kv_item p span {
  background: linear-gradient(var(--color-navy), var(--color-navy)) 0 100%/0 1px no-repeat;
  padding-bottom: 0.2em;
  transition: background 0.2s ease-out;
}
.top-kv_item .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  border-radius: 4px;
  background-color: var(--color-purple);
}
@media (min-width: 1200px) {
  .top-kv_item .ico {
    width: 94px;
  }
}
.top-kv_item:nth-child(1) {
  grid-area: item1;
  font-size: var(--font-size-20);
  animation: showAndUp 0.3s ease-out forwards 1.25s;
}
.top-kv_item:nth-child(1) .ico {
  height: 80px;
}
@media (min-width: 1024px) {
  .top-kv_item:nth-child(1) .ico {
    height: 94px;
  }
}
.top-kv_item:nth-child(1) .ico img {
  width: 56px;
}
@media (min-width: 1024px) {
  .top-kv_item:nth-child(1) .ico img {
    width: 64px;
  }
}
.top-kv_item:nth-child(2) {
  grid-area: item2;
  font-size: var(--font-size-18);
  animation: showAndUp 0.3s ease-out forwards 1.4s;
}
@media (min-width: 1440px) {
  .top-kv_item:nth-child(2) {
    justify-content: flex-start;
    padding-right: 0;
  }
}
.top-kv_item:nth-child(2) .ico {
  flex-shrink: 0;
  height: 56px;
}
@media (min-width: 1024px) {
  .top-kv_item:nth-child(2) .ico {
    height: 94px;
  }
}
.top-kv_item:nth-child(2) .ico img {
  width: 40px;
}
@media (min-width: 1024px) {
  .top-kv_item:nth-child(2) .ico img {
    width: 64px;
  }
}
@media (min-width: 1024px) {
  .top-kv_item:nth-child(2) p {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 12px;
    padding-bottom: 4px;
  }
  .top-kv_item:nth-child(2) p::after {
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("/jp/ja/site/relocation/images/common/ico_arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transition: background-image 0.2s ease-out;
  }
}
@media (min-width: 1024px) {
  .top-kv_item:nth-child(2) p span {
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .top-kv_item:nth-child(2)::after {
    display: none;
  }
}
.top-kv_item:nth-child(3) {
  grid-area: item3;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 16px 8px 8px;
  font-size: var(--font-size-15);
  animation: showAndUp 0.3s ease-out forwards 1.55s;
}
@media (min-width: 768px) {
  .top-kv_item:nth-child(3) {
    font-size: var(--font-size-16);
  }
}
.top-kv_item:nth-child(4) {
  grid-area: item4;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 16px 8px 8px;
  font-size: var(--font-size-15);
  animation: showAndUp 0.3s ease-out forwards 1.7s;
}
@media (min-width: 768px) {
  .top-kv_item:nth-child(4) {
    font-size: var(--font-size-16);
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-kv_item:hover p {
    color: var(--color-navy);
  }
  .top-kv_item:hover p span {
    background-size: 100% 1px;
  }
  .top-kv_item:hover p::after {
    background-image: url("/jp/ja/site/relocation/images/common/ico_arrow_purple.svg");
  }
  .top-kv_item:hover::after {
    background-image: url("/jp/ja/site/relocation/images/common/ico_arrow_purple.svg");
  }
}

@keyframes showAndUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.top-problem {
  position: relative;
  z-index: 1;
  padding: 64px 16px 48px;
  background-image: url("/jp/ja/site/relocation/images/top/problem_bg.svg");
  background-size: 59px 59px;
  background-repeat: repeat;
}
@media (min-width: 768px) {
  .top-problem {
    padding: 80px 16px 64px;
  }
}
.top-problem::before {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 42px 110px 0 110px;
  border-color: var(--color-white) transparent transparent transparent;
}
@media (min-width: 768px) {
  .top-problem::before {
    border-width: 42px 140px 0 140px;
  }
}

.top-problem_heading {
  text-align: center;
  color: var(--color-primary);
}

.top-problem_bubble {
  position: relative;
  display: inline-block;
  padding: 14px 24px;
  background-color: var(--color-green);
  line-height: 1;
  font-size: var(--font-size-20);
  border-radius: 4px;
}
@media (min-width: 768px) {
  .top-problem_bubble {
    font-size: var(--font-size-28);
  }
}
.top-problem_bubble::before {
  position: absolute;
  display: block;
  content: "";
  width: 25px;
  height: 11px;
  bottom: -10px;
  left: 17px;
  background-image: url("/jp/ja/site/relocation/images/top/problem_bubble_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.top-problem_text {
  display: block;
  font-size: var(--font-size-24);
  margin-top: 16px;
}
@media (min-width: 768px) {
  .top-problem_text {
    font-size: var(--font-size-40);
  }
}
.top-problem_text span {
  position: relative;
}
.top-problem_text span::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-image: url("/jp/ja/site/relocation/images/top/dot_line.svg");
  background-size: 12px 2px;
  background-repeat: repeat-x;
  left: 0;
  bottom: -4px;
}
@media (min-width: 768px) {
  .top-problem_text span::before {
    bottom: -10px;
  }
}

.top-problem_contents {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .top-problem_contents {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
  }
}

.top-problem_list {
  position: relative;
  padding-top: 300px;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .top-problem_list {
    position: static;
    padding-top: 182px;
  }
}

.top-problem_item {
  position: absolute;
  text-align: center;
  font-weight: bold;
}
.top-problem_item .box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  box-shadow: 0 2px 24px var(--color-purple06);
  background-color: var(--color-white);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(30px);
}
.top-problem_item .box::before {
  position: absolute;
  display: block;
  content: "";
  width: 28px;
  height: 30px;
  left: 0;
  background-image: url("/jp/ja/site/relocation/images/top/problem_ico.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .top-problem_item .box::before {
    width: 37px;
    height: 40px;
  }
}
.top-problem.is-hidden .top-problem_item .box {
  animation: none;
}
.top-problem_item span {
  position: relative;
  background-image: url("/jp/ja/site/relocation/images/top/dot_line.svg");
  background-repeat: repeat-x;
  background-size: 12px 2px;
  padding-bottom: 3px;
  background-position: left bottom;
}
.top-problem_item:nth-child(1) {
  width: 160px;
  height: 160px;
  left: 0;
  bottom: -60px;
  font-size: var(--font-size-12);
}
@media (min-width: 768px) {
  .top-problem_item:nth-child(1) {
    width: 200px;
    height: 200px;
    bottom: 0;
    left: 0;
    font-size: var(--font-size-16);
  }
}
.top-problem_item:nth-child(1) .box {
  animation: showAndUp 0.5s ease-out forwards 0.6s;
}
.top-problem_item:nth-child(1) .box::before {
  top: 10px;
}
.top-problem_item:nth-child(1) span {
  font-size: var(--font-size-15);
}
@media (min-width: 768px) {
  .top-problem_item:nth-child(1) span {
    font-size: var(--font-size-20);
  }
}
.top-problem_item:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 85px;
  left: 19px;
}
@media (min-width: 768px) {
  .top-problem_item:nth-child(2) {
    width: 160px;
    height: 160px;
    top: 56px;
    left: min(143px, 11.71875vw);
  }
}
.top-problem_item:nth-child(2) .box {
  animation: showAndUp 0.5s ease-out forwards 0.9s;
}
.top-problem_item:nth-child(2) .box::before {
  top: 5px;
}
.top-problem_item:nth-child(2) span {
  font-size: var(--font-size-13);
}
@media (min-width: 768px) {
  .top-problem_item:nth-child(2) span {
    font-size: var(--font-size-18);
  }
}
.top-problem_item:nth-child(3) {
  width: 120px;
  height: 120px;
  top: 10px;
  left: 50%;
  font-size: var(--font-size-10);
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .top-problem_item:nth-child(3) {
    width: 160px;
    height: 160px;
    top: 0;
    font-size: var(--font-size-14);
  }
}
.top-problem_item:nth-child(3) .box {
  animation: showAndUp 0.5s ease-out forwards 1.2s;
}
.top-problem_item:nth-child(3) .box::before {
  top: 5px;
}
.top-problem_item:nth-child(3) span {
  font-size: var(--font-size-12);
}
@media (min-width: 768px) {
  .top-problem_item:nth-child(3) span {
    font-size: var(--font-size-16);
  }
}
.top-problem_item:nth-child(4) {
  width: 140px;
  height: 140px;
  right: 0;
  top: 90px;
  z-index: 1;
  font-size: var(--font-size-11);
}
@media (min-width: 768px) {
  .top-problem_item:nth-child(4) {
    width: 200px;
    height: 200px;
    font-size: var(--font-size-16);
    top: 29px;
    right: min(103px, 6.5104166667vw);
  }
}
.top-problem_item:nth-child(4) .box {
  animation: showAndUp 0.5s ease-out forwards 1.5s;
}
.top-problem_item:nth-child(4) .box::before {
  top: 8px;
}
.top-problem_item:nth-child(4) span {
  font-size: var(--font-size-14);
}
@media (min-width: 768px) {
  .top-problem_item:nth-child(4) span {
    font-size: var(--font-size-20);
  }
}
.top-problem_item:nth-child(5) {
  width: 130px;
  height: 130px;
  right: min(31px, 0.2666666667vw);
  bottom: -55px;
  font-size: var(--font-size-10);
}
@media (min-width: 768px) {
  .top-problem_item:nth-child(5) {
    width: 170px;
    height: 170px;
    font-size: var(--font-size-14);
    right: 18px;
    bottom: 0;
  }
}
.top-problem_item:nth-child(5) .box {
  animation: showAndUp 0.5s ease-out forwards 1.8s;
}
.top-problem_item:nth-child(5) .box::before {
  top: 0;
}
.top-problem_item:nth-child(5) span {
  font-size: var(--font-size-13);
}
@media (min-width: 768px) {
  .top-problem_item:nth-child(5) span {
    font-size: var(--font-size-18);
  }
}

.top-problem_img {
  display: block;
  position: relative;
  width: 62.9333333333vw;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .top-problem_img {
    width: 39.0625vw;
    max-width: 328px;
  }
}

.top-feature {
  padding: 90px 16px 40px;
  background-color: var(--color-purple);
}
@media (min-width: 768px) {
  .top-feature {
    padding: 120px 16px 40px;
  }
}

@media (min-width: 768px) {
  .top-feature_inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.top-feature_heading {
  text-align: center;
  font-size: var(--font-size-28);
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .top-feature_heading {
    font-size: var(--font-size-40);
  }
}
.top-feature_heading .small {
  font-size: var(--font-size-20);
}
@media (min-width: 768px) {
  .top-feature_heading .small {
    font-size: var(--font-size-24);
  }
}
.top-feature_heading .green {
  display: block;
  padding: 8px 0;
  font-size: var(--font-size-24);
  background-color: var(--color-green);
  border-radius: 4px;
  max-width: 310px;
  margin: 8px auto;
}
@media (min-width: 768px) {
  .top-feature_heading .green {
    display: inline-block;
    font-size: var(--font-size-40);
    max-width: none;
    padding: 8px 16px;
    margin: 8px 16px 10px 0;
  }
}

.top-feature_list {
  margin: 42px auto 0;
}

.top-feature_message {
  margin-top: 48px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .top-feature_message {
    text-align: center;
    margin-top: 56px;
  }
}
.top-feature_message .small {
  display: block;
  line-height: 1.8;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .top-feature_message .small {
    font-size: var(--font-size-18);
    padding-bottom: 10px;
  }
}
.top-feature_message .line {
  font-size: var(--font-size-24);
  border-bottom: 3px solid var(--color-green);
  line-height: 1.8;
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .top-feature_message .line {
    font-size: var(--font-size-28);
    padding-bottom: 6px;
  }
}

.top-feature_figure {
  margin-top: 48px;
}
@media (min-width: 768px) {
  .top-feature_figure {
    margin-top: 56px;
  }
}

.top-case {
  position: relative;
  background-color: var(--color-purple);
  padding: 40px 0;
}
.top-case::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 320px);
  background-color: var(--color-white);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.top-case_inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--color-white);
}

.top-case_container {
  padding: 0 16px 48px;
}
@media (min-width: 768px) {
  .top-case_container {
    padding: 0 16px 80px;
  }
}
@media (max-width: 768px) {
  .top-case .parts-question_contents{
    margin-top: 35px;
  }
}
.top-case_contents {
  display: flex;
  flex-direction: column;
  gap: 52px;
  margin: 60px auto 0;
  max-width: 520px;
}
@media (min-width: 768px) {
  .top-case_contents {
    flex-direction: row;
    gap: 32px;
    max-width: 1072px;
  }
}

.top-case_button {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .top-case_button {
    margin-top: 64px;
  }
}

.top-reason {
  position: relative;
  background-color: var(--color-purple);
  padding: 40px 0;
}
.top-reason::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 320px);
  background-color: var(--color-white);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.top-reason_inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--color-white);
}

.top-reason_container {
  padding: 0 16px 48px;
}
@media (min-width: 768px) {
  .top-reason_container {
    padding: 0 16px 80px;
  }
}

@media (max-width: 768px) {
.top-reason .common-heading01 .green{
    font-size: var(--font-size-24);
  }
}

.top-reason_contents {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .top-reason_contents {
    max-width: 1072px;
  }
}

.top-reason_contents {
  margin-top: 70px;
}

.top-reason_column01 {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 1024px) {
  .top-reason_column01 {
    flex-direction: row;
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .top-reason_column01 .top-reason_item {
    width: calc((100% - 48px) / 3);
  }
}
.top-reason_column01 .top-reason_item:nth-child(1) .title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}
.top-reason_column01 .top-reason_item:nth-child(1) .box01 {
  font-size: var(--font-size-28);
  line-height: 1;
  font-family: "Hind", sans-serif;
}
.top-reason_column01 .top-reason_item:nth-child(1) .box01 .small {
  font-size: var(--font-size-24);
}
.top-reason_column01 .top-reason_item:nth-child(1) .box01 .num {
  font-size: var(--font-size-60);
  padding: 0 2px 0 4px;
}
@media (min-width: 768px) {
  .top-reason_column01 .top-reason_item:nth-child(1) .box01 .num {
    font-size: var(--font-size-84);
  }
}
.top-reason_column01 .top-reason_item:nth-child(1) .box02 {
  position: relative;
  bottom: 18px;
  font-size: var(--font-size-16);
  line-height: 1;
}
@media (min-width: 768px) {
  .top-reason_column01 .top-reason_item:nth-child(1) .box02 {
    font-size: var(--font-size-19);
  }
}
.top-reason_column01 .top-reason_item:nth-child(1) .box02 .middle {
  display: block;
  font-size: var(--font-size-24);
  margin-top: 6px;
}
@media (min-width: 768px) {
  .top-reason_column01 .top-reason_item:nth-child(1) .box02 .middle {
    font-size: var(--font-size-28);
  }
}
.top-reason_column01 .top-reason_item:nth-child(2) .title {
  text-align: center;
  font-size: var(--font-size-18);
}
.top-reason_column01 .top-reason_item:nth-child(2) .title .big {
  display: block;
  font-size: var(--font-size-28);
  margin-top: 4px;
}
.top-reason_column01 .top-reason_item:nth-child(2) .description {
  margin-top: 12px;
}
.top-reason_column01 .top-reason_item:nth-child(3) .title {
  text-align: center;
  font-size: var(--font-size-18);
}
.top-reason_column01 .top-reason_item:nth-child(3) .title .big {
  display: block;
  font-size: var(--font-size-28);
  margin-top: 4px;
}
.top-reason_column01 .top-reason_item:nth-child(3) .description {
  margin-top: 12px;
}

.top-reason_column02 {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .top-reason_column02 {
    flex-direction: row;
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .top-reason_column02 .top-reason_item {
    width: calc((100% - 24px) / 2);
  }
}
.top-reason_column02 .top-reason_item:nth-child(1) {
  padding: 40px 24px 0;
}
@media (min-width: 768px) {
  .top-reason_column02 .top-reason_item:nth-child(1) {
    padding: 40px 24px 0;
  }
}
@media (min-width: 1024px) {
  .top-reason_column02 .top-reason_item:nth-child(1) {
    padding: 20px 24px 0;
  }
}
.top-reason_column02 .top-reason_item:nth-child(1) .title {
  text-align: center;
  font-size: var(--font-size-18);
}
.top-reason_column02 .top-reason_item:nth-child(1) .title .big {
  font-size: var(--font-size-28);
}
.top-reason_column02 .top-reason_item:nth-child(1) .title .num {
  font-size: var(--font-size-48);
  font-weight: 600;
  padding-right: 8px;
  font-family: "Hind", sans-serif;
}
@media (min-width: 768px) {
  .top-reason_column02 .top-reason_item:nth-child(1) .title .num {
    font-size: var(--font-size-68);
  }
}
.top-reason_column02 .top-reason_item:nth-child(1) .title .box {
  display: block;
  margin-top: -12px;
}
@media (min-width: 1024px) {
  .top-reason_column02 .top-reason_item:nth-child(1) .title .box {
    display: inline;
    margin-top: 0;
  }
}
.top-reason_column02 .top-reason_item:nth-child(1) .description {
  margin-top: 12px;
}
.top-reason_column02 .top-reason_item:nth-child(2) {
  padding: 40px 24px 0px;
}
@media (min-width: 768px) {
  .top-reason_column02 .top-reason_item:nth-child(2) {
    padding: 40px 24px 0;
  }
}
@media (min-width: 1024px) {
  .top-reason_column02 .top-reason_item:nth-child(2) {
    padding: 20px 24px 0;
  }
}
.top-reason_column02 .top-reason_item:nth-child(2) .title {
  text-align: center;
  font-size: var(--font-size-18);
}
.top-reason_column02 .top-reason_item:nth-child(2) .title .big {
  font-size: var(--font-size-28);
}
.top-reason_column02 .top-reason_item:nth-child(2) .title .num {
  display: inline-block;
  padding: 0 8px;
  font-size: var(--font-size-48);
  font-weight: 600;
  font-family: "Hind", sans-serif;
}
@media (min-width: 768px) {
  .top-reason_column02 .top-reason_item:nth-child(2) .title .num {
    font-size: var(--font-size-68);
  }
}
.top-reason_column02 .top-reason_item:nth-child(2) .title .box {
  display: block;
  margin-top: -12px;
}
@media (min-width: 1024px) {
  .top-reason_column02 .top-reason_item:nth-child(2) .title .box {
    display: inline;
    padding-left: 1em;
    margin-top: 0;
  }
}
.top-reason_column02 .top-reason_item:nth-child(2) .description {
  margin-top: 12px;
}

.top-reason_item {
  width: 100%;
  position: relative;
  padding: 40px 24px 28px;
  border: 2px solid var(--color-gray);
}
.top-reason_item .ico {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 58px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: var(--font-size-24);
  color: var(--color-primary);
  font-family: "Hind", sans-serif;
}
.top-reason_item .ico span {
  position: relative;
}
.top-reason_item .ico::before {
  display: block;
  content: "";
  top: -2px;
  position: absolute;
  width: 52px;
  height: 58px;
  height: 100%;
  background-image: url("/jp/ja/site/relocation/images/top/reason_frame.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.top-reason_item .title {
  color: var(--color-primary);
  font-weight: bold;
}
.top-reason_item .description {
  font-weight: bold;
  line-height: 1.8;
}

.top-reason_button {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.top-lineup {
  position: relative;
  background-color: var(--color-purple);
  padding: 40px 0;
}
.top-lineup::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 320px);
  background-color: var(--color-white);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.top-lineup_inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--color-white);
}

.top-lineup_container {
  padding: 0 16px 48px;
}
@media (min-width: 768px) {
  .top-lineup_container {
    padding: 0 16px 80px;
  }
}

.top-lineup_contents {
  margin-top: 48px;
}

.top-lineup_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .top-lineup_list {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .top-lineup_list {
    max-width: 1072px;
    margin: 0 auto;
  }
}

.top-lineup_link {
  display: block;
  color: var(--color-black);
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s ease-out;
}
@media (min-width: 768px) {
  .top-lineup_link {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .top-lineup_link {
    width: calc((100% - 24px) / 2);
  }
}
.top-lineup_link .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 4px;
  background-color: var(--color-white);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .top-lineup_link .ico {
    margin: 0;
    width: 96px;
    height: 96px;
  }
}
.top-lineup_link .ico img {
  width: 48px;
}
@media (min-width: 768px) {
  .top-lineup_link .ico img {
    width: 64px;
  }
}
.top-lineup_link .text {
  margin-top: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .top-lineup_link .text {
    position: relative;
    top: 3px;
    margin: 0;
    text-align: left;
  }
}
.top-lineup_link .label {
  font-size: var(--font-size-13);
  color: var(--color-white);
  line-height: 1;
  font-weight: bold;
  padding: 7px 8px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: background-color 0.2s ease-out;
}
.top-lineup_link .title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: var(--font-size-20);
  color: var(--color-primary);
  transition: color 0.2s ease-out;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .top-lineup_link .title {
    justify-content: flex-start;
  }
}
.top-lineup_link.-big .ico {
  width: 96px;
  height: 96px;
}
@media (min-width: 768px) {
  .top-lineup_link.-big .ico {
    width: 112px;
    height: 112px;
  }
}
.top-lineup_link.-big .ico img {
  width: 68px;
}
@media (min-width: 768px) {
  .top-lineup_link.-big .ico img {
    width: 80px;
  }
}
@media (min-width: 768px) {
  .top-lineup_link.-big .text {
    top: 5px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-lineup_link:hover {
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
  }
  .top-lineup_link:hover .common-link {
    color: var(--color-navy);
  }
  .top-lineup_link:hover .common-link span:first-child {
    background-size: 100% 1px;
  }
  .top-lineup_link:hover .common-link .arrow::before {
    opacity: 0;
  }
  .top-lineup_link:hover .common-link .arrow::after {
    opacity: 1;
  }
  .top-lineup_link:hover .label {
    background-color: var(--color-navy);
  }
}

.top-lineup_linkInner {
  padding: 24px 8px 32px;
  background-color: var(--color-purple03);
  border-radius: 4px 4px 0 0;
}
@media (min-width: 768px) {
  .top-lineup_linkInner {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 32px;
  }
}

.top-lineup_description {
  padding: 24px 16px 16px;
  font-weight: bold;
  line-height: 1.8;
  color: var(--color-black);
}

.top-column {
  position: relative;
  background-color: var(--color-purple);
  padding: 40px 0;
}
.top-column::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 320px);
  background-color: var(--color-white);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.top-column_inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--color-white);
}

.top-column_container {
  padding: 0 16px 48px;
}
@media (min-width: 768px) {
  .top-column_container {
    padding: 0 16px 80px;
  }
}

.top-column_contents {
  margin: 30px 0 0;
}
@media (min-width: 1024px) {
  .top-column_contents {
    margin: 40px auto 0;
  }
}

.top-column_button {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .top-column_button {
    margin-top: 64px;
  }
}

.top-news {
  position: relative;
  background-color: var(--color-purple);
  padding: 40px 0 80px;
}
.top-news::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 320px);
  background-color: var(--color-white);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.top-news_inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--color-white);
}

.top-news_container {
  padding: 0 16px 48px;
}
@media (min-width: 768px) {
  .top-news_container {
    padding: 0 16px 80px;
  }
}

.top-news_contents {
  margin: 40px auto 0;
  max-width: 1072px;
}

.top-news_list {
  margin-top: 32px;
}

.top-news_box:not(:first-child) {
  margin-top: 80px;
}

.top-news_button {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}