@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* =========================
   Font utility
========================= */
.Poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.Cinzel {
  font-family: "Cinzel", serif;
  font-weight: 400;
}

.noto {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
}

.sippo {
  font-family: 'Noto Sans JP', sans-serif;
}

/* =========================
   Base
========================= */
h1, h2, h3, p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8em;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

h1 {
  white-space: nowrap;
}

h2 {
  font-size: 1.6em;
}

h3 {
  font-size: 1.2em;
}

p {
  font-size: 1em;
  margin: auto;
}

.pcell {
  display: table;
  width: 100%;
}

.pcellleft {
  display: table-cell;
  text-align: left;
}

.pcellright {
  display: table-cell;
  text-align: right;
}

.pright {
  text-align: right;
}

.pgreen {
  color: #191;
}

.pcenter {
  text-align: center;
}

.psmall {
  font-size: 80%;
}

.pbig200 {
  font-size: 200%;
}

.pbig150 {
  font-size: 150%;
}

.ptitle {
  letter-spacing: 0.2em;
  font-size: 1.2em;
  font-weight: normal;
  text-align: center;
  color: #fff;
}

.fsize1 {
  font-size: 2em;
}

.fsize2 {
  font-size: 1.8em;
}

.fsize3 {
  font-size: 3em;
}

.fsize4 {
  font-size: 1.3em;
}

.fsize5 {
  font-size: 1.4em;
}

.fcolor1 {
  color: rgba(0, 0, 0, 1);
  z-index: 20;
}

.pwhite {
  color: rgba(255, 255, 255, 1);
  text-align: center;
}

.paddv1 {
  padding-top: 40px;
  padding-bottom: 60px;
}

.pagefooter {
  padding-top: 20px;
  padding-right: 0px;
  padding-bottom: 20px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  background-color: #666666;
}

.articlefooter {
  text-align: center;
}

.pflx {
  text-align: left;
}

.brmb {
  display: block;
}

.brpc {
  display: none;
}

.bw {
  border: thin solid #333;
  padding-right: 1em;
  padding-left: 1em;
  text-align: center;
  color: #333;
  background-color: #fff;
}

@media screen and (min-width: 800px) {
  .brmb {
    display: none;
  }

  .brpc {
    display: block;
  }

  .fsize1 {
    font-size: 2em;
  }

  .pflx {
    text-align: center;
  }
}

/* =========================
   Hero
========================= */
.home .pagetitlezone {
  position: relative;
  width: 100%;
  height: 74vh;
  overflow: hidden;
}

.home .hero-slider {
  position: relative;
  width: 100%;
  height: 74vh;
  display: grid;
  justify-items: center;
  align-items: center;
  overflow: hidden;
  background: #e9eef3;
}

.home .hero-slider__bg {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}

.home .hero-slider__bg.is-current {
  opacity: 1;
}

.home .hero-slider__bg.is-next {
  opacity: 0;
}

.home .hero-slider.is-animating .hero-slider__bg.is-next {
  opacity: 1;
}

.home .hero-slider .logotitle {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.subpage-titlezone {
  position: relative;
  width: 100%;
  height: auto;
  overflow: visible;
}

.subpage-titlezone .logotitle {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

@media screen and (max-width: 799px) {
  .home .pagetitlezone,
  .home .hero-slider {
    height: 100vh;
  }

  .home .hero-slider .logotitle,
  .subpage-titlezone .logotitle {
    top: 10px;
    left: 10px;
  }
}

/* =========================
   Google Map
========================= */
.map_embed iframe {
  width: 100% !important;
  height: 400px !important;
  border: 0;
}

/* =========================
   Estate archive layout
========================= */
.estate-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px 34px;
  align-items: start;
}

.estate-archive-grid > * {
  min-width: 0;
}

@media screen and (max-width: 1100px) {
  .estate-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 24px;
  }
}

@media screen and (max-width: 799px) {
  .estate-archive-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* =========================
   Estate archive card
========================= */
.estatecard-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.estatecard.estatecard--property {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 14px;
}

.estatecard--property .estatecard__thumb {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}

.estatecard--property .estatecard__thumb img,
.estatecard--property .estatecard__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 300 / 233;
  object-fit: cover;
  background: #d9d9d9;
}

.estatecard--property .estatecard__label {
  position: absolute;
  top: 0;
  left: 0;
  background: #00a63c;
  color: #fff;
  padding: 5px 32px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  z-index: 2;
}

.estatecard--property .estatecard__lead {
  font-family: 'Noto Sans JP', sans-serif;
  color: #179a2f;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 8px;
  min-height: 3.2em;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.estatecard--property .estatecard__title {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.estatecard--property .estatecard__meta {
  display: block;
  width: 100%;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.estatecard--property .estatecard__metaRow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.estatecard--property .estatecard__metaRow dt {
  min-width: 44px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  color: #666;
}

.estatecard--property .estatecard__metaRow dd {
  flex: 1;
  margin: 0;
  /*font-size: 14px;*/
  line-height: 1.6;
  word-break: normal;
  overflow-wrap: break-word;
}

.estatecard--property .estatecard__price {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 200;
  line-height: 1.2;
}

@media screen and (max-width: 799px) {
  .estatecard--property .estatecard__label {
    padding: 10px 24px;
    font-size: 22px;
  }

  .estatecard--property .estatecard__lead {
    font-size: 15px;
  }

  .estatecard--property .estatecard__title {
    font-size: 22px;
  }

  .estatecard--property .estatecard__price {
    font-size: 18px;
  }
}

.estate-features {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.estate-features li {
  list-style: none !important;
}

.estate-school-block dd {
  margin-bottom: 12px !important;
}

/* NEWラベル（不動産・NEWS共通） */
.estatecard__thumb {
  position: relative;
}

.estatecard__label {
  position: absolute;
  top: 0;
  left: 0;
  background: #00a63c;
  color: #fff;
  padding: 6px 26px;
  font-size: 14px;
  line-height: 1;
  z-index: 2;
}

/* hidden-formは画面外に飛ばす（表示はしない） */
.cf7c-confirm-page .cf7c-hidden-form {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* 中のフォームも見せない */
.cf7c-confirm-page .cf7c-hidden-form * {
  visibility: hidden !important;
}

/* =========================
   完了ページ
========================= */

.thanks-message-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 10px 0 60px;
}

.thanks-message-main {
  margin: 0 0 18px !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 1.6 !important;
  color: #333 !important;
  text-align: center !important;
}

.thanks-message-sub {
  margin: 0 0 40px !important;
  font-size: 16px !important;
  line-height: 2 !important;
  color: #333 !important;
  text-align: center !important;
}

.thanks-btn-wrap {
  text-align: center !important;
}

p.thanks-back-btn {
  text-align: center !important;
}

p.thanks-back-btn a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 320px !important;
  max-width: 100% !important;
  height: 56px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  border: 1px solid #999 !important;
  background: #fff !important;
  color: #333 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  border-radius: 4px !important;
  box-sizing: border-box !important;
}

@media screen and (max-width: 768px) {
  .thanks-message-wrap {
    padding: 0 0 50px;
  }

  .thanks-message-main {
    font-size: 22px !important;
    line-height: 1.5 !important;
  }

  .thanks-message-sub {
    font-size: 15px !important;
    line-height: 1.9 !important;
    margin-bottom: 32px !important;
  }

  .thanks-back-btn {
  border: 1px solid #5f8f78 !important;
  background: #5f8f78 !important;
  color: #fff !important;
}
}

.cf7c-confirm-page .telcont {
  max-width: 320px !important;
}

.contact-copy {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
  text-align: center;
  line-height: 1.8;
}

/* モデルハウス下のテキスト余白を調整 */
.pcenter {
  margin: 16px !important;
}

/* 必要なら少しだけ余白 */
.pcenter + p {
  margin-top: 4px !important;
  font-size: 16px !important;
}

.page-id-26 p {
  font-size: 0.8em;
}

body.page-id-152 .sectionback {
  min-height: calc(100vh - 300px);
}

body.page-id-120 .sectionback {
  min-height: calc(100vh - 300px);
}

.newsbox p {
  margin: 20px 0;
}