@charset "utf-8";

/*----------------------------------------
	無効化
----------------------------------------*/

.cdp-copy-alert-success {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -9999 !important;
  visibility: hidden !important;
}

/*----------------------------------------
	header top
----------------------------------------*/

.top_title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.global_nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
body:not(.home):not(.front-page):not(.is_estate_top) .global_nav{
  position: relative;
}

.top_head {
  display: flex;
}
.top_head li {
  flex: 1;
  text-align: center;
  background-color: #1b5da9;
}

.mv_section {
  position: relative;
  background-image: url("../images/estate/top/mv_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: #fff;
}

.top_head li a {
  display: block;
  color: #fff;
  padding: 1.4em 0;
  letter-spacing: -0.02em;
}

.top_head li:nth-child(2) {
  background-color: transparent;
}

.top_head li:nth-child(2) a {
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .top_head {
    display: none;
  }
}

/*----------------------------------------
	header 共通
----------------------------------------*/

.banner_grid {
    display: grid;
    width: 100%;
    gap: 20px;
    box-sizing: border-box; 
}

.banner_grid a {
    display: block;
    width: 100%;
    transition: opacity 0.3s;
}

.banner_grid a:hover {
    opacity: 0.7;
}

.banner_grid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media screen and (min-width: 601px) {
    .banner_grid {
        padding-left: 0;
        padding-right: 0;
        grid-template-columns: repeat(6, 1fr); 
        gap: 16px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (max-width: 600px) {
    .banner_grid {
        width: 100%;
        margin-inline: auto;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.common_header {
  background: transparent;
  position: relative;
  margin-top: 30px;
}
body:not(.home):not(.front-page):not(.is_estate_top) .common_header {
  margin-top: 0;
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0 auto;
  padding: 10px 20px 25px;
}

body:not(.home):not(.front-page):not(.is_estate_top) .header_inner {
    padding: 30px 20px 25px;
    background-color: #1b5da9;
}

.header_nav {
  flex: 1 1 auto;
}

.header_list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 10px 20px;
  padding-right: 80px;
}

.header_list li a {
  color: #fff;
  font-size: 1.4rem;
  padding: 10px 0;
}

.menu_btn {
  position: fixed;
  top: 120px;
  right: 25px;
  width: 40px;
  height: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
  opacity: 1;
  transition: opacity 1s ease, mix-blend-mode 0.3s ease;
  mix-blend-mode: normal;
}
body:not(.home):not(.front-page):not(.is_estate_top) .menu_btn{
  top: 55px;
}

.menu_btn.is_scrolled {
  mix-blend-mode: difference;
}
@media screen and (max-width: 1200px) {
.menu_btn {
  top: 52px;
}
}
.menu_btn span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu_btn.is_active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu_btn.is_active span:nth-child(2) {
  opacity: 0;
}

.menu_btn.is_active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu_btn.is_active span {
  background: #000;
}

.menu_btn.is_active {
  mix-blend-mode: normal;
}

.drawer_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: #ecf4fa;
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
}

.drawer_menu.is_active {
    opacity: 1;
    visibility: visible;
}

body:has(.drawer_menu.is_active) {
    background-color: #ecf4fa;
}

.drawer_menu_inner {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 30px 20px;
}

.banner_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.banner_grid a {
    display: block;
}

.drawer_main_cols {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.drawer_col {
    flex: 1;
}

.drawer_side_nav a {
    display: block;
    padding: 0 0 0 15px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.drawer_side_nav a:hover {
    color: #808080;
}

.drawer_lower.border_t {
    border-top: 1px solid #ccc;
}

.drawer_sublinks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.drawer_sublinks_row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 45px;
}

.drawer_sublinks a {
    color: #000;
    text-decoration: none;
}

.drawer_socials {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.icon_black {
    filter: brightness(0);
}

.drawer_side_nav li {
    margin-bottom: 40px;
}

.drawer_side_nav a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 15px;
    position: relative;
    text-decoration: none;
    color: #333;
}

.drawer_side_nav a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 90%;
    background-color: #469ed7;
    border-radius: 3px;
}

.drawer_side_nav .nav_en {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.drawer_side_nav .nav_ja {
    line-height: 1.4;
}

.drawer_col_right{
  max-width: 320px;
}


.banner_grid {
    display: grid;
    width: 100%;
    gap: 20px;
    box-sizing: border-box; 
}

.banner_grid a {
    display: block;
    width: 100%;
    transition: opacity 0.3s;
}

.banner_grid a:hover {
    opacity: 0.7;
}

.banner_grid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

  .header_logo {
    max-width: 270px;
  }

@media screen and (min-width: 769px) {
    .banner_grid {
        padding-left: 0;
        padding-right: 0;
        grid-template-columns: repeat(6, 1fr); 
        gap: 16px;
    }
}

@media screen and (max-width: 1150px) {
.header_list {
    display: none;
}
}

@media screen and (max-width: 991px) {
    .banner_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .drawer_main_cols {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .banner_grid {
        width: 100%;
        margin-inline: auto;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media screen and (max-width: 599px) {
    .drawer_sublinks {
        align-items: flex-start;
        gap: 20px;
    }
    .drawer_sublinks_row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media screen and (max-width: 500px) {
  .header_logo {
    width: 180px;
  }
  .drawer_btn {
    width: 50px;
    height: 50px;
  }
  .header_btn_wrap {
    width: 120px;
  }
  .drawer_btn_line:nth-child(1) {
    top: 16px;
  }
  .drawer_btn_line:nth-child(2) {
    top: 24px;
  }
  .drawer_btn_line:nth-child(3) {
    top: auto;
    bottom: 16px;
  }
  .drawer_btn.is_active .drawer_btn_line:nth-child(1) {
    top: 25px;
  }
  .drawer_btn.is_active .drawer_btn_line:nth-child(3) {
    top: 25px;
  }
  .drawer_menu {
    display: block;
    padding-top: 70px;
  }
  .drawer_menu_inner {
    margin: 0 auto;
    padding: 0 20px 70px;
  }
  .banner_grid {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .drawer_side_nav li {
    margin-bottom: 30px;
}
}

/*----------------------------------------
	drawer 検索・分譲地情報
----------------------------------------*/

[data-area="sakai"]         { --area_color: #064296; --area_text: #fff; }
[data-area="takaishi"]      { --area_color: #afcc5c; --area_text: #fff; }
[data-area="izumiotsu"]     { --area_color: #c4b368; --area_text: #fff; }
[data-area="izumi"]         { --area_color: #f0c61e; --area_text: #fff; }
[data-area="kishiwada"]     { --area_color: #eb8d6b; --area_text: #fff; }
[data-area="kaizuka"]       { --area_color: #5cc1cc; --area_text: #fff; }
[data-area="kumatori"]      { --area_color: #cf888e; --area_text: #fff; }
[data-area="izumisano"]     { --area_color: #69acca; --area_text: #fff; }
[data-area="tadaoka"]       { --area_color: #ab8559; --area_text: #fff; }
[data-area="sennan-hannan"] { --area_color: #7ecef4; --area_text: #fff; }
[data-area="wakayama"]      { --area_color: #0298c4; --area_text: #fff; }
[data-area="minamikawachi"] { --area_color: #66be75; --area_text: #fff; }
[data-area="osaka-east"]    { --area_color: #8485b5; --area_text: #fff; }
[data-area="osaka-city"]    { --area_color: #a8c9e0; --area_text: #fff; }

.drawer_block_icon {
  width: 50px;
  flex-shrink: 0;
}

.area_current {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  background: #fff;
  text-align: left;
  font-size: 1.4rem;
  color: #333;
  cursor: pointer;
  text-decoration: none;
}

.area_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 10px;
    column-gap: 15px;
}

.area_item {
  display: block;
  padding: 20px 10px;
  background: var(--area_color, #ccc);
  color: var(--area_text, #fff);
  text-align: center;
  font-size: 1.4rem;
  text-decoration: none;
}

.area_item.is_empty {
  background: #f2f2f2;
  color: #c8c8c8;
  opacity: 0.3;
}

.area_dark {
  color: #fff;
}

.area_pale {
  color: #333;
}

.area_c1 { background: var(--area_c1); }
.area_c2 { background: var(--area_c2); }
.area_c3 { background: var(--area_c3); }
.area_c4 { background: var(--area_c4); }
.area_c5 { background: var(--area_c5); }
.area_c6 { background: var(--area_c6); }
.area_c7 { background: var(--area_c7); }
.area_c8 { background: var(--area_c8); }
.area_c9 { background: var(--area_c9); }
.area_c10 { background: var(--area_c10); }
.area_c11 { background: var(--area_c11); }
.area_c12 { background: var(--area_c12); }

.lot_item {
  color: #333;
}

.lot_thumb {
  aspect-ratio: 4 / 3;
  background: #fff;
}

.lot_thumb_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lot_label {
  position: absolute;
  top: -10px;
  left: 10px;
  gap: 0;
}

.badge_new,
.badge_status {
  display: inline-block;
  padding: 8px 10px;
  font-size: 1.2rem;
  line-height: 1;
}

.badge_new {
  background: #58c1da;
  color: #fff;
  margin-right: 10px;
}

.badge_status {
  background: #feeb50;
  color: #000;
}

.lot_price {
  color: #2e559c;
}

@media screen and (max-width: 500px) {
  .area_grid {
    gap: 8px;
  }
  .area_item {
    font-size: 1.3rem;
    padding: 10px 8px;
  }
}

/*----------------------------------------
	top mv
----------------------------------------*/

.bg_white_blue{
  background-color: #ecf4fa;
}

.mv_badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 650px;
  padding-inline: 20px;
  box-sizing: border-box;
  margin: 0;
}

.mv_banners_wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgb(0 0 0 / 0.35);
}

.mv_banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
  margin-inline: auto;
  padding: 20px;
  box-sizing: border-box;
}

.mv_banner {
  display: block;
}

.mv_banner img {
  display: block;
}

@media screen and (max-width: 600px) {
  .mv_banners {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 420px;
  }
}

@media screen and (max-width: 500px) {
    .mv_badge {
        width: 90%;
        top: 40%;
        padding-inline: 0;
    }
}


/*----------------------------------------
	footer
----------------------------------------*/

.site_footer {
  display: flex;
  justify-content: space-between;
  padding-top: 90px;
  padding-bottom: 100px;
  background: #fff;
  color: #000;
  flex-wrap: wrap;
  gap: 2em;
}

.footer_left {
  flex: 1 1 200px;
  max-width: 300px;
}

.footer_right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 70px;
}

.footer_col {
  flex: 0 1 auto;
  min-width: auto;
}

.footer_block ul {
  padding-left: 2.5em;
  margin: 0;
}

.footer_block ul li {
  margin-bottom: 24px;
}

.footer_block ul li::marker {
  color: #808080;
}

.footer_block ul li:last-child {
  margin-bottom: 0;
}

.footer_block ul li a {
  text-decoration: none;
  line-height: 1.4;
}

.footer_corp_link a {
  justify-content: space-between;
  width: 100%;
  padding: 18px 16px;
  border: 1px solid #000;
}

.footer_block ul.footer_block_plain {
  padding-left: 0;
  list-style: none;
}

.text_sublink{
  color: #808080;
}

.text_sublink.is_empty {
  color: #c8c8c8;
}

@media screen and (max-width: 768px) {
  .site_footer {
    flex-direction: column;
    gap: 0;
    padding-top: 60px;
  }
}

@media screen and (max-width: 600px) {
  .footer_right {
    gap: 20px;
  }

  .footer_col {
    flex: 1 1 100%;
    min-width: auto;
  }
}

@media screen and (max-width: 500px) {
  .footer_col {
    flex-direction: column;
    row-gap: 20px;
  }
  .footer_left {
    flex: 1 1 150px;
  }
}

/*----------------------------------------
	2つの家づくり
----------------------------------------*/

.order_head_icon {
  width: 52px;
}

.order_full {
  display: flex;
  background: #fff;
}

.order_full_img {
  flex: 1 1 50%;
}

.order_full_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  display: block;
}

.order_full_body {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}

.order_cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.order_card {
  background: #fff;
}

.order_card_body {
    padding: 20px 30px 60px;
}

.order_desc {
  color: #666;
}

.order_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.order_tags li {
  padding: 6px 12px;
  border: 1px solid #808080;
  color: #808080;
}

.order_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 70px;
  max-width: 360px;
  margin-top: 40px;
  margin-inline: auto;
  padding: 16px 20px;
  box-sizing: border-box;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .order_full {
    flex-direction: column;
  }
  .order_full_img img {
    height: auto;
  }
}

@media screen and (max-width: 600px) {
  .order_cols {
    grid-template-columns: 1fr;
  }

  .order_card_body,
  .order_full_body {
    padding: 20px 20px 40px;
}
}

/*----------------------------------------
	泉州ホームの強み(about)
----------------------------------------*/

.about_section {
  position: relative;
  background: url("../images/estate/top/estate_about_bg.jpg") center / cover no-repeat;
}

.about_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(6 66 150 / 0.4), rgb(6 66 150 / 0.05));
  pointer-events: none;
}

.about_top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 140px;
}

.about_lead {
  flex: 1 1 55%;
}

.about_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: 300px;
  padding: 25px 25px;
  box-sizing: border-box;
  background: #2e559c;
  color: #fff;
  text-decoration: none;
}

.about_logo {
  flex: 0 1 40%;
  max-width: 380px;
}

.about_logo_main {
  position: relative;
}

.about_since {
  position: absolute;
  top: 6%;
  right: 0;
  color: #1b5da9;
}

.about_logo_cap {
  margin-top: 10px;
}

.about_stats_wrap {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin-inline: auto;
  background: #fff;
}

.about_stats_inner {
  padding-top: 50px;
  padding-bottom: 5px;
}

.about_stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.about_num {
  line-height: 1.1;
}

@media screen and (max-width: 768px) {
  .about_top {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 80px;
  }
  .about_logo {
    max-width: 320px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 600px) {
  .about_stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/*----------------------------------------
	施工事例
----------------------------------------*/

.works_section {
  background: #fff;
}

.works_head_icon {
  width: 44px;
}

.works_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.works_grid img {
  width: 100%;
  display: block;
}

.works_desc {
  color: #666;
}

.tour_more_wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tour_card.is_hidden,
.js_tour_more_sub.is_hidden {
  display: none;
}

.works_btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    padding: 25px 25px;
    box-sizing: border-box;
    background: #2e559c;
    color: #fff;
    text-decoration: none;
}

.works_btn svg {
  position: absolute;
  right: 20px;
}

@media screen and (max-width: 768px) {
  .works_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/*----------------------------------------
	選ばれる理由
----------------------------------------*/

.choice_section {
  background: #fff;
}

.choice_head_icon {
  width: 40px;
}

.text_navy {
  color: #2e559c;
}

.choice_cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-inline: auto;
}

.choice_img {
  display: block;
  width: 100%;
}

.choice_body {
  text-align: justify;
}

@media screen and (max-width: 850px) {
  .choice_cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .choice_card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 20px);
    justify-self: center;
  }
}

@media screen and (max-width: 600px) {
  .choice_cards {
    grid-template-columns: 1fr;
  }
  .choice_card:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
  .choice_cards {
    gap: 50px;
  }
}

/*----------------------------------------
	完成見学会(house_tour)
----------------------------------------*/

.tour_section {
  background: #fff;
}

.tour_head_icon {
  width: 52px;
}

/* タブ */
.tour_tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin-inline: auto;
  max-width: 1000px;
  border-bottom: 1px solid #ccc;
}

.tour_tab {
  flex: 1 1 0;
  text-align: center;
  padding: 16px 10px;
  font-size: 1.4rem;
  color: #000;
  cursor: pointer;
  border: 1px solid transparent;
  border-bottom: none;
  transition: color 0.2s;
}

.tour_tab.is_active {
  color: #000;
  background: #fff;
  border-color: #ccc;
  border-radius: 8px 8px 0 0;
  margin-bottom: -1px;
}

/* カード */
.tour_cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  max-width: 1000px;
  margin-inline: auto;
}

.tour_card_link {
  display: block;
  color: #333;
  text-decoration: none;
}

.tour_card_visual {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 15px;
}

.tour_card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tour_card_new {
  position: absolute;
  top: -8px;
  left: -6px;
  z-index: 2;
}

.tour_card_overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  box-sizing: border-box;
  background: rgb(0 0 0 / 0.35);
}

.tour_card_badge {
    padding: 4px 14px;
    border: 1px solid #fff;
    color: #000;
    background-color: #fff;
    border-radius: 2px;
}

.tour_card_end {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 0.55);
  color: #fff;
  font-size: 2rem;
  z-index: 3;
}

.tour_card_caption {
  line-height: 1.5;
}

@media screen and (max-width: 850px) {
  .tour_cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 600px) {
  .tour_tab {
    font-size: 1.2rem;
    padding: 12px 6px;
    line-height: 1.4;
  }
  .tour_cards {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/*----------------------------------------
	スタッフ指名システム / お知らせ
----------------------------------------*/

.staff_section {
  overflow: hidden;
}

.staff_sec_icon {
  display: block;
  width: 52px;
  margin: 0 auto 20px;
}

.tag_new,
.tag_nominate {
  display: inline-block;
  padding: 7px 10px;
  font-size: 1.4rem;
  line-height: 1;
}

.tag_new {
  background: #58c1da;
  color: #fff;
}

.tag_nominate {
  background: #feeb50;
  color: #000;
}

/* スライダー */
.staff_slider {
  max-width: 1100px;
  margin-inline: auto;
  padding: 20px;
  margin-bottom: 50px;
  box-sizing: border-box;
}

.staff_slider.swiper {
  overflow: visible;
}

.staff_slider .swiper-slide {
  height: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.staff_slider .swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.92);
  opacity: 0.6;
}

.staff_card {
  position: relative;
  display: flex;
  gap: 16px;
  height: 100%;
  padding: 30px 50px 30px 20px;
  background: #fff;
  box-sizing: border-box;
}

.staff_card_photo {
  flex: 0 0 40%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.staff_card_photo img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.staff_card_tags {
  position: absolute;
  top: -12px;
  left: 10px;
  display: flex;
  z-index: 2;
}

.staff_card_info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.staff_card_dept {
  align-self: flex-start;
  padding: 7px 10px;
  border: 1px solid #eee;
  color: #000;
  margin-bottom: 10px;
  background-color: #eee;
}

.staff_card_name {
  margin-bottom: 16px;
}

.staff_card_insta {
  align-self: flex-start;
}

.staff_card_arrow {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2e559c;
  flex-shrink: 0;
}

/*----------------------------------------
	イベント・キャンペーン情報
----------------------------------------*/

.topics_head_icon {
  width: 43px;
}

.topics_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
}

.topics_card_link {
  display: block;
  color: #333;
  text-decoration: none;
}

.topics_card_new {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.topics_card_visual {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 12px;
}

.topics_card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.topics_card_ttl {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  margin-bottom: 8px;
}

.topics_card_date {
  color: #808080;
}

@media screen and (max-width: 768px) {
  .topics_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/*----------------------------------------
	暮らしたいエリアから探す
----------------------------------------*/

.area_head_icon {
  width: 44px;
}

.area_map {
  position: relative;
  container-type: inline-size;
  max-width: 800px;
  margin-inline: auto;
}

.area_map_img {
  display: block;
  width: 100%;
}

.area_btn {
  position: absolute;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 11em;
  height: 3.5em;
  padding: 0 1em 0 1.07em;
  border: 1px solid #868686;
  border-radius: 1.43em;
  background: linear-gradient(180deg, #fff 48%, #f2f2f2 58%);
  box-shadow: 0 0.29em 0 #808080;
  color: #0d0d0d;
  font-size: 2.1cqw;
  line-height: 1;
  text-decoration: none;
}

.area_btn_dot {
  display: block;
  flex: 0 0 auto;
  width: 0.71em;
  height: 0.71em;
  margin-right: 0.25em;
  border-radius: 50%;
  background: var(--area_color, #ccc);
}

.area_btn_name {
  flex: 0 1 auto;
  overflow: hidden;
  font-size: 0.92em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.area_btn_arrow {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.57em;
  height: 1.57em;
  margin-left: auto;
  border-radius: 50%;
  background: var(--area_color, #ccc);
  color: #fff;
}

.area_btn_arrow svg {
  width: 0.85em;
  height: 0.85em;
}

.area_btn.is_empty {
  border-color: #e5e5e5;
  background: #fff;
  box-shadow: 0 0.29em 0 #f0f0f0;
  color: #d5d5d5;
  cursor: default;
}

.area_btn.is_empty .area_btn_dot {
  background: #ececec;
}

.area_btn.is_empty .area_btn_arrow {
  background: #f7f7f7;
  color: #dcdcdc;
}

.area_btn[data-area="takaishi"] {
  top: 4.9%;
  left: 14.2%;
}

.area_btn[data-area="osaka-city"] {
  top: 4.9%;
  left: 39.1%;
}

.area_btn[data-area="osaka-east"] {
  top: 4.9%;
  left: 64.9%;
}

.area_btn[data-area="izumiotsu"] {
  top: 18.6%;
  left: 14.2%;
}

.area_btn[data-area="sakai"] {
  top: 18.6%;
  left: 58.2%;
}

.area_btn[data-area="tadaoka"] {
  top: 31.6%;
  left: 14.2%;
}

.area_btn[data-area="minamikawachi"] {
  top: 31.6%;
  left: 64.9%;
}

.area_btn[data-area="kaizuka"] {
  top: 45.3%;
  left: 14.2%;
}

.area_btn[data-area="izumi"] {
  top: 45.3%;
  left: 58.2%;
}

.area_btn[data-area="kumatori"] {
  top: 58.5%;
  left: 14.2%;
}

.area_btn[data-area="kishiwada"] {
  top: 58.5%;
  left: 58.2%;
}

.area_btn[data-area="sennan-hannan"] {
  top: 71.9%;
  left: 14.2%;
}

.area_btn[data-area="izumisano"] {
  top: 71.9%;
  left: 42.2%;
}

.area_btn[data-area="wakayama"] {
  top: 85.2%;
  left: 14.2%;
}

@media screen and (max-width: 768px) {
  .area_map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
    max-width: 480px;
  }
  .area_map_img {
    grid-column: 1 / -1;
    margin-bottom: 10px;
  }
  .area_btn {
    position: static;
    width: auto;
    font-size: 1.3rem;
  }
}

/* お知らせ */
.news_area {
  max-width: 900px;
  margin-inline: auto;
}

.news_list {
  border-top: 1px solid #ddd;
}

.news_item {
  border-bottom: 1px solid #ddd;
}

.news_link {
  display: flex;
  align-items: center;
  column-gap: 70px;
  row-gap: 30px;
  padding: 18px 8px;
  color: #333;
  text-decoration: none;
}

.news_date {
  flex: 0 0 auto;
}

.news_ttl {
  flex: 0 1 auto;
}

.news_link .tag_new {
  flex: 0 0 auto;
}

@media screen and (max-width: 600px) {
  .staff_card {
    flex-direction: column;
    padding: 30px;
  }
  .staff_card_photo {
    flex: none;
  }
  .staff_card_arrow {
    top: auto;
    bottom: 20px;
    right: 20px;
    transform: none;
  }
  .news_link {
    flex-wrap: wrap;
    gap: 6px 12px;
  }
    .news_ttl {
        flex-basis: 100%;
        order: 3;
        line-height: 1.4;
        text-align: left;
    }
}

/*----------------------------------------
	CTA(家族のための一歩)
----------------------------------------*/

.cta_section {
  background-color: #1b5da9;
}

.cta_head_icon {
  width: 55px;
}

.cta_banners {
  display: flex;
  max-width: 900px;
  margin-inline: auto;
}

.cta_banner {
  flex: 1 1 0;
  min-width: 0;
}

.cta_banner img {
  width: 100%;
  display: block;
}

.cta_banner + .cta_banner {
  margin-left: -1px;
}

@media screen and (max-width: 600px) {
  .cta_banners {
    flex-direction: column;
  }
  .cta_banner + .cta_banner {
    margin-left: 0;
    margin-top: -1px;
  }
}

.cta_cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
  margin-inline: auto;
}

.cta_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 30px 30px 20px;
}

.sp_text_40{
  font-size: 40px !important;
}

.cta_card_icon {
  display: block;
  width: 55px;
  margin-inline: auto;
}

.cta_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  box-sizing: border-box;
  text-decoration: none;
}

.cta_btn_orange {
  background: #f18966;
  color: #fff;
}

.cta_btn_yellow {
  background: #efc41d;
  color: #fff;
}

.cta_phone {
  color: #2e559c;
  text-decoration: none;
}

@media screen and (max-width: 850px) {
  .cta_cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta_card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
  }
}

@media screen and (max-width: 600px) {
  .cta_cards {
    grid-template-columns: 1fr;
  }
  .cta_card:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
}

/*----------------------------------------
	estate list
----------------------------------------*/

.estate_filter {
  background: #fff;
}

.estate_filter_grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.area_item.is_current {
  outline: 2px solid #1b5da9;
  outline-offset: 2px;
}

.badge_status[data-status="advance"] {
  background: #eb8d6b;
  color: #fff;
}

.estate_list_section {
  padding-top: 20px;
}

.estate_list_ttl {
  color: #333;
}

.estate_list_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.estate_list_current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b4c6d8;
}

.estate_list_current.is_link {
  color: #2e559c;
}

.estate_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 36px;
}

.estate_card {
  position: relative;
  padding-top: 16px;
}

.estate_card_link {
  position: relative;
  display: block;
  height: 100%;
  background: #fff;
  color: #333;
  text-decoration: none;
  transition: box-shadow .3s ease, transform .3s ease;
}

.estate_card_link:hover {
  box-shadow: 0 6px 18px rgba(27, 93, 169, .15);
  transform: translateY(-2px);
}

.estate_card_badges {
  position: absolute;
  top: -16px;
  left: 12px;
  display: flex;
  gap: 8px;
  z-index: 1;
}

.estate_card_body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 20px;
  padding: 32px 24px 20px;
}

.estate_card_main {
  min-width: 0;
}

.estate_card_ttl {
  margin-bottom: 12px;
}

.estate_card_lead {
  margin-bottom: 18px;
}

.estate_card_spec {
  margin-bottom: 18px;
}

.estate_card_spec_row {
  display: grid;
  grid-template-columns: 4.5em minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin-bottom: 6px;
}

.estate_card_spec_ttl {
  background: #e6e6e6;
  color: #555;
  text-align: center;
  padding: 3px 0;
  line-height: 1.4;
}

.estate_card_spec_txt {
  line-height: 1.5;
}

.estate_card_price {
  color: #2e559c;
  line-height: 1;
}

.estate_card_price_num {
  font-size: 2.8rem;
}

.estate_card_price_unit {
  font-size: 1.6rem;
}

.estate_card_visual {
  align-self: start;
}

.estate_card_img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.estate_card_zoom {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #2e559c;
  color: #fff;
}

.estate_card_zoom svg {
  width: 22px;
  height: 22px;
}

.estate_pager {
  width: 100%;
}

.estate_pager_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.estate_pager_list a,
.estate_pager_list span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  justify-content: center;
  background: #fff;
  color: #333;
  font-size: 1.4rem;
  text-decoration: none;
}

.estate_pager_list .current {
  background: #2e559c;
  color: #fff;
}

.estate_pager_list .dots {
  background: none;
  min-width: auto;
  padding: 0 4px;
}

.estate_bread {
  background: #e9f0f8;
}

.estate_bread_list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  color: #8c9bab;
  align-items: flex-end;
}

.estate_bread_list li + li::before {
  content: ">";
  margin-right: 10px;
  color: #8c9bab;
}

.estate_bread_list a {
  color: #8c9bab;
  text-decoration: none;
}

@media screen and (max-width: 1000px) {
  .estate_filter_grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .estate_card_body {
    grid-template-columns: minmax(0, 1fr) 150px;
  }
}

@media screen and (max-width: 768px) {
  .estate_grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }
}

@media screen and (max-width: 600px) {
  .estate_filter_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .estate_card_body {
    grid-template-columns: minmax(0, 1fr);
    padding: 28px 16px 20px;
  }
  .estate_card_visual {
    order: -1;
  }
  .estate_card_price_num {
    font-size: 2.4rem;
  }
  .estate_pager_list a,
  .estate_pager_list span {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 1.3rem;
  }
}

/*----------------------------------------
	estate detail
----------------------------------------*/

.estate_detail_area {
  background: #ecf3f9;
  padding: 20px 20px 0;
}

.estate_detail_panel {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 55px 60px;
}

.estate_detail_head {
  margin-bottom: 10px;
}

.estate_detail_head_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.estate_detail_badges {
  display: flex;
  gap: 8px;
}

.estate_detail_back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.estate_detail_ttl {
  color: #333;
}

.estate_detail_lead {
  color: #333;
}

.estate_detail_main_img,
.estate_detail_free_img {
  margin-top: 30px;
}

.estate_detail_main_img img,
.estate_detail_free_img img,
.estate_detail_kukaku img,
.detail_cta_banners img {
  display: block;
  width: 100%;
  height: auto;
}

.estate_detail_sec {
  margin-top: 60px;
}

.estate_sec_ttl {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 18px;
  background: #2e559c;
  color: #fff;
  line-height: 1.4;
}

.estate_detail_kukaku {
  padding-top: 30px;
}

.estate_detail_info {
  padding-top: 25px;
  color: #333;
  line-height: 1.9;
}

.estate_detail_map {
  margin-top: 30px;
  aspect-ratio: 2 / 1;
}

.estate_detail_map iframe,
.estate_detail_map > * {
  width: 100%;
  height: 100%;
  border: 0;
}

.estate_location_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 26px;
  margin-top: 40px;
}

.estate_location_item {
  min-width: 0;
}

.estate_location_pic {
  aspect-ratio: 1 / 1;
  background: #e6e6e6;
  margin-bottom: 10px;
}

.estate_location_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estate_location_txt {
  color: #333;
}

.estate_spec_tbl {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-top: 30px;
}

.estate_spec_tbl th,
.estate_spec_tbl td {
  padding: 12px 15px;
  border-bottom: 1px solid #e6e6e6;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
  word-break: break-word;
}

.estate_spec_tbl th {
  background: #eef2f7;
  color: #333;
  font-weight: 400;
}

.estate_spec_tbl td {
  color: #333;
}

.estate_spec_tbl tr:first-child th,
.estate_spec_tbl tr:first-child td {
  border-top: 1px solid #e6e6e6;
}

.estate_spec_tbl_2col th {
  width: 20%;
}

.estate_spec_tbl_4col th {
  width: 17%;
}

.estate_spec_tbl_4col td {
  width: 33%;
}

/* 詳細ページ CTA */

.detail_cta {
  margin-top: 70px;
}

.detail_cta_banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail_cta_actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}

.detail_cta_col {
  width: 300px;
  max-width: 100%;
}

.detail_cta_btn {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 62px;
  padding: 0 50px 0 30px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.detail_cta_btn_orange {
  background: linear-gradient(#eb8d6b, #df8666);
}

.detail_cta_btn_yellow {
  background: linear-gradient(#f0c51e, #e4bc1c);
}

.detail_cta_btn_icon {
  width: 28px;
  height: auto;
}

.detail_cta_btn_arrow {
  position: absolute;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
}

.detail_cta_tel {
  color: #333;
}

.detail_cta_tel_num {
  font-size: 4.2rem;
  color: #2e559c;
  line-height: 1.2;
  text-decoration: none;
}

.estate_detail_backbtn {
  padding: 50px 0 40px;
  text-align: center;
}

.estate_backbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 300px;
  height: 60px;
  padding: 0 30px;
  background: #2e559c;
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 900px) {
  .estate_detail_panel {
    padding: 30px 25px 40px;
  }
  .estate_location_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (max-width: 600px) {
  .estate_detail_area {
    padding: 10px 10px 0;
  }
  .estate_detail_panel {
    padding: 25px 15px 35px;
  }
  .estate_detail_sec {
    margin-top: 40px;
  }
  .estate_detail_map {
    aspect-ratio: 4 / 3;
  }
  .estate_location_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 15px;
  }
  .estate_spec_tbl th,
  .estate_spec_tbl td {
    padding: 10px 12px;
  }
  .estate_spec_tbl_4col,
  .estate_spec_tbl_4col tbody,
  .estate_spec_tbl_4col tr,
  .estate_spec_tbl_4col th,
  .estate_spec_tbl_4col td {
    display: block;
    width: 100%;
  }
  .estate_spec_tbl_4col tr {
    border-bottom: 1px solid #e6e6e6;
  }
  .estate_spec_tbl_4col th,
  .estate_spec_tbl_4col td {
    border-bottom: 0;
  }
  .estate_spec_tbl_4col td:empty {
    padding: 0;
  }
  .estate_spec_tbl_2col th {
    width: 30%;
  }
  .detail_cta_banners {
    grid-template-columns: minmax(0, 1fr);
  }
  .detail_cta_btn {
    height: 56px;
    padding: 0 44px 0 20px;
  }
  .detail_cta_tel_num {
    font-size: 3.4rem;
  }
  .estate_backbtn {
    min-width: 0;
    width: 100%;
    height: 54px;
  }
}

/*----------------------------------------
	top advance (予告分譲地)
----------------------------------------*/

.advance_head_icon {
  width: 48px;
}

.advance_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
}

.advance_card {
  position: relative;
  width: calc((100% - 60px) / 3);
  padding-top: 10px;
}

.advance_card_label {
  position: absolute;
  top: 0;
  left: 12px;
  display: flex;
  z-index: 1;
}

.advance_card_body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 30px 25px 35px;
  background: #fff;
}

.advance_card_area {
  color: #2e559c;
}

.advance_card_ttl,
.advance_card_txt {
  color: #333;
}

.advance_card_txt {
  flex-grow: 1;
  width: 100%;
}

.advance_card_txt p {
  line-height: 1.6;
}

.advance_card_btn {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 12px 18px 12px 16px;
  border: 1px solid #d5d5d5;
  color: #333;
  text-decoration: none;
}

@media screen and (max-width: 900px) {
  .advance_card {
    width: calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 600px) {
  .advance_grid {
    gap: 25px;
  }
  .advance_card {
    width: 100%;
    max-width: 420px;
  }
  .advance_card_body {
    padding: 25px 20px 30px;
  }
  .advance_card_btn {
    gap: 20px;
  }
}

/*----------------------------------------
	top latest (最新分譲地情報)
----------------------------------------*/

.latest_head_icon {
  width: 40px;
}

.latest_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
}

.latest_card {
  position: relative;
  width: calc((100% - 60px) / 3);
  padding-top: 10px;
}

.latest_card_link {
  display: block;
  color: #333;
  text-decoration: none;
}

.latest_card_label {
  position: absolute;
  top: 0;
  left: 10px;
  display: flex;
  z-index: 1;
}

.latest_card_pic {
  aspect-ratio: 4 / 3;
  margin-bottom: 15px;
  background: #fff;
}

.latest_card_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.latest_card_lead,
.latest_card_ttl {
  color: #333;
}

.latest_card_address {
  color: #666;
}

.latest_card_price {
  color: #2e559c;
  line-height: 1;
}

.latest_card_price_num {
  font-size: 2.4rem;
}

.latest_card_price_unit {
  font-size: 1.5rem;
}

@media screen and (max-width: 900px) {
  .latest_card {
    width: calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 600px) {
  .latest_grid {
    gap: 25px;
  }
  .latest_card {
    width: 100%;
    max-width: 420px;
  }
  .latest_card_price_num {
    font-size: 2.2rem;
  }
}