/* Scss Document */
/* Scss Document */
@media only screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (max-width: 1200px) {
  .tab {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media only screen and (max-width: 640px) {
  .sp {
    display: block !important;
  }
}

.white {
  color: #fff !important;
}

.anchor {
  margin-top: -124px;
  padding-top: 124px;
}

.center {
  text-align: center;
}

.heading-title {
  margin-bottom: 8rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 640px) {
  .heading-title {
    margin-bottom: calc(60 / 640 * 100vw);
  }
}
.heading-title .en {
  font-size: 5.6rem;
  letter-spacing: 2.8px;
  background: linear-gradient(138deg, #0D7CCE 17.39%, #1AAFD8 86.9%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.5;
  white-space: nowrap;
}
@media only screen and (max-width: 640px) {
  .heading-title .en {
    font-size: calc(52 / 640 * 100vw);
  }
}
.heading-title .jp {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
}
@media only screen and (max-width: 640px) {
  .heading-title .jp {
    font-size: calc(24 / 640 * 100vw);
  }
}

.lttl_en {
  margin-bottom: 50px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  display: inline-block;
  background: linear-gradient(138deg, #0D7CCE 17.39%, #1AAFD8 86.9%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Outfit", sans-serif;
  font-size: 5.6rem;
  font-weight: 200;
}
@media only screen and (max-width: 640px) {
  .lttl_en {
    margin-bottom: calc(40 / 640 * 100vw);
    font-size: calc(56 / 640 * 100vw);
  }
}

.title__middle {
  margin-top: 6rem;
  margin-bottom: 3rem;
  font-size: 2.8rem;
  text-align: center;
  color: #004ca2;
}
@media only screen and (max-width: 640px) {
  .title__middle {
    margin-top: calc(60 / 640 * 100vw);
    margin-bottom: calc(40 / 640 * 100vw);
    font-size: calc(32 / 640 * 100vw);
  }
}

.page__nav {
  margin-bottom: 9rem;
}
@media only screen and (max-width: 640px) {
  .page__nav {
    margin-bottom: calc(50 / 640 * 100vw);
  }
}

.page-nav__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(20 / 1920 * 100vw);
  max-width: 1140px;
}
@media only screen and (max-width: 640px) {
  .page-nav__lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
  }
}
.page-nav__list {
  background: #f9f8f5;
  border-radius: var(--Corner-Full, 1000px);
}
.page-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1px;
  padding: 15px 50px 15px 30px;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .page-nav__link {
    font-size: 1.3rem;
    padding: 10px 17px;
  }
}
.page-nav__link::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url("../images/property/arrow-1.png");
  background-repeat: no-repeat;
  width: 16px;
  height: 15px;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
@media only screen and (max-width: 640px) {
  .page-nav__link::after {
    width: 9px;
    height: 8px;
    right: 8%;
  }
}

.property_list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  margin-top: 70px;
  margin-bottom: 90px;
}
@media only screen and (max-width: 1600px) {
  .property_list {
    margin-bottom: calc(60 / 1600 * 100vw);
  }
}
@media only screen and (max-width: 1200px) {
  .property_list {
    justify-content: space-between;
    margin-bottom: 90px;
  }
}
@media only screen and (max-width: 640px) {
  .property_list {
    justify-content: space-between;
    display: block;
    margin-top: calc(40 / 640 * 100vw);
    margin-bottom: calc(40 / 640 * 100vw);
  }
}
.property_list_item {
  width: 460px;
  margin-left: 40px;
  margin-bottom: 70px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0, 1.2, 1, 1);
}
@media only screen and (max-width: 1600px) {
  .property_list_item {
    width: calc(430 / 1600 * 100vw);
    margin-bottom: calc(40 / 1600 * 100vw);
  }
}
@media only screen and (max-width: 1200px) {
  .property_list_item {
    width: 48%;
    margin: 60px 0 0;
  }
}
@media only screen and (max-width: 640px) {
  .property_list_item {
    width: 100%;
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.property_list_item.ready {
  opacity: 1;
  transform: translateY(0px);
  margin-bottom: 50px;
}
@media only screen and (max-width: 640px) {
  .property_list_item.ready {
    margin-bottom: 30px;
  }
}
.property_list_img {
  margin-bottom: 20px;
  overflow: hidden;
  aspect-ratio: 390/242;
}
@media only screen and (max-width: 1600px) {
  .property_list_img {
    margin-bottom: calc(20 / 1600 * 100vw);
  }
}
@media only screen and (max-width: 1200px) {
  .property_list_img {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 640px) {
  .property_list_img {
    margin-bottom: 0;
  }
}
.property_list_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 640px) {
  .property_list_textarea {
    width: 100%;
    margin-top: 25px;
  }
}
.property_list_ttl {
  margin-bottom: 1em;
  font-family: "Noto Sans JP";
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.3333333333;
}
@media only screen and (max-width: 1600px) {
  .property_list_ttl {
    font-size: calc(24 / 1600 * 100vw);
  }
}
@media only screen and (max-width: 1200px) {
  .property_list_ttl {
    font-size: 24px;
  }
}
@media only screen and (max-width: 640px) {
  .property_list_ttl {
    margin-bottom: 0.7em;
    font-size: calc(28 / 640 * 100vw);
    font-weight: 700;
  }
}
.property_list_address {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media only screen and (max-width: 640px) {
  .property_list_address {
    font-size: calc(22 / 640 * 100vw);
    line-height: 1.4;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 640px) {
  .property_list_address .nav {
    display: none;
  }
}
.property_list_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 20px;
}
.property_list_tag-word {
  color: #004ca2;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.721px;
  border-radius: 3.846px;
  background: #ecf7fb;
  padding: 3px 15px;
}
@media only screen and (max-width: 640px) {
  .property_list_tag-word {
    font-size: calc(18 / 640 * 100vw);
  }
}
.property_list_tag-word.open-house {
  background: #f07d49;
  color: #fff;
}

.property_list_item.property_list_item--lower {
  opacity: 1;
}

.btn {
  margin-top: 60px;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .btn {
    margin-top: calc(60 / 640 * 100vw);
  }
}
.btn a {
  display: inline;
  position: relative;
  padding-left: 60px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-decoration: underline;
}
@media only screen and (max-width: 640px) {
  .btn a {
    padding-left: calc(80 / 640 * 100vw);
    font-size: calc(24 / 640 * 100vw);
  }
}
.btn a:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 51px;
  height: 51px;
  background: url("../images/index/index_btn.png") top left no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 640px) {
  .btn a:before {
    width: calc(60 / 640 * 100vw);
    height: calc(60 / 640 * 100vw);
  }
}
.btn a:hover {
  text-decoration: none;
}

.button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid #000;
  padding-bottom: 14px;
  margin-top: 18px;
}
.button.button-mt {
  margin-top: 55px;
}
@media only screen and (max-width: 640px) {
  .button.button-mt {
    margin-top: 18px;
  }
}
.button.button-mt2 {
  margin-top: 101px;
}
@media only screen and (max-width: 640px) {
  .button.button-mt2 {
    margin-top: 18px;
  }
}
.button.button-mt3 {
  margin-top: 24px;
}
@media only screen and (max-width: 640px) {
  .button.button-mt3 {
    margin-top: 18px;
  }
}
.button p {
  color: rgba(0, 0, 0, 0.75);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3px;
  margin-right: 11px;
}
.button .arrow-img {
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.75);
  border-right: 1px solid rgba(0, 0, 0, 0.75);
  transform: rotate(45deg);
}
.button .arrow-img-white {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.button_border {
  border: none;
}

.c_button_wrap {
  width: 285px;
  height: 61px;
  margin: 0 auto;
  border-radius: var(--Corner-Full, 1000px);
  background: #004ca2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .c_button_wrap {
    min-width: 285px;
    height: 61px;
  }
}
.c_button_wrap::after {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  right: 20px;
}
@media only screen and (max-width: 640px) {
  .c_button_wrap::after {
    width: 10px;
    height: 10px;
    right: 25px;
  }
}

.c_button {
  color: #fff !important;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
}
@media only screen and (max-width: 640px) {
  .c_button {
    font-size: 2.5rem;
  }
}

.c_button_wrap-white {
  width: 285.984px;
  height: 61.167px;
  margin: 0 auto;
  border-radius: var(--Corner-Full, 1000px);
  background: #fff;
  border: 2px solid #004ca2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .c_button_wrap-white {
    min-width: 285px;
    height: 61px;
  }
}
.c_button_wrap-white::after {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #004ca2;
  border-right: 2px solid #004ca2;
  transform: rotate(-135deg);
  left: 20px;
}
@media only screen and (max-width: 640px) {
  .c_button_wrap-white::after {
    width: 10px;
    height: 10px;
    right: 25px;
  }
}

.c_button_wrap-white--alt::after {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #004ca2;
  border-right: 2px solid #004ca2;
  transform: rotate(45deg);
  left: auto;
  right: 20px;
}
@media only screen and (max-width: 640px) {
  .c_button_wrap-white--alt::after {
    width: 10px;
    height: 10px;
    right: 25px;
  }
}

.c_button-white {
  color: #004ca2;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
}
@media only screen and (max-width: 640px) {
  .c_button-white {
    font-size: 2rem;
  }
}

.animation {
  opacity: 0;
}

.isFade {
  opacity: 0;
  position: relative;
  bottom: -3em;
}
.isFade.isPlay {
  animation: fadein 1s cubic-bezier(0.07, 0.64, 0.3, 0.94) forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
    bottom: -3em;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
.isZoom {
  opacity: 0;
}
.isZoom.isPlay {
  animation: zoom 0.5s cubic-bezier(0.07, 0.64, 0.3, 0.94) forwards;
}

@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.isLeft {
  opacity: 0;
  position: relative;
  left: -3em;
}
.isLeft.isPlay {
  animation: Leftin 1s cubic-bezier(0.07, 0.64, 0.3, 0.94) forwards;
}

@keyframes Leftin {
  0% {
    opacity: 0;
    left: -3em;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.isRight {
  opacity: 0;
  position: relative;
  right: 3em;
}
.isRight.isPlay {
  animation: Rightin 1s cubic-bezier(0.07, 0.64, 0.3, 0.94) forwards;
}

@keyframes Rightin {
  0% {
    opacity: 0;
    right: 3em;
  }
  100% {
    opacity: 1;
    right: 0;
  }
}
.index_lttl {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.index_lttl .en {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 2.884px;
}
@media only screen and (max-width: 640px) {
  .index_lttl .en {
    font-size: calc(19 / 640 * 100vw);
  }
}
.index_lttl .jp {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.731px;
  margin-top: 12px;
}
@media only screen and (max-width: 640px) {
  .index_lttl .jp {
    font-size: calc(32 / 640 * 100vw);
    margin-top: 0;
  }
}
@media only screen and (max-width: 640px) {
  .index_lttl {
    margin-bottom: calc(30 / 640 * 100vw);
  }
}

.page_ttl_wrap {
  position: relative;
}

.page_ttl_bg {
  background: url("../images/common/key-img.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 500px;
}
@media only screen and (max-width: 640px) {
  .page_ttl_bg {
    height: 280px;
  }
}

.page_ttl {
  color: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.page_ttl_en {
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.66;
  letter-spacing: 2.884px;
}

.page_ttl_ja {
  font-size: 3.4rem;
  line-height: normal;
  letter-spacing: 1.731px;
}
@media only screen and (max-width: 640px) {
  .page_ttl_ja {
    font-size: calc(34 / 640 * 100vw);
  }
}

.cta .content {
  background: #004ca2;
  padding: 100px 0;
}
@media only screen and (max-width: 640px) {
  .cta .content {
    padding: 50px 0;
  }
}

.cta_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  .cta_wrap {
    flex-direction: column;
  }
}
.cta_wrap .index_lttl {
  color: #fff;
}
.cta_wrap .index_lttl .en {
  color: #fff;
  text-align: left;
}
@media only screen and (max-width: 640px) {
  .cta_wrap .index_lttl .en {
    text-align: center;
  }
}
.cta_wrap .index_lttl .jp {
  margin-top: 10px;
}

.contact_info {
  display: flex;
}
@media only screen and (max-width: 640px) {
  .contact_info {
    flex-direction: column;
  }
}

.contact_info_tel {
  margin-right: 30px;
}
@media only screen and (max-width: 640px) {
  .contact_info_tel {
    margin-right: 0;
  }
}
.contact_info_tel a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_info_tel a img {
  width: 19.938px;
  height: 31.925px;
  margin-right: 10px;
  display: block;
}
@media only screen and (max-width: 640px) {
  .contact_info_tel a img {
    width: 28.472px;
    height: 45.59px;
  }
}
.contact_info_tel a p {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 4rem;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.2rem;
}
@media only screen and (max-width: 640px) {
  .contact_info_tel a p {
    font-size: 3.8rem;
  }
}

.contact_info_txt {
  text-align: right;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.75px;
  font-family: "Noto Sans JP";
  margin-top: 7px;
}
@media only screen and (max-width: 640px) {
  .contact_info_txt {
    margin-top: 10px;
    font-size: 2.1rem;
    text-align: center;
  }
}

.cta_btn {
  border-radius: 6px;
  background: #f87251;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 86px;
}
@media only screen and (max-width: 640px) {
  .cta_btn {
    padding: 20px 0;
    margin: 35px auto 0;
    width: calc(440 / 640 * 100vw);
  }
}
.cta_btn a {
  display: flex;
  align-items: center;
}
.cta_btn a img {
  width: 29.969px;
  height: 23.547px;
  margin-right: 12px;
}
@media only screen and (max-width: 640px) {
  .cta_btn a img {
    width: calc(42 / 640 * 100vw);
    height: calc(33 / 640 * 100vw);
  }
}
.cta_btn a p {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
}
@media only screen and (max-width: 640px) {
  .cta_btn a p {
    font-size: calc(30 / 640 * 100vw);
  }
}/*# sourceMappingURL=module.css.map */