@charset "UTF-8";
/* 変数
--------------------------------- */
/* 画面サイズ
--------------------------------- */
/* ホバー用メディアクエリ
--------------------------------- */
/* メディアクエリ調整関数
--------------------------------- */
/*-----------------------------------
 共通パーツ
--------------------*/
.heading-01 {
  position: relative;
  width: fit-content;
  margin-bottom: 6rem;
  font-family: "montserrat", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: #9D7B2F;
  text-align: center;
}
.heading-01::before {
  position: absolute;
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 0.1rem;
  height: 3.6rem;
  background-color: #9D7B2F;
}
.heading-01 span {
  display: block;
  margin-top: 0.8rem;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}

@media (max-width: 767px) {
  .heading-01 {
    margin-bottom: min(6rem, 84px);
    font-size: min(2rem, 28px);
  }
  .heading-01::before {
    height: min(3.6rem, 50.4px);
  }
  .heading-01 span {
    margin-top: min(0.8rem, 11.2px);
    font-size: min(1rem, 14px);
  }
}
.heading-02 {
  width: 8rem;
  padding: 0.5rem 1rem 0.6rem;
  font-size: 1.4rem;
  font-weight: 400;
  border-radius: 0.4rem;
  text-align: center;
  background-color: #9D7B2F;
  color: #fff;
}

@media (max-width: 767px) {
  .heading-02 {
    width: min(8rem, 112px);
    padding: min(0.5rem, 7px) min(1rem, 14px) min(0.6rem, 8.4px);
    font-size: min(1.4rem, 19.6px);
  }
}
.heading-03 {
  width: 13rem;
  padding: 0.5rem 1rem 0.6rem;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  border: 0.1rem solid #9D7B2F;
  border-radius: 0.4rem;
}

@media (max-width: 767px) {
  .heading-03 {
    width: min(13rem, 182px);
    padding: min(0.5rem, 7px) min(1rem, 14px) min(0.6rem, 8.4px);
    font-size: min(1.4rem, 19.6px);
  }
}
.heading-04 {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.08em;
}
.heading-04::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 100%;
  background-color: #9D7B2F;
}

@media (max-width: 767px) {
  .heading-04 {
    padding-left: min(1.4rem, 19.6px);
    font-size: min(1.4rem, 19.6px);
  }
}
.read-more-01 {
  display: block;
  width: fit-content;
  margin-left: auto;
  padding: 1rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #9D7B2F;
  text-align: center;
  border: 0.1rem solid #9D7B2F;
  border-radius: 3.6rem;
  transition: all 0.3s;
}
@media (hover: hover) {
  .read-more-01:hover {
    background-color: #9D7B2F;
    color: #fff;
  }
}

@media (max-width: 767px) {
  .read-more-01 {
    padding: min(0.6rem, 8.4px) min(2rem, 28px);
    font-size: min(1.4rem, 19.6px);
    border-radius: min(2rem, 28px);
  }
}
/*-----------------------------------
 ヘッダー
--------------------*/
.header-wrap {
  z-index: 9999;
  position: relative;
  top: 0;
  width: 100%;
}
.header-wrap .header {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  height: 7.5rem;
  background-color: #ffffff;
}
.header-wrap .header .logo {
  margin-right: auto;
}
.header-wrap .header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.header-wrap .header .logo img {
  display: block;
  width: 16.8rem;
  height: 3.6rem;
}
.header-wrap .header .header-tel img {
  display: block;
  width: 20rem;
  height: 4.8rem;
}
.header-wrap .header .header-btn {
  width: 14.6rem;
  height: 4rem;
  margin-right: 1.6rem;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
}
.header-wrap .header .header-btn a {
  display: block;
  color: #ffffff;
  line-height: 4rem;
}
.header-wrap .header .header-btn.bg-red3 {
  background-color: #cf3c8d !important;
}
.header-wrap .header .hamburger {
  display: none;
}

@media (max-width: 767px) {
  .header-wrap {
    padding: 0;
  }
  .header-wrap .header {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 1.125rem;
    padding-right: 1.125rem;
    justify-content: space-between;
    height: 6.5rem;
    box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.2);
  }
  .header-wrap .header .logo {
    margin-right: 1.6rem;
  }
  .header-wrap .header .logo a {
    width: 18rem;
  }
  .header-wrap .header .logo a img {
    object-fit: contain;
    width: 100%;
  }
  .header-wrap .header .header-tel {
    display: none;
  }
  .header-wrap .header .header-contact {
    display: none;
  }
  .header-wrap .header .hamburger {
    z-index: 99;
    display: flex;
    align-items: center;
    width: 3.2rem;
    height: 3rem;
  }
  .header-wrap .header .hamburger span {
    position: relative;
    display: block;
    width: 100%;
    height: 0.3rem;
    border-radius: 0.3rem;
    background-color: #333;
    transition: 0.3s;
  }
  .header-wrap .header .hamburger span::before, .header-wrap .header .hamburger span::after {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 0.3rem;
    border-radius: 0.3rem;
    background-color: #333;
    transition: 0.2s;
  }
  .header-wrap .header .hamburger span::before {
    transform: translateY(-1rem);
  }
  .header-wrap .header .hamburger span::after {
    transform: translateY(1rem);
  }
  .header-wrap .header .hamburger.is-active span {
    background-color: transparent;
  }
  .header-wrap .header .hamburger.is-active span::before {
    transform: translateY(0) rotate(45deg);
  }
  .header-wrap .header .hamburger.is-active span::after {
    transform: translateY(0) rotate(-45deg);
  }
  .header-wrap .header .nav {
    z-index: 99;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100svh;
    margin: 0;
    padding: 11rem 1.5rem 3rem;
    background-color: #333;
    transition: all 0.3s;
  }
  .header-wrap .header .nav.is-active {
    right: 0;
  }
  .header-wrap .header .nav:before {
    display: none;
  }
  .header-wrap .header .nav ul {
    flex-direction: column;
    row-gap: 2rem;
  }
  .header-wrap .header .nav ul li {
    margin-right: 0;
  }
  .header-wrap .header .nav ul li a {
    font-size: 1.6rem;
    color: #fff;
  }
}
.nav {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin: 2.7rem auto 3.6rem;
}
.nav:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -1rem;
  transform: translateX(-50%);
  display: block;
  width: calc(100% - 3rem);
  height: 0.1rem;
  background-color: #e0e0e0;
}
.nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.nav ul li {
  position: relative;
  margin-right: 2.3rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #505050;
}
.nav ul li:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0dd";
  vertical-align: top;
  margin-left: 0.5rem;
}
.nav .current-menu-item :before,
.nav .navbar_for_article_detail :before,
.nav .navbar_for_news_detail :before {
  display: block;
  content: "";
  position: absolute;
  bottom: -1.1rem;
  left: 0rem;
  width: 105%;
  height: 0.4rem;
  background-color: #7498CB;
}

@media (max-width: 767px) {
  .nav {
    z-index: 99;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100svh;
    margin: 0;
    padding: 11rem 1.5rem 3rem;
    background-color: #fff;
    transition: all 0.3s;
  }
  .nav.is-active {
    right: 0;
  }
  .nav:before {
    display: none;
  }
  .nav ul {
    flex-direction: column;
    row-gap: 2rem;
  }
  .nav ul li {
    margin-right: 0;
    font-size: 1.3rem;
  }
  .nav ul li.current-menu-item a::before {
    bottom: -0.5rem;
    height: 0.2rem;
  }
}
/*-----------------------------------
 フッター
--------------------*/
.footer {
  width: 100%;
  background-color: #a9dfe2;
}
.footer .footer_menu {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 2rem;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
  padding: 6rem 0 6rem;
  color: #333;
  text-align: center;
}
.footer .footer_menu .side_footer_01,
.footer .footer_menu .side_footer_02,
.footer .footer_menu .side_footer_03 {
  width: 24%;
}
.footer .footer_menu .side_footer_01 a,
.footer .footer_menu .side_footer_02 a,
.footer .footer_menu .side_footer_03 a {
  color: #333;
}
.footer .footer_menu h2 {
  position: relative;
  margin: 0 0 2rem 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
}
.footer .footer_menu h2:before {
  display: block;
  position: absolute;
  content: "";
  top: -2rem;
  left: 5%;
  width: 90%;
  height: 0.4rem;
  background-color: #333;
}
.footer .footer_menu ul li {
  margin-bottom: 0.6rem;
  color: #333;
  font-size: 1.2rem;
}
.footer .footer_cr {
  width: 100%;
  height: 7rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 7rem;
  color: #ffffff;
  background-color: #5389a6;
}

@media (max-width: 767px) {
  .footer .footer_menu {
    flex-direction: column;
    row-gap: min(5rem, 70px);
  }
  .footer .footer_menu .side_footer_01,
  .footer .footer_menu .side_footer_02,
  .footer .footer_menu .side_footer_03 {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
  .footer .footer_menu h2 {
    position: relative;
    margin: 0 0 min(2rem, 28px) 0;
    font-size: min(1.5rem, 21px);
    font-weight: 500;
  }
  .footer .footer_menu h2:before {
    display: block;
    position: absolute;
    content: "";
    top: -2rem;
    left: 10%;
    width: 80%;
    height: min(0.4rem, 5.6px);
  }
  .footer .footer_menu ul li {
    margin-bottom: 0.6rem;
    font-size: min(1.2rem, 16.8px);
  }
  .footer .footer_cr {
    width: 100%;
    height: min(7rem, 98px);
    text-align: center;
    font-size: min(1.1rem, 15.4px);
    font-weight: 500;
    line-height: 7rem;
    color: #ffffff;
    background-color: #000000;
  }
}
/*-----------------------------------
 物件リストコンポーネント
--------------------*/
.post-type-archive-rooms,
.post-type-archive-rooms_sale,
.page-rent-rooms,
.page-sale-rooms,
.page-favorite-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.25%;
  width: 100%;
  margin: 0;
  color: #5389a6;
}
.post-type-archive-rooms .header-1,
.post-type-archive-rooms_sale .header-1,
.page-rent-rooms .header-1,
.page-sale-rooms .header-1,
.page-favorite-list .header-1 {
  position: relative;
  width: 100%;
  margin-bottom: 2.4rem;
  padding: 1.1rem 1rem 1.3rem 1.6rem;
  font-size: 1.8rem;
  font-weight: 600;
  background-color: #fff;
}
.post-type-archive-rooms .header-1.header-1__white,
.post-type-archive-rooms_sale .header-1.header-1__white,
.page-rent-rooms .header-1.header-1__white,
.page-sale-rooms .header-1.header-1__white,
.page-favorite-list .header-1.header-1__white {
  color: #506a8e;
}
.post-type-archive-rooms .header-1.header-1__white_2,
.post-type-archive-rooms_sale .header-1.header-1__white_2,
.page-rent-rooms .header-1.header-1__white_2,
.page-sale-rooms .header-1.header-1__white_2,
.page-favorite-list .header-1.header-1__white_2 {
  color: #5389a6;
}
.post-type-archive-rooms .header-1.header-1__byellow,
.post-type-archive-rooms_sale .header-1.header-1__byellow,
.page-rent-rooms .header-1.header-1__byellow,
.page-sale-rooms .header-1.header-1__byellow,
.page-favorite-list .header-1.header-1__byellow {
  color: #9C8032;
}
.post-type-archive-rooms .header-1.header-1__navy,
.post-type-archive-rooms_sale .header-1.header-1__navy,
.page-rent-rooms .header-1.header-1__navy,
.page-sale-rooms .header-1.header-1__navy,
.page-favorite-list .header-1.header-1__navy {
  color: #ffffff;
  background-color: #5389a6;
}
.post-type-archive-rooms .header-1 .btn-more,
.post-type-archive-rooms_sale .header-1 .btn-more,
.page-rent-rooms .header-1 .btn-more,
.page-sale-rooms .header-1 .btn-more,
.page-favorite-list .header-1 .btn-more {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  display: inline-block;
  width: fit-content;
  margin-left: auto;
}
.post-type-archive-rooms .header-1 .btn-more a,
.post-type-archive-rooms_sale .header-1 .btn-more a,
.page-rent-rooms .header-1 .btn-more a,
.page-sale-rooms .header-1 .btn-more a,
.page-favorite-list .header-1 .btn-more a {
  display: block;
  padding: 0.5rem 1.4rem 0.7rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  background-color: #5389a6;
  border: 0.1rem solid #5389a6;
  border-radius: 1rem;
  transition: all 0.3s;
}
@media (hover: hover) {
  .post-type-archive-rooms .header-1 .btn-more a:hover,
  .post-type-archive-rooms_sale .header-1 .btn-more a:hover,
  .page-rent-rooms .header-1 .btn-more a:hover,
  .page-sale-rooms .header-1 .btn-more a:hover,
  .page-favorite-list .header-1 .btn-more a:hover {
    color: #5389a6;
    background-color: #fff;
  }
}
.post-type-archive-rooms .header-1 .btn-more.bg-byellow a,
.post-type-archive-rooms_sale .header-1 .btn-more.bg-byellow a,
.page-rent-rooms .header-1 .btn-more.bg-byellow a,
.page-sale-rooms .header-1 .btn-more.bg-byellow a,
.page-favorite-list .header-1 .btn-more.bg-byellow a {
  background-color: #9C8032;
  border-color: #9C8032;
  transition: all 0.3s;
}
@media (hover: hover) {
  .post-type-archive-rooms .header-1 .btn-more.bg-byellow a:hover,
  .post-type-archive-rooms_sale .header-1 .btn-more.bg-byellow a:hover,
  .page-rent-rooms .header-1 .btn-more.bg-byellow a:hover,
  .page-sale-rooms .header-1 .btn-more.bg-byellow a:hover,
  .page-favorite-list .header-1 .btn-more.bg-byellow a:hover {
    color: #9C8032;
    background-color: #fff;
  }
}
.post-type-archive-rooms .container,
.post-type-archive-rooms_sale .container,
.page-rent-rooms .container,
.page-sale-rooms .container,
.page-favorite-list .container {
  width: 100%;
  padding: 0 4rem;
}
.post-type-archive-rooms .container main,
.post-type-archive-rooms_sale .container main,
.page-rent-rooms .container main,
.page-sale-rooms .container main,
.page-favorite-list .container main {
  max-width: 1100px;
  margin: 0 auto 13rem;
}
.post-type-archive-rooms .container main .estate-list-header,
.post-type-archive-rooms_sale .container main .estate-list-header,
.page-rent-rooms .container main .estate-list-header,
.page-sale-rooms .container main .estate-list-header,
.page-favorite-list .container main .estate-list-header {
  position: relative;
  margin-bottom: 10rem;
}
.post-type-archive-rooms .container main .estate-list-header h2,
.post-type-archive-rooms_sale .container main .estate-list-header h2,
.page-rent-rooms .container main .estate-list-header h2,
.page-sale-rooms .container main .estate-list-header h2,
.page-favorite-list .container main .estate-list-header h2 {
  margin-bottom: 5.5rem;
  font-size: 2.8rem;
  font-weight: 500;
}
.post-type-archive-rooms .container main .estate-list-header p,
.post-type-archive-rooms_sale .container main .estate-list-header p,
.page-rent-rooms .container main .estate-list-header p,
.page-sale-rooms .container main .estate-list-header p,
.page-favorite-list .container main .estate-list-header p {
  font-size: 1.4rem;
  font-weight: 400;
}
.post-type-archive-rooms .container main .estate-list-header a,
.post-type-archive-rooms_sale .container main .estate-list-header a,
.page-rent-rooms .container main .estate-list-header a,
.page-sale-rooms .container main .estate-list-header a,
.page-favorite-list .container main .estate-list-header a {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1.4rem;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.post-type-archive-rooms .container main .search-conditions,
.post-type-archive-rooms_sale .container main .search-conditions,
.page-rent-rooms .container main .search-conditions,
.page-sale-rooms .container main .search-conditions,
.page-favorite-list .container main .search-conditions {
  max-width: 1000px;
  margin: 6rem auto 8rem;
  padding: 3rem 3rem;
  background-color: #f9f7f3;
  border-radius: 0.8rem;
  font-size: 1.4rem;
}
.post-type-archive-rooms .container main .search-conditions h2,
.post-type-archive-rooms_sale .container main .search-conditions h2,
.page-rent-rooms .container main .search-conditions h2,
.page-sale-rooms .container main .search-conditions h2,
.page-favorite-list .container main .search-conditions h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.post-type-archive-rooms .container main .search-conditions ul,
.post-type-archive-rooms_sale .container main .search-conditions ul,
.page-rent-rooms .container main .search-conditions ul,
.page-sale-rooms .container main .search-conditions ul,
.page-favorite-list .container main .search-conditions ul {
  margin-bottom: 2rem;
}
.post-type-archive-rooms .container main .search-conditions ul li,
.post-type-archive-rooms_sale .container main .search-conditions ul li,
.page-rent-rooms .container main .search-conditions ul li,
.page-sale-rooms .container main .search-conditions ul li,
.page-favorite-list .container main .search-conditions ul li {
  margin-bottom: 0.8rem;
}
.post-type-archive-rooms .container main .search-conditions ul li span,
.post-type-archive-rooms_sale .container main .search-conditions ul li span,
.page-rent-rooms .container main .search-conditions ul li span,
.page-sale-rooms .container main .search-conditions ul li span,
.page-favorite-list .container main .search-conditions ul li span {
  font-weight: bold;
  margin-right: 0.5rem;
}
.post-type-archive-rooms .container main .search-conditions h3,
.post-type-archive-rooms_sale .container main .search-conditions h3,
.page-rent-rooms .container main .search-conditions h3,
.page-sale-rooms .container main .search-conditions h3,
.page-favorite-list .container main .search-conditions h3 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.post-type-archive-rooms .container main .search-conditions h3 span,
.post-type-archive-rooms_sale .container main .search-conditions h3 span,
.page-rent-rooms .container main .search-conditions h3 span,
.page-sale-rooms .container main .search-conditions h3 span,
.page-favorite-list .container main .search-conditions h3 span {
  font-size: 1.8rem;
  font-weight: 600;
  color: #9D7B2F;
  margin-right: 0.3rem;
}
.post-type-archive-rooms .container main .article-list-wrap,
.post-type-archive-rooms_sale .container main .article-list-wrap,
.page-rent-rooms .container main .article-list-wrap,
.page-sale-rooms .container main .article-list-wrap,
.page-favorite-list .container main .article-list-wrap {
  display: flex;
  flex-wrap: wrap;
  row-gap: 6rem;
  column-gap: 1.25%;
  width: 100%;
  margin: 0;
}
.post-type-archive-rooms .container main .article-list-wrap .no-results,
.post-type-archive-rooms_sale .container main .article-list-wrap .no-results,
.page-rent-rooms .container main .article-list-wrap .no-results,
.page-sale-rooms .container main .article-list-wrap .no-results,
.page-favorite-list .container main .article-list-wrap .no-results {
  font-size: 1.6rem;
  margin: auto auto 0;
}
.post-type-archive-rooms .container .pagenation,
.post-type-archive-rooms_sale .container .pagenation,
.page-rent-rooms .container .pagenation,
.page-sale-rooms .container .pagenation,
.page-favorite-list .container .pagenation {
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
  background-color: #F7F4F2;
}
.post-type-archive-rooms .container .pagenation ul,
.post-type-archive-rooms_sale .container .pagenation ul,
.page-rent-rooms .container .pagenation ul,
.page-sale-rooms .container .pagenation ul,
.page-favorite-list .container .pagenation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 3rem;
  padding: 7rem 1.5rem;
}
.post-type-archive-rooms .container .pagenation ul li span, .post-type-archive-rooms .container .pagenation ul li a,
.post-type-archive-rooms_sale .container .pagenation ul li span,
.post-type-archive-rooms_sale .container .pagenation ul li a,
.page-rent-rooms .container .pagenation ul li span,
.page-rent-rooms .container .pagenation ul li a,
.page-sale-rooms .container .pagenation ul li span,
.page-sale-rooms .container .pagenation ul li a,
.page-favorite-list .container .pagenation ul li span,
.page-favorite-list .container .pagenation ul li a {
  font-size: 1.4rem;
}
.post-type-archive-rooms .container .pagenation ul li span.current,
.post-type-archive-rooms_sale .container .pagenation ul li span.current,
.page-rent-rooms .container .pagenation ul li span.current,
.page-sale-rooms .container .pagenation ul li span.current,
.page-favorite-list .container .pagenation ul li span.current {
  color: #fff;
}
.post-type-archive-rooms .container .pagenation ul li a.prev,
.post-type-archive-rooms .container .pagenation ul li a.next,
.post-type-archive-rooms_sale .container .pagenation ul li a.prev,
.post-type-archive-rooms_sale .container .pagenation ul li a.next,
.page-rent-rooms .container .pagenation ul li a.prev,
.page-rent-rooms .container .pagenation ul li a.next,
.page-sale-rooms .container .pagenation ul li a.prev,
.page-sale-rooms .container .pagenation ul li a.next,
.page-favorite-list .container .pagenation ul li a.prev,
.page-favorite-list .container .pagenation ul li a.next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background-color: #fff;
  border-radius: 50%;
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.2));
}
@media (max-width: 768px) {
  .post-type-archive-rooms .container,
  .post-type-archive-rooms_sale .container,
  .page-rent-rooms .container,
  .page-sale-rooms .container,
  .page-favorite-list .container {
    padding: 0 min(2rem, 28px);
  }
  .post-type-archive-rooms .container main,
  .post-type-archive-rooms_sale .container main,
  .page-rent-rooms .container main,
  .page-sale-rooms .container main,
  .page-favorite-list .container main {
    margin: 0 auto min(1rem, 14px);
  }
  .post-type-archive-rooms .container main .estate-list-header,
  .post-type-archive-rooms_sale .container main .estate-list-header,
  .page-rent-rooms .container main .estate-list-header,
  .page-sale-rooms .container main .estate-list-header,
  .page-favorite-list .container main .estate-list-header {
    margin-bottom: min(6rem, 84px);
    padding-bottom: min(4rem, 56px);
  }
  .post-type-archive-rooms .container main .estate-list-header h2,
  .post-type-archive-rooms_sale .container main .estate-list-header h2,
  .page-rent-rooms .container main .estate-list-header h2,
  .page-sale-rooms .container main .estate-list-header h2,
  .page-favorite-list .container main .estate-list-header h2 {
    margin-bottom: min(4rem, 56px);
    font-size: min(2rem, 28px);
  }
  .post-type-archive-rooms .container main .estate-list-header p,
  .post-type-archive-rooms_sale .container main .estate-list-header p,
  .page-rent-rooms .container main .estate-list-header p,
  .page-sale-rooms .container main .estate-list-header p,
  .page-favorite-list .container main .estate-list-header p {
    font-size: min(1.4rem, 19.6px);
  }
  .post-type-archive-rooms .container main .estate-list-header a,
  .post-type-archive-rooms_sale .container main .estate-list-header a,
  .page-rent-rooms .container main .estate-list-header a,
  .page-sale-rooms .container main .estate-list-header a,
  .page-favorite-list .container main .estate-list-header a {
    font-size: min(1.2rem, 16.8px);
  }
  .post-type-archive-rooms .container main .article-list-wrap,
  .post-type-archive-rooms_sale .container main .article-list-wrap,
  .page-rent-rooms .container main .article-list-wrap,
  .page-sale-rooms .container main .article-list-wrap,
  .page-favorite-list .container main .article-list-wrap {
    flex-wrap: wrap;
    row-gap: min(6rem, 84px);
  }
  .post-type-archive-rooms .container .pagenation,
  .post-type-archive-rooms_sale .container .pagenation,
  .page-rent-rooms .container .pagenation,
  .page-sale-rooms .container .pagenation,
  .page-favorite-list .container .pagenation {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-top: min(6rem, 84px);
  }
  .post-type-archive-rooms .container .pagenation ul,
  .post-type-archive-rooms_sale .container .pagenation ul,
  .page-rent-rooms .container .pagenation ul,
  .page-sale-rooms .container .pagenation ul,
  .page-favorite-list .container .pagenation ul {
    column-gap: min(3rem, 42px);
    padding: min(3rem, 42px) min(2rem, 28px);
  }
  .post-type-archive-rooms .container .pagenation ul li span, .post-type-archive-rooms .container .pagenation ul li a,
  .post-type-archive-rooms_sale .container .pagenation ul li span,
  .post-type-archive-rooms_sale .container .pagenation ul li a,
  .page-rent-rooms .container .pagenation ul li span,
  .page-rent-rooms .container .pagenation ul li a,
  .page-sale-rooms .container .pagenation ul li span,
  .page-sale-rooms .container .pagenation ul li a,
  .page-favorite-list .container .pagenation ul li span,
  .page-favorite-list .container .pagenation ul li a {
    font-size: min(1.4rem, 19.6px);
  }
  .post-type-archive-rooms .container .pagenation ul li a.prev,
  .post-type-archive-rooms .container .pagenation ul li a.next,
  .post-type-archive-rooms_sale .container .pagenation ul li a.prev,
  .post-type-archive-rooms_sale .container .pagenation ul li a.next,
  .page-rent-rooms .container .pagenation ul li a.prev,
  .page-rent-rooms .container .pagenation ul li a.next,
  .page-sale-rooms .container .pagenation ul li a.prev,
  .page-sale-rooms .container .pagenation ul li a.next,
  .page-favorite-list .container .pagenation ul li a.prev,
  .page-favorite-list .container .pagenation ul li a.next {
    width: min(3rem, 42px);
    height: min(3rem, 42px);
  }
}

.page-favorite-list .container main .switch-room-type {
  margin: 4rem auto 5rem;
}
.page-favorite-list .container main .switch-room-type ul {
  display: flex;
  justify-content: center;
  column-gap: 2rem;
}
.page-favorite-list .container main .switch-room-type ul li {
  padding: 1rem 2rem;
  font-size: 1.6rem;
  border: 0.1rem solid #5389a6;
  border-radius: 1rem;
  background-color: #fff;
  cursor: pointer;
}
.page-favorite-list .container main .switch-room-type ul li.is-active {
  color: #fff;
  background-color: #5389a6;
  cursor: default;
}
.page-favorite-list .container main .article-list-wrap {
  margin-bottom: 8rem;
}
.page-favorite-list .container main .article-list-wrap .no-favorites {
  font-size: 1.6rem;
  margin: auto auto 0;
}

.room-list-01 {
  width: 24.25%;
  margin-bottom: 4rem;
}
.room-list-01 img {
  display: block;
  width: 100%;
  height: 17.9rem;
  object-fit: cover;
}
.room-list-01 .room-list-info {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  height: calc(100% - 17.9rem - 0rem - 0.8rem);
  margin-top: 0.8rem;
  padding: 1.6rem 0.5rem 2.6rem 1.4rem;
  background-color: #fff;
}
.room-list-01 .room-list-info .room-list-info__title {
  margin-bottom: 1.3rem;
  font-size: 1.4rem;
  font-weight: 600;
}
.room-list-01 .room-list-info dl.rent-fee {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  margin-bottom: 1.8rem;
}
.room-list-01 .room-list-info dl.rent-fee dt {
  margin-right: 0.5rem;
  padding: 0.2rem 0.7rem 0.3rem;
  font-size: 1.4rem;
  font-weight: 600;
  border: 0.2rem solid #5389a6;
}
.room-list-01 .room-list-info dl.rent-fee dd {
  font-weight: 700;
  color: #E24F46;
}
.room-list-01 .room-list-info dl.rent-fee dd span:nth-of-type(1) {
  margin-left: 0.4rem;
  font-size: 1.8rem;
}
.room-list-01 .room-list-info dl.rent-fee dd span:nth-of-type(2) {
  margin-left: 0.4rem;
  font-size: 1.4rem;
}
.room-list-01 .room-list-info dl.other-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 1rem;
  margin-bottom: 2.6rem;
  font-size: 1.3rem;
  font-weight: 600;
}
.room-list-01 .room-list-info dl.other-info > span {
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
}
.room-list-01 .room-list-info dl.other-info > span dt {
  padding: 0.2rem 1rem 0.4rem;
  color: #fff;
  text-align: center;
  background-color: #5389a6;
}
.room-list-01 .room-list-info dl.other-info > span:nth-of-type(2) {
  width: 44%;
}
.room-list-01 .room-list-info dl.other-info > span:nth-of-type(3) {
  width: 48%;
}
.room-list-01 .room-list-info dl.other-info > span:nth-of-type(4), .room-list-01 .room-list-info dl.other-info > span:nth-of-type(5) {
  width: 100%;
}
.room-list-01 .room-list-info dl.other-info > span:nth-of-type(4) dt, .room-list-01 .room-list-info dl.other-info > span:nth-of-type(5) dt {
  width: 4.8rem;
}
.room-list-01 .room-list-info > div.btn-detail {
  width: 80%;
  margin: auto auto 0;
  border: 0.1rem solid #5389a6;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}
.room-list-01 .room-list-info > div.btn-detail a {
  display: block;
  position: relative;
  padding: 0.3rem 0 0.4rem;
  color: #5389a6;
  transition: all 0.3s;
  transition: all 0.3s;
}
.room-list-01 .room-list-info > div.btn-detail a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  content: "\f0da";
  top: 0.6rem;
  right: 1rem;
}
@media (hover: hover) {
  .room-list-01 .room-list-info > div.btn-detail a:hover {
    color: #fff;
    background-color: #5389a6;
  }
}

.page-sale-rooms .room-list-01 {
  width: 32.6666666667%;
}
.page-sale-rooms .room-list-01 .room-list-info dl.rent-fee dt {
  margin-right: 0.5rem;
  padding: 0.2rem 0.4rem 0.3rem;
}
.page-sale-rooms .room-list-01 .room-list-info dl.rent-fee dd span:nth-of-type(1) {
  margin-left: 0.4rem;
}
.page-sale-rooms .room-list-01 .room-list-info dl.rent-fee dd span:nth-of-type(2) {
  margin-left: 0.4rem;
}
.page-sale-rooms .room-list-01 .room-list-info dl.other-info {
  column-gap: 0.5rem;
}
.page-sale-rooms .room-list-01 .room-list-info dl.other-info > span {
  column-gap: 0.4rem;
}
.page-sale-rooms .room-list-01 .room-list-info dl.other-info > span dt {
  padding: 0.2rem 0.6rem 0.4rem;
}
.page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(1) {
  width: 58%;
}
.page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(2) {
  width: 40%;
}
.page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(3), .page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(4) {
  width: calc(50% - 0.25rem);
}
.page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(3) dt, .page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(4) dt {
  width: fit-content;
  padding: 0.2rem 0.4rem 0.4rem;
}
.page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(5), .page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(6) {
  width: 100%;
}
.page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(5) dt, .page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(6) dt {
  width: 4.8rem;
}
.page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(5) dd, .page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(6) dd {
  width: calc(100% - 5.2rem);
  display: -webkit-box; /* 必須: フレックスベースのボックスを生成 */
  -webkit-box-orient: vertical; /* 必須: 垂直方向にボックスを配置 */
  overflow: hidden; /* コンテンツがあふれた場合に隠す */
  text-overflow: ellipsis; /* 必須: 省略記号を表示 */
  -webkit-line-clamp: 2; /* 3行で省略 */
}
.page-sale-rooms .room-list-01 .room-list-info > div.btn-detail {
  width: 80%;
  margin: auto auto 0;
  border: 0.1rem solid #5389a6;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}
.page-sale-rooms .room-list-01 .room-list-info > div.btn-detail a {
  display: block;
  position: relative;
  padding: 0.3rem 0 0.4rem;
  color: #5389a6;
  transition: all 0.3s;
  transition: all 0.3s;
}
.page-sale-rooms .room-list-01 .room-list-info > div.btn-detail a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  content: "\f0da";
  top: 0.6rem;
  right: 1rem;
}
@media (hover: hover) {
  .page-sale-rooms .room-list-01 .room-list-info > div.btn-detail a:hover {
    color: #fff;
    background-color: #5389a6;
  }
}

@media (max-width: 767px) {
  .article-list-wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 4%;
    max-width: 550px;
    margin: 0 auto min(2rem, 28px);
  }
  .article-list-wrap:not(:last-child) {
    margin-bottom: min(2rem, 28px);
  }
  .article-list-wrap .header-1 {
    margin-bottom: min(1.8rem, 25.2px);
    font-size: min(1.8rem, 25.2px);
  }
  .article-list-wrap .header-1 span {
    display: flex;
    align-items: center;
  }
  .article-list-wrap .header-1 span a {
    margin: 0;
    padding-left: min(1rem, 14px);
    padding-right: min(1rem, 14px);
    font-size: min(1.2rem, 16.8px);
  }
  .article-list-wrap .room-list-01,
  .page-rent-rooms .room-list-01,
  .page-sale-rooms .room-list-01 {
    width: 48%;
    margin-bottom: min(2.5rem, 35px);
  }
  .article-list-wrap .room-list-01 img,
  .page-rent-rooms .room-list-01 img,
  .page-sale-rooms .room-list-01 img {
    display: block;
    width: 100%;
    height: min(17.9rem, 250.6px);
    margin-bottom: min(0.8rem, 11.2px);
    object-fit: cover;
  }
  .article-list-wrap .room-list-01 .room-list-info,
  .page-rent-rooms .room-list-01 .room-list-info,
  .page-sale-rooms .room-list-01 .room-list-info {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    height: calc(100% - min(17.9rem, 250.6px) - 0px - min(0.8rem, 11.2px));
    padding: min(1.6rem, 22.4px) min(0.5rem, 7px) min(2rem, 28px) min(1rem, 14px);
  }
  .article-list-wrap .room-list-01 .room-list-info .room-list-info__title,
  .page-rent-rooms .room-list-01 .room-list-info .room-list-info__title,
  .page-sale-rooms .room-list-01 .room-list-info .room-list-info__title {
    font-size: min(1.4rem, 19.6px);
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .article-list-wrap .room-list-01 .room-list-info dl.rent-fee,
  .page-rent-rooms .room-list-01 .room-list-info dl.rent-fee,
  .page-sale-rooms .room-list-01 .room-list-info dl.rent-fee {
    margin-top: 0;
  }
  .article-list-wrap .room-list-01 .room-list-info dl.rent-fee dt,
  .page-rent-rooms .room-list-01 .room-list-info dl.rent-fee dt,
  .page-sale-rooms .room-list-01 .room-list-info dl.rent-fee dt {
    margin-right: min(0.5rem, 7px);
    padding: min(0.1rem, 1.4px) min(0.6rem, 8.4px);
    font-size: min(1.4rem, 19.6px);
    font-weight: 600;
    border: min(0.2rem, 2.8px) solid #5389a6;
  }
  .article-list-wrap .room-list-01 .room-list-info dl.rent-fee dt span,
  .page-rent-rooms .room-list-01 .room-list-info dl.rent-fee dt span,
  .page-sale-rooms .room-list-01 .room-list-info dl.rent-fee dt span {
    margin-left: min(0.5rem, 7px);
    font-size: min(1.2rem, 16.8px);
  }
  .article-list-wrap .room-list-01 .room-list-info dl.rent-fee dd,
  .page-rent-rooms .room-list-01 .room-list-info dl.rent-fee dd,
  .page-sale-rooms .room-list-01 .room-list-info dl.rent-fee dd {
    font-size: min(1.8rem, 25.2px);
  }
  .article-list-wrap .room-list-01 .room-list-info dl.rent-fee dd span:nth-of-type(1),
  .page-rent-rooms .room-list-01 .room-list-info dl.rent-fee dd span:nth-of-type(1),
  .page-sale-rooms .room-list-01 .room-list-info dl.rent-fee dd span:nth-of-type(1) {
    margin-left: min(0.4rem, 5.6px);
    font-size: min(1.8rem, 25.2px);
  }
  .article-list-wrap .room-list-01 .room-list-info dl.rent-fee dd span:nth-of-type(2),
  .page-rent-rooms .room-list-01 .room-list-info dl.rent-fee dd span:nth-of-type(2),
  .page-sale-rooms .room-list-01 .room-list-info dl.rent-fee dd span:nth-of-type(2) {
    margin-left: min(0.4rem, 5.6px);
    font-size: min(1.4rem, 19.6px);
  }
  .article-list-wrap .room-list-01 .room-list-info dl.rent-fee dd span:nth-of-type(3),
  .page-rent-rooms .room-list-01 .room-list-info dl.rent-fee dd span:nth-of-type(3),
  .page-sale-rooms .room-list-01 .room-list-info dl.rent-fee dd span:nth-of-type(3) {
    margin-left: min(0.2rem, 2.8px);
    font-size: min(1.3rem, 18.2px);
  }
  .article-list-wrap .room-list-01 .room-list-info dl.other-info,
  .page-rent-rooms .room-list-01 .room-list-info dl.other-info,
  .page-sale-rooms .room-list-01 .room-list-info dl.other-info {
    column-gap: min(1rem, 14px);
    row-gap: min(1rem, 14px);
    margin-bottom: min(1.6rem, 22.4px);
    font-size: min(1.1rem, 15.4px);
  }
  .article-list-wrap .room-list-01 .room-list-info dl.other-info > span,
  .page-rent-rooms .room-list-01 .room-list-info dl.other-info > span,
  .page-sale-rooms .room-list-01 .room-list-info dl.other-info > span {
    column-gap: min(0.8rem, 11.2px);
    width: 100% !important;
  }
  .article-list-wrap .room-list-01 .room-list-info dl.other-info > span dt,
  .page-rent-rooms .room-list-01 .room-list-info dl.other-info > span dt,
  .page-sale-rooms .room-list-01 .room-list-info dl.other-info > span dt {
    padding: min(0.2rem, 2.8px) min(1rem, 14px) min(0.4rem, 5.6px);
  }
  .article-list-wrap .room-list-01 .room-list-info dl.other-info > span:nth-of-type(1) dt,
  .page-rent-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(1) dt,
  .page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(1) dt {
    width: 49%;
  }
  .article-list-wrap .room-list-01 .room-list-info dl.other-info > span:nth-of-type(1) dd,
  .page-rent-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(1) dd,
  .page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(1) dd {
    width: calc(51% - min(1rem, 14px));
  }
  .article-list-wrap .room-list-01 .room-list-info dl.other-info > span:nth-of-type(3) dt, .article-list-wrap .room-list-01 .room-list-info dl.other-info > span:nth-of-type(4) dt, .article-list-wrap .room-list-01 .room-list-info dl.other-info > span:nth-of-type(5) dt,
  .page-rent-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(3) dt,
  .page-rent-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(4) dt,
  .page-rent-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(5) dt,
  .page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(3) dt,
  .page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(4) dt,
  .page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(5) dt {
    width: 30%;
  }
  .article-list-wrap .room-list-01 .room-list-info dl.other-info > span:nth-of-type(3) dd, .article-list-wrap .room-list-01 .room-list-info dl.other-info > span:nth-of-type(4) dd, .article-list-wrap .room-list-01 .room-list-info dl.other-info > span:nth-of-type(5) dd,
  .page-rent-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(3) dd,
  .page-rent-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(4) dd,
  .page-rent-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(5) dd,
  .page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(3) dd,
  .page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(4) dd,
  .page-sale-rooms .room-list-01 .room-list-info dl.other-info > span:nth-of-type(5) dd {
    width: calc(70% - min(1rem, 14px));
  }
  .article-list-wrap .room-list-01 .room-list-info > div:last-of-type,
  .page-rent-rooms .room-list-01 .room-list-info > div:last-of-type,
  .page-sale-rooms .room-list-01 .room-list-info > div:last-of-type {
    margin-top: auto;
    font-size: min(1.3rem, 18.2px);
  }
}
/*-----------------------------------
 物件リスト
--------------------*/
.estate-item {
  width: 32.5%;
  transition: all 0.3s;
}
.estate-item .estate-thumbnail {
  overflow: hidden;
  position: relative;
  height: 26rem;
  max-height: 260px;
  margin-bottom: 1.5rem;
}
.estate-item .estate-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.estate-item .estate-thumbnail .favorite-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
}
.estate-item .estate-thumbnail .favorite-btn img {
  width: 3rem;
  height: auto;
  transition: all 0.3s;
}
.estate-item .estate-thumbnail .favorite-btn .remove-favorite {
  display: none;
}
.estate-item .estate-thumbnail .favorite-btn:hover img {
  transform: scale(1.1);
}
.estate-item .estate-thumbnail .favorite-btn.is-favorite .add-favorite {
  display: none;
}
.estate-item .estate-thumbnail .favorite-btn.is-favorite .remove-favorite {
  display: block;
}
.estate-item .estate-title {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.08em;
}
.estate-item li {
  display: flex;
  align-items: baseline;
  column-gap: 1rem;
  margin-bottom: 1.6rem;
}
.estate-item li h4 {
  width: 10rem;
}
.estate-item li p {
  width: calc(100% - 10rem - 1rem);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.estate-item .estate-price h4 {
  line-height: 1.75;
}
.estate-item .estate-price p {
  font-weight: 500;
}
.estate-item .estate-price p span:nth-child(1) {
  font-size: 2.4rem;
  color: #840000;
  font-weight: 500;
}
.estate-item .estate-price p span:nth-child(2) {
  font-size: 1.6rem;
  margin-left: 0.4rem;
}
@media (hover: hover) {
  .estate-item:hover {
    opacity: 0.8;
  }
  .estate-item:hover .estate-thumbnail img {
    transform: scale(1.05);
  }
}
@media (max-width: 767px) {
  .estate-item {
    width: 100%;
  }
  .estate-item .estate-thumbnail {
    height: min(32rem, 448px);
    margin-bottom: min(2rem, 28px);
  }
  .estate-item .estate-title {
    margin-bottom: min(1.8rem, 25.2px);
    font-size: min(1.8rem, 25.2px);
  }
  .estate-item li {
    column-gap: min(1rem, 14px);
    margin-bottom: min(1.6rem, 22.4px);
  }
  .estate-item li h4 {
    width: min(13rem, 182px);
  }
  .estate-item li p {
    width: calc(100% - 1rem - 13rem);
    font-size: min(1.4rem, 19.6px);
  }
  .estate-item .estate-price p span:nth-child(1) {
    font-size: min(2.4rem, 33.6px);
  }
  .estate-item .estate-price p span:nth-child(2) {
    font-size: min(1.6rem, 22.4px);
  }
}