.should-sale-part-container {
  background: #fff;
  align-self: stretch;
  height: auto;
  display: flex;
}

@media (min-width: 890px) {
  .should-sale-part-container {
    max-height: 545px;
    height: 43vw;
  }
}

.should-sale-part-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 889px) {
  .should-sale-part-inner {
    flex-direction: column;
    display: flex;
  }
}

.should-sale-part-image {
  height: 100%;
  width: auto;
  position: absolute;
}

@media (min-width: 890px) {
  .should-sale-part-image {
    min-width: 55vw;
  }
}

@media (max-width: 889px) {
  .should-sale-part-image {
    width: 100%;
    min-height: 220px;
    height: 30vw;
    position: relative;
    top: 0;
    left: 0;
  }
}

.should-sale-part-image img {
  object-fit: cover;
  object-position: center 25%;
  width: 100%;
  height: 100%;
  display: block;
}

@media (min-width: 890px) {
  .should-sale-part-image img {
    object-position: -40px 50%;
  }
}

.should-sale-part-content {
  width: max-content;
  position: absolute;
  top: 50%;
  right: var(--content-spacing);
  transform: translateY(-50%);
}

@media (max-width: 889px) {
  .should-sale-part-content {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    transform: unset;
    background: #fff;
    padding: 28px 0 32px;
    position: relative;
    top: 0;
    left: 0;
  }
}

.should-sale-part-content-inner {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  display: flex;
}

@media (max-width: 889px) {
  .should-sale-part-content-inner {
    align-items: stretch;
    gap: 20px;
  }
}

.should-sale-part-content-inner-card {
  box-sizing: border-box;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

@media (max-width: 1120px) {
  .should-sale-part-content-inner-card {
    gap: 8px;
  }
}

@media (max-width: 889px) {
  .should-sale-part-content-inner-card {
    background: none;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    height: auto;
  }
}

.should-sale-part-card-title {
  white-space: nowrap;
  color: #0645b8;
  font-family: var(--font-family-Font-2, 'Noto Sans JP');
  font-style: normal;
  font-weight: var(--font-weight-black, 900);
  align-items: baseline;
  padding-left: 10px;
  font-size: max(32px, min(5vw, 66px));
  line-height: 140%;
  display: inline-flex;
}

@media (max-width: 1120px) {
  .should-sale-part-card-title {
    letter-spacing: 1.17px;
    box-sizing: border-box;
    max-width: 100%;
    padding-left: 10px;
  }
}

.card-title-t2,
.card-title-t4 {
  font-size: max(24px, min(4vw, 56px));
}

.should-sale-part-card-subtitle-break {
  display: none;
}

@media (max-width: 460px) {
  .should-sale-part-card-subtitle-break {
    display: inline;
  }
}

.should-sale-part-card-subtitle {
  color: #0645b8;
  white-space: nowrap;
  letter-spacing: 0.939px;
  padding-left: 35px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: max(24px, min(3vw, 46px));
  font-style: normal;
  font-weight: 900;
  line-height: 140%;
}

@media (max-width: 889px) {
  .should-sale-part-card-subtitle {
    white-space: normal;
    padding-left: var(--content-spacing);
  }
}

.should-sale-part-button-container {
  display: flex;
  justify-content: stretch;
  align-items: center;
  width: 100%;
  padding-left: 35px;
}

@media (max-width: 1120px) {
  .should-sale-part-button-container {
    padding-left: 30px;
  }
}

@media (max-width: 889px) {
  .should-sale-part-button-container {
    display: none;
  }
}

.should-sale-part-button-link {
  box-sizing: border-box;
  background: linear-gradient(110deg, #ea7500 37%, #d9522a 100%);
  -webkit-border-radius: 8px;
  border-radius: 8px;
  width: 100%;
  max-width: 386px;
  height: 68px;
  padding: 20px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  transition: opacity 0.3s;
}

@media (max-width: 889px) {
  .should-sale-part-button-link {
    gap: 12px;
  }
}

.should-sale-part-button-link:hover {
  opacity: 0.7;
}

.should-sale-part-button-icon {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.should-sale-part-button-icon svg {
  display: block;
}

.should-sale-part-button-text {
  color: #fff;
  align-items: center;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  display: flex;
}

@media (max-width: 889px) {
  .should-sale-part-button-text {
    font-size: 18px;
  }
}

.owner-concern-container {
  padding-top: 64px;
  padding-bottom: 64px;
  padding-inline: var(--content-spacing);
  background: #f0f7ff;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  gap: 44px;
  display: flex;
}

@media (max-width: 1240px) {
  .owner-concern-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.owner-concern-header-text {
  color: #0645b8;
  text-align: center;
  letter-spacing: 1.334px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%;
}

@media (max-width: 1060px) {
  .owner-concern-header-text {
    font-size: 24px;
  }
}

.owner-concern-content {
  background: #fff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  gap: 28px;
  padding: 40px 80px;
  display: flex;
  box-shadow: 0 4px 10px 5px rgba(187, 191, 197, 0.1);
}

@media (max-width: 1240px) {
  .owner-concern-content {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .owner-concern-content {
    padding: 40px;
  }
}

@media (max-width: 500px) {
  .owner-concern-content {
    padding: 40px 12px;
  }
}

.owner-concern-content-inner {
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-self: stretch;
  align-items: center;
  gap: 28px;
  display: grid;
}

@media (max-width: 768px) {
  .owner-concern-content-inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.owner-concern-content-inner-card {
  flex: 1 0 0;
  align-items: center;
  gap: 18px;
  display: flex;
}

.owner-concern-content-inner-card-icon {
  aspect-ratio: 1;
  width: 42px;
  height: 42px;
  display: flex;
}

.owner-concern-content-inner-card-text {
  color: #0645b8;
  letter-spacing: 1.515px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

@media (max-width: 1060px) {
  .owner-concern-content-inner-card-text br {
    display: none;
  }
}

.expert-advice-container {
  padding-top: 36px;
  padding-bottom: 36px;
  padding-inline: var(--content-spacing);
  background: url('../image/property-sale-expert-advice.webp') center / cover
    no-repeat;
  flex-flow: wrap;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  gap: 24px 8px;
  display: flex;
}

@media (max-width: 768px) {
  .expert-advice-container {
    background: url('../image/property-sale-expert-advice-sp.webp') center;
    flex-direction: column;
    gap: 8px;
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

.expert-advice-header-text {
  color: #fff;
  text-align: center;
  font-family: var(--font-family-Font-2, 'Noto Sans JP');
  font-size: var(--font-size-3xl, 28px);
  font-style: normal;
  font-weight: var(--font-weight-black, 900);
  letter-spacing: 1.334px;
  line-height: 140%;
}

@media (max-width: 768px) {
  .expert-advice-header-text {
    font-size: 24px;
  }
}

.expert-advice-content-card {
  background: #fff;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 11.658px;
  width: 500px;
  height: 88.083px;
  padding: 25.907px 20.725px;
  text-decoration: none;
  transition: opacity 0.3s;
  display: flex;
}

@media (max-width: 768px) {
  .expert-advice-content-card {
    box-sizing: border-box;
    background: #ea7500;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    gap: 12px;
    width: 100%;
    max-width: 380px;
    height: 54px;
    padding: 20px 24px;
  }
}

.expert-advice-content-card:hover {
  opacity: 0.7;
}

.expert-advice-content-card-inner-icon {
  aspect-ratio: 1;
  flex-shrink: 0;
  width: 30.658px;
  height: 30.658px;
}

@media (max-width: 768px) {
  .expert-advice-content-card-inner-icon {
    width: 24px;
    height: 24px;
  }

  .expert-advice-content-card-inner-icon svg {
    width: 24px;
    height: 24px;
  }

  .expert-advice-content-card-inner-icon svg path {
    fill: #fff;
  }
}

.expert-advice-content-card-inner-text {
  color: #d75900;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 25.907px;
  font-style: normal;
  font-weight: 700;
  line-height: 24.611px;
}

@media (max-width: 768px) {
  .expert-advice-content-card-inner-text {
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
  }
}

.expert-advice-content-card-inner-text-sp {
  display: none;
}

@media (max-width: 768px) {
  .expert-advice-content-card-inner-text-pc {
    display: none;
  }

  .expert-advice-content-card-inner-text-sp {
    display: inline;
  }
}

.our-expertise-container {
  padding-top: 96px;
  padding-bottom: 96px;
  padding-inline: var(--content-spacing);
  background: #fff url('../image/property-sale-our-experties.png') -57.214px 0 /
    107.946% 100% no-repeat;
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  gap: 56px;
  display: flex;
}

@media (max-width: 1360px) {
  .our-expertise-container {
    background-position: 100% 0;
    background-size: 90% 100%;
  }
}

@media (max-width: 1240px) {
  .our-expertise-container {
    background-position: 100% 0;
    background-size: 80% 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 1140px) {
  .our-expertise-container {
    background-position: 100% 0;
    background-size: 70% 100%;
  }
}

@media (max-width: 1090px) {
  .our-expertise-container {
    background-position: 100% 0;
    background-size: 80% 50%;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 1060px) {
  .our-expertise-container {
    background-position: 100% 0;
    background-size: 50% 35%;
  }
}

@media (max-width: 889px) {
  .our-expertise-container {
    background-size: 33% 33%;
  }
}

@media (max-width: 800px) {
  .our-expertise-container {
    background: #fff;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 0;
    padding-right: 0;
  }
}

.our-expertise-header-container {
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  gap: 16px;
  width: 768px;
  display: flex;
}

@media (max-width: 800px) {
  .our-expertise-header-container {
    box-sizing: border-box;
    width: 100%;
    padding: 0;
  }
}

.our-expertise-text-group {
  flex-direction: column;
  align-self: stretch;
  gap: 16px;
  display: flex;
}

@media (max-width: 800px) {
  .our-expertise-text-group {
    padding-inline: var(--content-spacing);
    box-sizing: border-box;
    width: 100%;
  }
}

.our-expertise-image-strip {
  display: none;
}

@media (max-width: 800px) {
  .our-expertise-image-strip {
    flex-shrink: 0;
    width: 100%;
    height: 139px;
    display: block;
    overflow: hidden;
  }
}

.our-expertise-image-strip img {
  display: block;
}

@media (max-width: 800px) {
  .our-expertise-image-strip img {
    object-fit: cover;
    object-position: 75% 85%;
    width: 100%;
    height: 100%;
  }
}

.our-expertise-header-text {
  color: #d75900;
  letter-spacing: 1.334px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%;
}

@media (max-width: 800px) {
  .our-expertise-header-text {
    font-size: 24px;
  }
}

.our-experties-header-subtext {
  color: #000;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 186%;
}

@media (max-width: 800px) {
  .our-experties-header-subtext {
    font-size: 16px;
  }
}

.our-expertise-content-container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 28px;
  width: 1022px;
  height: 233px;
  display: flex;
}

@media (max-width: 1280px) {
  .our-expertise-content-container {
    width: 100%;
  }
}

@media (max-width: 1060px) {
  .our-expertise-content-container {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
  }
}

@media (max-width: 800px) {
  .our-expertise-content-container {
    padding-inline: var(--content-spacing);
    box-sizing: border-box;
    max-width: 100%;
  }
}

.our-expertise-content-card {
  background: #f0f7ff;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  flex-direction: column;
  flex: 1 0 0;
  align-items: flex-start;
  gap: 12px;
  padding: 28px;
  display: flex;
}

.our-expertise-content-card-header {
  color: #0645b8;
  letter-spacing: 1.018px;
  white-space: nowrap;
  align-self: stretch;
  font-family: Noto Sans JP;
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%;
}

@media (max-width: 800px) {
  .our-expertise-content-card-header {
    white-space: unset;
    font-size: 24px;
  }
}

.our-expertise-content-card-text {
  color: #000;
  align-self: stretch;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 186%;
}

.our-experties-content-card-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
}

.expert-support-container {
  padding-top: 96px;
  padding-bottom: 0;
  padding-inline: var(--content-spacing);
  background: linear-gradient(#f0f7ff 0%, #fff 52.88%);
  flex-direction: column;
  align-self: stretch;
  align-items: center;
  gap: 56px;
  display: flex;
}

@media (max-width: 1024px) {
  .expert-support-container {
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .expert-support-container {
    gap: 28px;
    padding-top: 40px;
    padding-bottom: 0;
  }
}

.expert-support-content-container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 56px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
}

@media (max-width: 1024px) {
  .expert-support-content-container {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .expert-support-content-container {
    flex-direction: column;
    gap: 24px;
  }
}

.expert-support-content-card-container {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 16px;
  display: flex;
}

.expert-support-content-header-text {
  color: #d75900;
  letter-spacing: 1.334px;
  align-self: stretch;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%;
}

@media (max-width: 768px) {
  .expert-support-content-header-text {
    font-size: 24px;
  }
}

.expert-support-content-card-text {
  color: #000;
  align-self: stretch;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 186%;
}

@media (max-width: 990px) {
  .expert-support-content-card-text {
    font-size: 16px;
  }
}

.expert-support-content-card-image {
  flex-shrink: 0;
  width: 634px;
  height: 139px;
}

@media (max-width: 1024px) {
  .expert-support-content-card-image {
    flex-shrink: 1;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .expert-support-content-card-image {
    width: 100%;
    height: auto;
  }
}

.expert-support-content-card-image-pc {
  max-width: 100%;
  height: auto;
  display: block;
}

.expert-support-content-card-image-sp {
  display: none;
}

@media (max-width: 768px) {
  .expert-support-content-card-image-pc {
    display: none;
  }

  .expert-support-content-card-image-sp {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

.expert-support-footer-overlay-container {
  padding-top: 56px;
  padding-bottom: 96px;
  padding-inline: var(--content-spacing);
  background: #fff url('../image/property-sale-expert-advice-below.webp')
    bottom / 100% 100% no-repeat;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  gap: 56px;
  display: flex;
}

@media (max-width: 1440px) {
  .expert-support-footer-overlay-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .expert-support-footer-overlay-container {
    box-sizing: border-box;
    background: #fff url('../image/property-sale-expert-advice-below-sp.webp')
      bottom / 100% 50% no-repeat;
    gap: 28px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.expert-support-footer-contact {
  width: 100%;
  max-width: 1180px;
  height: 236.811px;
  box-shadow: none;
  background: none;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  justify-content: center;
  align-items: flex-start;
  gap: 31px;
  display: flex;
}

@media (max-width: 1240px) {
  .expert-support-footer-contact {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    padding: 0;
  }
}

.expert-support-footer-contact .footer-contact-panel {
  width: 100%;
  max-width: 100%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}

.footer-contact-part-background-container {
  width: 100%;
  height: 644.811px;
  padding-top: 0;
  padding-bottom: 0;
  padding-inline: var(--content-spacing);
  background: url('../image/property-sale-contact-background.webp') center /
    cover no-repeat;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  gap: 60px;
  display: flex;
}

.footer-contact-part-background-container .footer-contact-panel {
  width: min(1180px, 100%);
}

@media (max-width: 1000px) {
  .footer-contact-part-background-container {
    background:
      url('../image/footer-background-frame.webp') center / cover no-repeat,
      linear-gradient(#0947b9 0%, #07307c 100%);
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .footer-contact-part-background-container {
    gap: 24px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

.footer-contact-heading-container {
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  display: flex;
}

@media (max-width: 889px) {
  .footer-contact-heading-container {
    gap: 16px;
  }
}

.footer-contact-heading {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  width: 1111px;
  max-width: 100%;
  margin: 0;
  font-family: Noto Sans JP;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%;
}

@media (max-width: 889px) {
  .footer-contact-heading {
    font-size: 24px;
  }

  @media (max-width: 430px) {
    .footer-contact-heading {
      font-size: 22px;
    }
  }
}

.footer-contact-heading-text {
  color: #fff;
  text-align: center;
  letter-spacing: 1.336px;
  text-shadow: 2px 2px 4px rgba(34, 34, 34, 0.11);
  width: 1111px;
  max-width: 100%;
  margin: 0;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 186%;
}

@media (max-width: 889px) {
  .footer-contact-heading-text {
    font-size: 16px;
  }

  @media (max-width: 430px) {
    .footer-contact-heading-text {
      font-size: 13px;
    }
  }
}

.consultation-timing-container {
  width: 100%;
  padding-top: 96px;
  padding-bottom: 96px;
  padding-inline: var(--content-spacing);
  background: #fff;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  display: flex;
}

@media (max-width: 1024px) {
  .consultation-timing-container {
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (max-width: 768px) {
  .consultation-timing-container {
    gap: 28px;
    padding-top: 32px;
    padding-bottom: 20px;
  }
}

.consultation-timing-header-text {
  color: #0645b8;
  text-align: center;
  letter-spacing: 1.334px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%;
}

@media (max-width: 1024px) {
  .consultation-timing-header-text {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .consultation-timing-header-text {
    letter-spacing: 1.334px;
    font-size: 24px;
  }
}

.consultation-timing-content-card-container {
  background: #f0f7ff;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  align-self: stretch;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

@media (max-width: 768px) {
  .consultation-timing-content-card-container {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .consultation-timing-content-card-container:nth-child(3)
    .consultation-timing-content-card-image {
    order: -1;
  }
}

.consultation-timing-content-card-image {
  background-color: #fafafa;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  flex-direction: column;
  flex: 0 0 400px;
  align-self: stretch;
  align-items: flex-start;
  width: 400px;
  min-height: 400px;
  display: flex;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .consultation-timing-content-card-image {
    flex: 0 0 260px;
    width: 260px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .consultation-timing-content-card-image {
    width: 100%;
    height: 182px;
    min-height: unset;
    flex: 0 0 182px;
  }
}

.consultation-timing-content-card-image img {
  object-fit: cover;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  display: block;
}

.consultation-timing-content-card {
  flex-direction: column;
  flex: 1 0 0;
  align-self: stretch;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  display: flex;
}

@media (max-width: 1024px) {
  .consultation-timing-content-card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .consultation-timing-content-card {
    padding: 12px 24px 32px;
  }
}

.consultation-timing-content-card-inner {
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  gap: 40px;
  display: flex;
}

@media (max-width: 1024px) {
  .consultation-timing-content-card-inner {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .consultation-timing-content-card-inner {
    gap: 20px;
  }
}

.consultation-timing-content-card-header {
  flex-wrap: wrap;
  align-content: center;
  align-self: stretch;
  align-items: center;
  gap: 16px;
  height: 78px;
  display: flex;
}

@media (max-width: 768px) {
  .consultation-timing-content-card-header {
    height: auto;
  }
}

.consultation-timing-content-card-header-text1 {
  color: #c1d9e2;
  letter-spacing: 4.8px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 96px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

@media (max-width: 1024px) {
  .consultation-timing-content-card-header-text1 {
    font-size: 72px;
  }
}

@media (max-width: 768px) {
  .consultation-timing-content-card-header-text1 {
    font-size: 64px;
  }
}

.consultation-timing-content-card-header-text2 {
  color: #000;
  letter-spacing: 1.334px;
  flex: 1 0 0;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%;
}

@media (max-width: 1024px) {
  .consultation-timing-content-card-header-text2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .consultation-timing-content-card-header-text2 {
    font-size: 24px;
  }
}

.consultation-timing-content-card-subtitle-text-container {
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  gap: 16px;
  display: flex;
}

.consultation-timing-content-card-subtitle-text-title {
  color: #1e293b;
  align-self: stretch;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}

.consultation-timing-content-card-subtitle-text-content {
  color: #1e293b;
  align-self: stretch;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.consultation-timing-container .inside-white-box {
  background: #fff;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 20px;
  display: flex;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.1);
}

.consultation-timing-container .inside-white-box-container {
  align-items: center;
  gap: var(--spacing-2, 8px);
  align-self: stretch;
  display: flex;
}

.consultation-timing-container .inside-white-box-container-icon {
  aspect-ratio: 1;
  width: 20px;
  height: 20px;
}

.consultation-timing-container .inside-white-box-container-text {
  color: #1e293b;
  flex: 1 0 0;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}

.workflow-container {
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

@media (max-width: 1024px) {
  .workflow-container {
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .workflow-container {
    gap: 28px;
    padding: 56px 0;
  }
}

.workflow-container .workflow-header-container {
  flex-direction: row;
  align-self: stretch;
  align-items: center;
  gap: 16px;
  display: flex;
}

.workflow-container .workflow-header-line {
  background: #d46a1c;
  flex-direction: column;
  align-items: flex-start;
  width: 4px;
  height: 32px;
  display: flex;
}

.workflow-container .workflow-header-text {
  color: #000;
  text-align: center;
  letter-spacing: 1.334px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%;
}

@media (max-width: 768px) {
  .workflow-container .workflow-header-text {
    font-size: 20px;
  }
}

.workflow-container .workflow-steps-container {
  flex-direction: row;
  justify-content: center;
  align-self: stretch;
  align-items: stretch;
  width: 100%;
  display: flex;
}

@media (max-width: 768px) {
  .workflow-container .workflow-steps-container {
    flex-direction: column;
    align-items: center;
  }
}

.workflow-container .workflow-step-card {
  background: #f5f5f5;
  -webkit-border-radius: 0 0 12px 12px;
  border-radius: 0 0 12px 12px;
  flex-direction: column;
  flex: 1 0 0;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

@media (max-width: 768px) {
  .workflow-container .workflow-step-card {
    flex: none;
    width: 100%;
    max-width: 480px;
  }

  .workflow-container .workflow-step-card {
    max-width: 100%;
  }
}

.workflow-container .workflow-step-badge {
  background: #e5e5e5;
  flex-direction: row;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 16px;
  display: flex;
}

.workflow-container .workflow-step-badge-text {
  color: #d75900;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.workflow-container .workflow-step-content {
  flex-direction: column;
  align-self: stretch;
  align-items: center;
  gap: 16px;
  padding: 24px;
  display: flex;
}

@media (max-width: 768px) {
  .workflow-container .workflow-step-content {
    flex-direction: row;
    align-items: center;
    padding: 12px 24px;
  }
}

.workflow-container .workflow-step-icon {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  display: flex;
}

@media (max-width: 768px) {
  .workflow-container .workflow-step-icon {
    width: 49px;
    height: 49px;
  }
}

.workflow-container .workflow-step-icon img {
  width: 70px;
  height: 70px;
}

@media (max-width: 768px) {
  .workflow-container .workflow-step-icon img {
    width: 49px;
    height: 49px;
  }
}

.workflow-container .workflow-step-text {
  color: #1e293b;
  text-align: center;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

@media (max-width: 768px) {
  .workflow-container .workflow-step-text {
    text-align: left;
    flex: 1 0 0;
    font-size: 16px;
    line-height: 160%;
  }
}

.workflow-container .workflow-step-arrow {
  flex-shrink: 0;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 40px;
  display: flex;
}

@media (max-width: 768px) {
  .workflow-container .workflow-step-arrow {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 42px;
    display: flex;
    transform: rotate(90deg);
  }
}

.fadein {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 0.8s,
    transform 0.8s;
  transform: translate(0, 50px);
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0);
}

.fadein.fadein-delay-1 {
  transition-delay: 0.1s;
}

.fadein.fadein-delay-2 {
  transition-delay: 0.2s;
}

.fadein.fadein-delay-3 {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .fadein {
    opacity: 1;
    transition: none;
    transform: none;
  }
}
