.moving-choose {
  padding: 64px 0 40px;
}
@media (min-width: 768px) {
  .moving-choose {
    padding: 80px 0 60px;
  }
}

.moving-choose_contents {
  padding: 48px 16px 64px;
  background-color: var(--color-purple);
  margin-top: 48px;
}
@media (min-width: 768px) {
  .moving-choose_contents {
    padding: 80px 16px 80px;
  }
}

.moving-choose_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .moving-choose_list {
    gap: 32px;
    max-width: 584px;
  }
}
@media (min-width: 1024px) {
  .moving-choose_list {
    flex-direction: row;
    max-width: 1200px;
  }
}

.moving-choose_item {
  padding: 8px 8px 24px;
  background-color: var(--color-white);
  border-radius: 4px;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .moving-choose_item {
    display: flex;
    flex-direction: column;
    padding: 8px 8px 32px;
    max-width: 650px;
  }
}
.moving-choose_item .imgLink {
  transition: opacity 0.2s ease-out;
}
.moving-choose_item .imgLink .img {
  border-radius: 4px;
  overflow: hidden;
}
.moving-choose_item .imgLink img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (hover: hover) and (pointer: fine) {
  .moving-choose_item .imgLink:hover {
    opacity: 0.7;
  }
}
.moving-choose_item .contents {
  margin-top: 26px;
  height: 100%;
}
@media (min-width: 1024px) {
  .moving-choose_item .contents {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 32px;
  }
}
.moving-choose_item .description {
  margin-top: 16px;
  padding: 0 16px;
  font-weight: bold;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .moving-choose_item .description {
    padding: 0 24px;
  }
}
.moving-choose_item .buttonGroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .moving-choose_item .buttonGroup {
    flex-direction: row;
    padding: 0 24px;
    margin-top: 32px;
  }
}
.moving-choose_item:last-child .imgLink {
  display: flex;
  gap: 4px;
}
.moving-choose_item .common-button {
  max-width: 310px;
}

.moving-choose_link {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
.moving-choose_link::before {
  position: relative;
  top: 2px;
}
@media (min-width: 768px) {
  .moving-choose_link::before {
    top: 6px;
  }
}
.moving-choose_link.-japan::before {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("/relocation/images/common/ico_japan.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.moving-choose_link.-global::before {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("/relocation/images/common/ico_earth02.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.moving-choose_link .common-link {
  flex-wrap: wrap;
  gap: 2px 8px;
  font-size: var(--font-size-18);
}
@media (min-width: 768px) {
  .moving-choose_link .common-link {
    font-size: var(--font-size-24);
    flex-wrap: nowrap;
    gap: 12px;
  }
}
.moving-choose_link .common-link .arrow {
  position: relative;
  left: -20px;
  width: 100%;
}
.moving-choose_link .common-link .arrow::before, .moving-choose_link .common-link .arrow::after {
  background-position: center;
}
@media (min-width: 768px) {
  .moving-choose_link .common-link .arrow {
    left: auto;
    width: 24px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .moving-choose_link .common-link:hover::after {
    background-image: url("/relocation/images/common/ico_arrow_green.svg");
  }
}

@keyframes showAndUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.moving-feature {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .moving-feature {
    padding: 60px 0;
  }
}

.moving-feature_contents {
  padding: 88px 16px 64px;
  margin-top: 48px;
  background-color: var(--color-primary);
  background-image: url("/relocation/images/moving/bg_feature_s.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  .moving-feature_contents {
    background-image: url("/relocation/images/moving/bg_feature_l.png");
    padding: 104px 16px 147px;
  }
}

.moving-feature_list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) {
  .moving-feature_list {
    max-width: 1200px;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    margin: 0 auto;
  }
}

.moving-feature_item {
  position: relative;
  padding: 48px 24px 24px;
  border-radius: 4px;
  background-color: var(--color-white);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
}
@media (min-width: 768px) {
  .moving-feature_item {
    padding: 48px 32px 32px;
  }
}
@media (min-width: 1024px) {
  .moving-feature_item {
    width: calc((100% - 48px) / 3);
  }
}
.moving-feature_item .heading {
  display: inline-block;
  font-weight: bold;
  font-size: var(--font-size-20);
  border-bottom: 2px solid var(--color-green);
}
.moving-feature_item img {
  margin-top: 16px;
}
.moving-feature_item .description {
  text-align: left;
  line-height: 1.8;
  margin-top: 16px;
  font-weight: bold;
}
.moving-feature_item::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("/relocation/images/common/ico_check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  .moving-feature_item:nth-child(2) {
    top: 48px;
  }
}
@media (min-width: 1024px) {
  .moving-feature_item:nth-child(3) {
    top: 96px;
  }
}
.moving-feature.is-hidden .moving-feature_item {
  animation: none;
}
.moving-feature_item:nth-child(1) {
  animation: showAndUp 0.5s ease-out forwards 0.6s;
}
.moving-feature_item:nth-child(2) {
  animation: showAndUp 0.5s ease-out forwards 0.9s;
}
.moving-feature_item:nth-child(3) {
  animation: showAndUp 0.5s ease-out forwards 1.2s;
}

.moving-flow {
  padding: 40px 16px;
}
@media (min-width: 768px) {
  .moving-flow {
    padding: 60px 16px;
  }
}

.moving-flow_description {
  margin-top: 36px;
  line-height: 1.8;
  font-weight: bold;
}
@media (min-width: 768px) {
  .moving-flow_description {
    text-align: center;
  }
}

.moving-flow_buttonGroup {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .moving-flow_buttonGroup {
    flex-direction: row;
    gap: 48px;
    margin-top: 64px;
  }
}

.moving-option {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .moving-option {
    padding: 60px 0;
  }
}
.moving-option .common-option_list {
  gap: 16px;
}
@media (min-width: 768px) {
  .moving-option .common-option_list {
    gap: 32px;
  }
}

.moving-option_contents {
  margin-top: 48px;
}

.moving-option_buttonGroup {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 48px 16px 0;
}
@media (min-width: 768px) {
  .moving-option_buttonGroup {
    flex-direction: row;
    gap: 48px;
    padding: 64px 16px 0;
  }
}

.moving-question {
  padding: 40px 16px;
}
@media (min-width: 768px) {
  .moving-question {
    padding: 60px 16px;
  }
}

.moving-question_contents {
  margin: 48px auto 0;
  max-width: 1200px;
}

.moving-question_item:not(:first-child) {
  margin-top: 48px;
}
@media (min-width: 768px) {
  .moving-question_item:not(:first-child) {
    margin-top: 64px;
  }
}

.moving-question_accordion {
  margin-top: 32px;
}

.moving-quesiton_button {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .moving-quesiton_button {
    margin-top: 64px;
  }
}

.moving-news {
  padding: 40px 16px 80px;
}
@media (min-width: 768px) {
  .moving-news {
    padding: 60px 16px 120px;
  }
}

.moving-news_contents {
  margin: 48px auto 0;
  max-width: 1200px;
}

.moving-news_box:not(:first-child) {
  margin-top: 80px;
}

.moving-news_list {
  margin-top: 32px;
}

.moving-news_button {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}