@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@media (min-width: 897px) {
  a:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
  }
  .sp {
    display: none !important;
  }
}
@media (max-width: 896px) {
  .pc {
    display: none !important;
  }
}
.flex {
  display: flex;
}

.flex.column {
  flex-direction: column;
}

.flex.evenly {
  justify-content: space-evenly;
}

.headline__title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 2.8rem;
}

.headline__lead {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 10px;
}

/*============================
パンくず
============================*/
.breadcrumbs ol {
  display: inline-block;
  line-height: 1;
}
.breadcrumbs ol li {
  font-size: 1.2rem;
  display: inline-block;
  vertical-align: middle;
}
.breadcrumbs ol li:after {
  content: ">";
  padding: 4px;
  display: inline-block;
}
.breadcrumbs ol li:last-of-type:after {
  content: "";
}
.breadcrumbs ol li:last-of-type a span {
  text-decoration: none;
}
.breadcrumbs ol li a span {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.to-top {
  cursor: pointer;
  transition: opacity 0.5s ease-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  bottom: 10%;
  right: 1.5%;
  display: inline-block;
  width: 55px;
  height: 55px;
  border: 1px solid #0057A6;
  border-radius: 50%;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.5);
}
.to-top::after {
  position: absolute;
  margin-inline: auto;
  content: "";
  vertical-align: middle;
  width: 11px;
  height: 11px;
  border-top: 1px solid #0057A6;
  border-right: 1px solid #0057A6;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.to-top.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 897px) {
  .to-top:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}

/*__ header _______________________*/
.site-header {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 897px) {
  .site-header {
    background-color: #fff;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
  }
}
.site-header .masthead {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 897px) {
  .site-header .masthead {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media (max-width: 896px) {
  .site-header .masthead .logo-wrap {
    background-color: #fff;
    padding: 10px 20px 10px 0;
    border-bottom-right-radius: 25px;
    position: relative;
    z-index: 1;
  }
}
.site-header .masthead .brand-logo {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-left: 10px;
  display: flex;
  align-items: center;
}
.site-header .masthead .brand-logo__img {
  width: 40px;
}
@media (max-width: 896px) {
  .site-header .masthead .brand-logo__img {
    max-width: 40px;
  }
}
.site-header .masthead .brand__title {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.6em;
  white-space: nowrap;
  margin-left: 5px;
}

.globalnav-list {
  display: flex;
  align-items: center;
  text-align: center;
}
.globalnav__item {
  word-break: auto-phrase;
}
@media (max-width: 896px) {
  .globalnav__item {
    width: 100%;
  }
}
.globalnav__item a {
  padding: 7px 14px 6px;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media (max-width: 896px) {
  .globalnav__item a {
    line-height: 1;
    padding-top: 25px;
    padding-bottom: 25px;
    width: 100%;
    text-align: center;
    color: #000;
  }
}
.globalnav__item.contact {
  border-radius: 3px;
}
@media (min-width: 897px) {
  .globalnav__item.contact:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}
@media (max-width: 896px) {
  .globalnav__item.contact {
    margin-bottom: 20px;
  }
}
@media (max-width: 896px) {
  .globalnav {
    /* メニューコンテナ全体のスタイル */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .globalnav-list {
    flex-direction: column;
    margin-top: 80px;
  }
  .globalnav-inner {
    position: fixed;
    top: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: 0.3s;
    z-index: 1;
    overflow-y: auto;
  }
}
.globalnav__ribbon {
  position: fixed;
  z-index: 10;
  top: 53px;
  transition: 0.3s;
  right: 35px;
  width: 45px;
  transform: rotate(30deg);
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.3));
}
@media (min-width: 897px) {
  .globalnav__ribbon {
    top: 51px;
  }
}

@media (max-width: 896px) {
  .nav-button {
    display: block;
    position: fixed;
    cursor: pointer;
    z-index: 2;
    background-color: #fff;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-bottom-left-radius: 25px;
    top: 0;
    right: 0;
  }
  .nav-bar {
    display: block;
    width: 26px;
    height: 1px;
    margin: 7px 0;
    background-color: #0057A6;
    transition: 0.3s;
  }
  #nav-toggle:checked + .nav-button .nav-bar:nth-of-type(1) {
    transform: rotate(45deg) translate(6px, 2px);
  }
  #nav-toggle:checked + .nav-button .nav-bar:nth-of-type(2) {
    opacity: 0;
  }
  #nav-toggle:checked + .nav-button .nav-bar:nth-of-type(3) {
    transform: rotate(-45deg) translate(9px, -6px);
  }
  /* メニュートグルのスタイル */
  #nav-toggle {
    display: none;
  }
  /* メニュートグルがチェックされた場合のメニューの表示アニメーション */
  #nav-toggle:checked ~ .globalnav-inner {
    top: 0;
    height: fit-content;
  }
  #nav-toggle:checked ~ .globalnav__ribbon {
    opacity: 0;
  }
}
/*============================
#footer
============================*/
.site-footer {
  background-color: #fff;
}

.footer {
  margin-top: 120px;
  padding: 45px 0;
  position: relative;
}
.footer .info-wrap {
  margin-inline: auto;
  width: fit-content;
}
@media (min-width: 897px) {
  .footer .info-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
  }
}
.footer__titti {
  position: absolute;
  max-width: 77px;
}
@media (max-width: 896px) {
  .footer__titti {
    top: 25px;
    left: calc(50% + 75px);
  }
}
@media (min-width: 897px) {
  .footer__titti {
    top: 38px;
    left: calc(50% + 160px);
  }
}
.footer__text {
  font-size: 1.6rem;
}
.footer__number {
  font-size: 4.5rem;
  white-space: nowrap;
  color: #0057A6;
  font-weight: bold;
  font-family: "Noto Sans", sans-serif;
  line-height: 1;
  display: block;
  margin-top: 5px;
}
@media (min-width: 897px) {
  .footer__info {
    text-align: right;
  }
}
.footer__copy {
  font-size: 1.1rem;
  text-align: center;
  margin-top: 20px;
  display: block;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.footer__link a {
  font-size: 1.2rem;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.footer .login_status {
  font-size: 1.1rem;
  text-align: center;
  margin-top: 50px;
}

.section-hero.lower {
  padding: 75px 24px 42px;
  background-color: #fff;
  background-image: url(../img/common/headline-bk.webp);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: 172px;
}
.section-hero.lower .headline__title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  margin-top: 15px;
}

.border-button,
.wpcf7-previous {
  position: relative;
  width: fit-content;
  text-align: center;
  display: block;
  border: 3px solid #0057A6;
  color: #0057A6;
  border-radius: 3px;
  font-weight: bold;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  height: fit-content;
  padding: 18px 20px;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 896px) {
  .border-button,
  .wpcf7-previous {
    font-size: 1.5rem;
  }
}
.border-button span,
.wpcf7-previous span {
  color: #0057A6;
}
.border-button::after,
.wpcf7-previous::after {
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 11px;
  height: 11px;
  border-top: 2px solid #0057A6;
  border-right: 2px solid #0057A6;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 15px;
}

.solid-button,
input[type=submit] {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  display: block;
  background-color: #0057A6;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  height: fit-content;
  padding: 21px 30px 21px 20px;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
@media (max-width: 896px) {
  .solid-button,
  input[type=submit] {
    font-size: 1.5rem;
  }
}
.solid-button::after,
input[type=submit]::after {
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 15px;
}

.more-link {
  text-align: center;
  margin-inline: auto;
  display: block;
  position: relative;
  max-width: 140px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 10px;
  border-bottom: 1px solid #0057A6;
  margin-top: 20px;
  line-height: 1;
}
.more-link::after {
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 11px;
  height: 11px;
  border-top: 2px solid #0057A6;
  border-right: 2px solid #0057A6;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 15px;
}

.column .navigation,
.column .pagination,
.news .navigation,
.news .pagination,
.property .navigation,
.property .pagination,
.nearby .navigation,
.nearby .pagination {
  margin-top: 20px;
  width: 100%;
}
.column .nav-links,
.column .pagination,
.news .nav-links,
.news .pagination,
.property .nav-links,
.property .pagination,
.nearby .nav-links,
.nearby .pagination {
  text-align: center;
}
.column .screen-reader-text,
.news .screen-reader-text,
.property .screen-reader-text,
.nearby .screen-reader-text {
  display: none;
}
.column .navigation span,
.column .navigation a,
.column .pagination span,
.column .pagination a,
.news .navigation span,
.news .navigation a,
.news .pagination span,
.news .pagination a,
.property .navigation span,
.property .navigation a,
.property .pagination span,
.property .pagination a,
.nearby .navigation span,
.nearby .navigation a,
.nearby .pagination span,
.nearby .pagination a {
  display: inline-block;
  line-height: 1;
  padding: 15px 20px;
}
.column .navigation a,
.column .page-numbers.dots,
.column .page-numbers,
.news .navigation a,
.news .page-numbers.dots,
.news .page-numbers,
.property .navigation a,
.property .page-numbers.dots,
.property .page-numbers,
.nearby .navigation a,
.nearby .page-numbers.dots,
.nearby .page-numbers {
  background-color: #fff;
}
.column .page-numbers.dots,
.news .page-numbers.dots,
.property .page-numbers.dots,
.nearby .page-numbers.dots {
  color: #000;
}
.column .navigation span,
.column .page-numbers.current,
.news .navigation span,
.news .page-numbers.current,
.property .navigation span,
.property .page-numbers.current,
.nearby .navigation span,
.nearby .page-numbers.current {
  background-color: #0057A6;
  color: #fff;
}
@media (max-width: 896px) {
  .column .pagination .page-numbers,
  .news .pagination .page-numbers,
  .property .pagination .page-numbers,
  .nearby .pagination .page-numbers {
    display: none;
  }
  .column .pagination .prev,
  .column .pagination .next,
  .news .pagination .prev,
  .news .pagination .next,
  .property .pagination .prev,
  .property .pagination .next,
  .nearby .pagination .prev,
  .nearby .pagination .next {
    display: inline-block;
    width: 45%;
  }
}

body:not(.detail) .column-list,
body:not(.detail) .news-list {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 896px) {
  body:not(.detail) .column-list,
  body:not(.detail) .news-list {
    flex-direction: column;
  }
}
body:not(.detail) .column-item,
body:not(.detail) .news-item {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 20px;
  position: relative;
}
@media (min-width: 897px) {
  body:not(.detail) .column-item,
  body:not(.detail) .news-item {
    width: 48%;
  }
}
body:not(.detail) .column-item::after,
body:not(.detail) .news-item::after {
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 11px;
  height: 11px;
  border-top: 2px solid #0057A6;
  border-right: 2px solid #0057A6;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 15px;
}
body:not(.detail) .column__thumbnail,
body:not(.detail) .news__thumbnail {
  max-width: 100px;
  margin-right: 15px;
}
body:not(.detail) .column-texts,
body:not(.detail) .news-texts {
  margin-top: 15px;
}
body:not(.detail) .column__title,
body:not(.detail) .news__title {
  color: #0057A6;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4;
}
body:not(.detail) .column__category,
body:not(.detail) .news__category {
  border: 1px solid #0057A6;
  background-color: #fff;
  width: fit-content;
  padding: 5px;
  line-height: 1;
  display: inline-block;
  font-size: 1.2rem;
  color: #0057A6;
}
body:not(.detail) .column__category a,
body:not(.detail) .news__category a {
  color: #0057A6;
}
body:not(.detail) .column__category + body:not(.detail) .column__category,
body:not(.detail) .column__category + body:not(.detail) .news__category,
body:not(.detail) .news__category + body:not(.detail) .column__category,
body:not(.detail) .news__category + body:not(.detail) .news__category {
  margin-left: 10px;
}
body:not(.detail) .column-headline,
body:not(.detail) .news-headline {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body:not(.detail) .column__date,
body:not(.detail) .news__date {
  font-size: 1.2rem;
}
body:not(.detail) .property-list {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 896px) {
  body:not(.detail) .property-list {
    flex-direction: column;
  }
}
@media (min-width: 897px) {
  body:not(.detail) .property-list {
    flex-wrap: wrap;
  }
}
body:not(.detail) .property-item {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
body:not(.detail) .property-item .flex:has(.property__thumbnail) {
  margin-top: 15px;
}
@media (min-width: 897px) {
  body:not(.detail) .property-item {
    width: 48%;
  }
}
body:not(.detail) .property .category-wrap {
  display: flex;
  padding: 20px 20px 0;
}
body:not(.detail) .property-item__inner {
  padding: 0 20px 50px;
}
body:not(.detail) .property-check {
  background-color: #0057A6;
  color: #fff;
  position: relative;
  text-align: right;
  padding: 2px 10px;
}
body:not(.detail) .property-check::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: 24px;
  border: 10px solid transparent;
  border-top: 11px solid #0057A6;
}
body:not(.detail) .property__checkText {
  font-size: 1.2rem;
}
body:not(.detail) .property__category,
body:not(.detail) .property .property-category a {
  border: 1px solid #0057A6;
  background-color: #fff;
  color: #0057A6;
  width: fit-content;
  padding: 5px;
  line-height: 1;
  display: inline-block;
  font-size: 1.2rem;
  height: fit-content;
}
body:not(.detail) .property__category a,
body:not(.detail) .property .property-category a a {
  color: #0057A6;
}
body:not(.detail) .property__title {
  font-weight: bold;
  margin-top: 10px;
  line-height: 1.35;
}
body:not(.detail) .property__thumbnail {
  width: 100%;
  padding-top: 10px;
}
body:not(.detail) .property-overview {
  width: 100%;
  padding-top: 10px;
}
body:not(.detail) .property-overview .flex:has(.amount-wrap) {
  justify-content: flex-end;
  gap: 15px;
}
@media (min-width: 897px) {
  body:not(.detail) .property-overview .flex:has(.amount-wrap) {
    align-items: flex-end;
  }
}
@media (max-width: 896px) {
  body:not(.detail) .property-overview .flex:has(.amount-wrap) {
    flex-direction: column;
    align-items: center;
  }
}
body:not(.detail) .property .amount-wrap:not(.loan) {
  display: flex;
  align-items: center;
  gap: 10px;
}
body:not(.detail) .property .amount-wrap.loan span {
  font-size: 2rem;
}
body:not(.detail) .property .amount__note {
  font-weight: bold;
}
body:not(.detail) .property__amount {
  font-size: 1.2rem;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 10px;
}
body:not(.detail) .property__amount span {
  color: #0057A6;
  font-weight: bold;
  font-size: 3.8rem;
  font-family: "Noto Sans", sans-serif;
  padding-right: 4px;
  line-height: 1;
}
body:not(.detail) .property__amount span.comming-soon {
  font-size: 2.5rem;
}
body:not(.detail) .property__text, body:not(.detail) .property__point {
  font-size: 1.2rem;
}
body:not(.detail) .property .solid-button {
  margin-top: 20px;
}
body:not(.detail) .property-subscribe {
  text-align: center;
  margin-top: 30px;
}
body:not(.detail) .property-subscribe a {
  color: #0057A6;
  text-decoration: underline;
  text-underline-offset: 5px;
}
body:not(.detail) .favorite_button {
  width: fit-content;
  margin-left: auto;
}
body:not(.detail) .simplefavorite-button {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid #D9D9D9;
  vertical-align: -5px;
  appearance: none;
  cursor: pointer;
}
body:not(.detail) .simplefavorite-button.active:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(45deg);
  width: 14px;
  height: 14px;
  border-right: 4px solid #0057A6;
  border-bottom: 4px solid #0057A6;
  content: "";
}/*# sourceMappingURL=common.css.map */