@charset "UTF-8";
/* カラーコード
--------------------------------------------------------------------*/
/* box-shadow
--------------------------------------------------------------------*/
/* ピクセルをremに置き換えて返す関数
--------------------------------------------------------------------*/
/* ブレイクポイント
--------------------------------------------------------------------*/
/* メディアクエリ
--------------------------------------------------------------------*/
/* half-leading
--------------------------------------------------------------------*/
/* フォントファミリー
--------------------------------------------------------------------*/
/* z-index
--------------------------------------------------------------------*/
/* イージング
--------------------------------------------------------------------*/
/* css カスタムプロパティー
--------------------------------------------------------------------*/
:root {
  --header-height: 7rem;
  --row-gap:3.5rem;
  --column-gap:2.5rem;
}
@media (max-width: 87.5rem) {
  :root {
    --header-height: 9rem;
  }
}
@media (max-width: 64rem) {
  :root {
    --header-height: 7rem;
  }
}
@media (max-width: 48rem) {
  :root {
    --header-height: 4rem;
  }
}
@media (max-width: 64rem) {
  :root {
    --row-gap:3rem;
    --column-gap:2rem;
  }
}
@media (max-width: 48rem) {
  :root {
    --row-gap:1.5rem;
    --column-gap:1.5rem;
  }
}

/* シェブロン
--------------------------------------------------------------------*/
/*
使用例:
@include chevron(
    $direction: 'down',     // 方向
    $size: 8,               // 全体の大きさpx (単位なしの数値)
    $thickness: 1.8,          // 線の太さpx (単位なしの数値)
    $color: $color-main       // 色
);
*/
/* 共通--------------------------------------------------------------- */
/* _header.scss -------------------------------------------------- */
h1 {
  margin: 0;
  padding: 0;
}

.header {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}
.header-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #EEEEEE;
  padding: 8px 32px;
}
.header-block .header-sekisui {
  margin: 0;
}
.header-block .header-sekisui img {
  width: 200px;
  height: auto;
}
.header-block .header-gunma {
  margin: 0;
}
.header-block .header-gunma img {
  width: 180px;
  height: auto;
}
.header-property {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 16px 100px;
}
.header-property .header-ttl-text {
  width: 100%;
  height: auto;
}
.header-property .header-ttl-en {
  max-width: 150px;
  width: 100%;
  height: auto;
}
.header-property-logo a {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.header-property-logo a h1 {
  margin: 0;
}
.header .property-contact {
  font-size: 0;
}
.header .property-contact-block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header .property-contact a {
  text-decoration: none;
}
.header .property-contact a.actionBtn01 {
  background-color: #8D1515;
  font-size: 16px;
  padding: 12px 24px;
  border: 1px solid #8D1515;
  display: flex;
  align-items: flex-end;
  min-width: 240px;
  color: #fff;
  border-radius: 4px;
  justify-content: center;
}
.header .property-contact a.actionBtn01 svg {
  margin: -0.2em 8px 0 0;
  width: 20px;
  height: 20px;
  fill: #fff;
}
.header .property-contact a:hover {
  background-color: #fff;
  color: #8D1515;
  border: 1px solid #8D1515;
}
.header .property-contact a:hover svg {
  fill: #8D1515;
}
.header .property-gift {
  display: inline-flex;
  align-items: center;
  background-color: #DBA95B;
  gap: 8px;
  color: #fff;
  font-weight: bold;
  padding: 8px 24px;
  position: relative;
  font-size: 14px;
  line-height: 1.4;
}
.header .property-gift::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 15px;
  height: 100%;
  background-color: #F9FAF6;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.header .property-gift::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #DBA95B;
}
.header .property-floorplan-image {
  width: 26px;
  height: 27px;
}

.nav-float {
  display: flex;
  background-color: #E7EFF3;
  justify-content: center;
  gap: 40px;
  padding-block: 12px;
}
.nav-float ul {
  display: flex;
  gap: 40px;
  list-style-type: none;
}
.nav-float ul li a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
.nav-float ul li a:hover {
  color: #0778a4;
}

/* _footer.scss -------------------------------------------------- */
.footer-main {
  display: block !important;
  text-align: center;
}
.footer-main p {
  margin: 0;
  line-height: 1;
}
.footer-copy {
  color: #aaa;
  font-size: 14px;
  padding: 14px 0;
}
.footer .footer-ttl {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-ttl img {
  max-width: 37.5rem;
}
@media (max-width: 48rem) {
  .footer .footer-ttl img {
    max-width: 18.75rem;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: auto !important;
  color: #000000 !important;
  font-family: "Noto Sans JP", -apple-system-body, blinkMacSystemFont, "Helvetica Neue", Arial, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

main {
  padding-bottom: 80px;
}

ul {
  list-style-type: none;
}

.section_block {
  padding: 80px 0;
}
.section_block.bg_innner {
  background-color: #F9FAF6;
  left: 50%;
  width: calc(100vw - var(--scrollbar-width, 17px));
  margin-left: calc(-50vw + var(--scrollbar-width, 17px) / 2);
  position: relative;
}
.section_block_title {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  line-height: 72px;
}

.inner-block {
  display: block;
  margin: 0 auto;
}
.inner-title {
  margin-top: 120px;
  font-size: 24px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}
.inner-title span {
  color: #28A656;
  font-size: 16px;
}
.inner-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin: 8px auto 0;
  background: linear-gradient(to right, #6bd6cc, #60c3a3);
  border-radius: 2px;
}

.title-block {
  margin: auto;
  padding: 40px;
  text-align: center;
  position: relative;
}
.title-block::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  bottom: 0;
  background-color: #C1C1C1;
  z-index: -1;
}
.title-content {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  margin: 0 !important;
}
.title-content span {
  font-size: 40px;
  color: #E7EFF3;
  font-family: Arial, Helvetica, sans-serif;
}

.outline-table {
  width: 100%;
}
.outline-table th {
  background: #eff0f2;
  color: #1f1f1f;
  text-align: left;
  vertical-align: top;
}

/* カラーコード
--------------------------------------------------------------------*/
/* box-shadow
--------------------------------------------------------------------*/
/* ピクセルをremに置き換えて返す関数
--------------------------------------------------------------------*/
/* ブレイクポイント
--------------------------------------------------------------------*/
/* メディアクエリ
--------------------------------------------------------------------*/
/* half-leading
--------------------------------------------------------------------*/
/* フォントファミリー
--------------------------------------------------------------------*/
/* z-index
--------------------------------------------------------------------*/
/* イージング
--------------------------------------------------------------------*/
/* css カスタムプロパティー
--------------------------------------------------------------------*/
:root {
  --header-height: 7rem;
  --row-gap:3.5rem;
  --column-gap:2.5rem;
}

@media (max-width: 87.5rem) {
  :root {
    --header-height: 9rem;
  }
}
@media (max-width: 64rem) {
  :root {
    --header-height: 7rem;
  }
}
@media (max-width: 48rem) {
  :root {
    --header-height: 4rem;
  }
}
@media (max-width: 64rem) {
  :root {
    --row-gap:3rem;
    --column-gap:2rem;
  }
}
@media (max-width: 48rem) {
  :root {
    --row-gap:1.5rem;
    --column-gap:1.5rem;
  }
}
/* シェブロン
--------------------------------------------------------------------*/
/*
使用例:
@include chevron(
    $direction: 'down',     // 方向
    $size: 8,               // 全体の大きさpx (単位なしの数値)
    $thickness: 1.8,          // 線の太さpx (単位なしの数値)
    $color: $color-main       // 色
);
*/
/* _header.scss -------------------------------------------------- */
.kv {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: auto !important;
}
.kv picture {
  margin: 0;
}
.kv picture img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 24/7;
}
.kv .kv-text {
  color: #fff;
  text-align: right;
  z-index: 1;
  text-align: center;
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
}
.kv .kv-text .kv_total {
  margin: 0 0 0 16px;
}
.kv .kv-text .kv_phase {
  border-bottom: solid 2px #fff;
  border-top: solid 2px #fff;
  padding: 16px 0;
  margin: 0;
}
.kv_box {
  flex: 1;
  background: white;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  text-align: center;
  box-sizing: border-box;
  font-weight: 600;
}
.kv_box_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: -50px auto 0;
  z-index: 2;
  gap: 32px;
}
.kv_box_text {
  text-align: center;
  padding: 32px 16px;
  margin: 0;
}
.kv_box_text span {
  font-size: 18px;
  color: #8F7646;
  font-weight: 600;
}

.anniversary_img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.anniversary_img img {
  max-width: 75rem;
  width: 100%;
}
@media (min-width: 64rem) {
  .anniversary_img img {
    max-width: 62.5rem;
  }
}
@media (max-width: 48rem) {
  .anniversary_img img {
    max-width: 100%;
  }
}
.anniversary_img_block .anniversary_img {
  margin: 72px auto 0;
  text-align: center;
}
.anniversary_img_block .anniversary_img img {
  width: 800px;
  height: auto;
}

.smartheim_flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.smartheim_title {
  text-align: center;
  margin: 0;
}
.smartheim_title img {
  width: auto;
  height: auto;
}
.smartheim_text {
  text-align: center;
  margin-top: 32px;
  line-height: 1.6;
}
.smartheim_detail {
  flex: 0.5;
  padding: 0 120px 0 80px;
}
.smartheim_detail_img {
  margin: 32px 0 0;
}
.smartheim_detail_img img {
  width: 100%;
  height: auto;
}
.smartheim_img {
  margin: 0;
}
.smartheim_img_block {
  flex: 1;
}
.smartheim_img_block .smartheim_img img {
  width: 100%;
  height: auto;
}

.estate_flexd {
  position: fixed;
  top: 150px;
  right: 0;
  background-color: #2A4958;
  padding: 16px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.estate_flexd_title {
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin: 0 0 12px 0;
  font-weight: bold;
}
.estate_flexd_buttom {
  display: flex;
  gap: 10px;
}
.estate_flexd_buttom .estate-button {
  background-color: #fff;
  border: none;
  width: 120px;
  padding: 12px;
  font-size: 16px;
  color: #000;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  font-weight: bold;
}
.estate_flexd_buttom .estate-button::after {
  content: "›";
  position: absolute;
  right: 10px;
  color: #8D1515;
}
.estate_flexd_buttom .estate-button:hover {
  text-decoration: none;
  color: #0778a4;
}

.contents_flex {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
}
.contents_flex .flex_img {
  flex: 1;
  text-align: center;
}
.contents_flex.flex_left {
  flex-direction: row;
  margin-top: 40px;
}
.contents_flex .contents_detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 48rem) {
  .contents_flex .contents_detail {
    gap: 0.5rem;
  }
}
.contents_flex .contents_detail .caption {
  font-size: 12px;
  color: #76797e;
}
.contents_flex .contents_detail_title {
  font-size: 1.3rem;
  color: #000;
  text-align: center;
}
.contents_title {
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  color: #000;
  margin-bottom: 48px;
}
.contents_column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 56px;
  gap: 1rem;
}
.contents_column_img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contents_column_img img {
  max-width: 600px;
}
@media (min-width: 64rem) {
  .contents_column_img img {
    max-width: 450px;
  }
}
@media (max-width: 48rem) {
  .contents_column_img img {
    max-width: 100%;
  }
}
.contents_column .caption {
  font-size: 12px;
  color: #76797e;
}

/* _header.scss -------------------------------------------------- */
.estate-information {
  display: flex;
  gap: 80px;
  padding: 72px 0;
}
.estate-content {
  flex: 1;
}
.estate-sale {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  border-top: solid 2px #8D1515;
  border-bottom: solid 2px #8D1515;
  width: 50%;
  padding: 16px 0;
}
.estate-all {
  font-size: 32px;
  font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
  color: #8D1515;
  margin-block-end: 0;
}
.estate-all span {
  font-size: 60px;
}
.estate-image {
  position: relative;
}
.estate-image img {
  width: 100%;
  height: auto;
}
.estate-image-caption {
  text-align: right;
  font-size: 14px;
}
.estate-image svg {
  position: absolute;
  right: 0;
  top: 85%;
  width: 30px;
  height: 30px;
}
.estate-image-inner {
  cursor: pointer;
  max-width: 600px;
  position: relative;
  margin: auto;
  overflow: hidden;
}
.estate-image-box {
  z-index: 1;
}

.estate-image-base-item .estate-image-base-item {
  cursor: grab;
  transition: transform 0.3s;
  user-select: none;
}

.estate-image-base-item {
  cursor: zoom-in;
}

.estate-image-base-item.dragging {
  cursor: grabbing;
}

/* _header.scss -------------------------------------------------- */
.location_block {
  padding: 80px 0;
}
.location_title {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  line-height: 72px;
  font-family: "Yu Mincho", "游明朝", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
}
.location_text {
  margin: auto;
  font-size: 16px;
  width: 80%;
}
.location_img {
  text-align: center;
  margin-top: 16px;
}
.location_img img {
  width: 80%;
  height: auto;
}
.location_map {
  margin-top: 72px;
  text-align: center;
}
.location_map .location-googlemap-link {
  font-size: 16px;
}
.location_map .location-googlemap-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 30px;
  border: 1px solid #ccc;
  font-size: 16px;
  max-width: 320px;
  height: 64px;
  margin: 0 auto;
  color: #202020;
}
.location_map .location-googlemap-link a svg {
  fill: #5587B3;
  margin: -0.2em 8px 0 0;
  width: 20px;
  height: 20px;
}

.access_block {
  background-color: #EDE5D3;
  padding: 72px 720px;
  position: relative;
  margin: 0 -720px;
}
.access_title {
  font-size: 24px;
  text-align: center;
}
.access_img {
  background-color: #fff;
  padding: 32px 24px;
  margin: 0;
  flex: 1;
}
.access_img_block {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin: auto;
  width: 1200px;
}
.access_img img {
  width: 100%;
}

.amenity_block {
  padding: 80px 0;
}
.amenity_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 56px 32px;
  margin-top: 72px;
}
.amenity_list li figure {
  margin: 0;
}
.amenity_list li figure figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.amenity_list li figure figcaption p {
  margin: 0;
  font-size: 14px;
  color: #747474;
}
.amenity_detail .title {
  font-weight: bold;
  margin: 18px 0 0 0;
}
.amenity_detail .text {
  margin: 16px 0 0;
  font-size: 14px;
}

/* _header.scss -------------------------------------------------- */
.sekisuiheim_kv {
  position: relative;
}
.sekisuiheim_kv img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
}
.sekisuiheim_kv p {
  margin: 0;
}
.sekisuiheim_kv p.kv_title {
  position: absolute;
  text-align: center;
  font-size: 40px;
  color: #fff;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}
.sekisuiheim_contents_menu {
  margin: -4vw auto;
  position: relative;
  z-index: 1;
  width: 90%;
  height: auto;
}
.sekisuiheim_contents_menu_block {
  display: flex;
  background-color: #fff;
  border: 1px solid #E1E1E1;
  justify-content: space-around;
  padding: 32px 0;
  border-radius: 4px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}
.sekisuiheim_contents_list {
  text-align: center;
  position: relative;
  flex: 1;
}
.sekisuiheim_contents_list a {
  color: #000 !important;
}
.sekisuiheim_contents_list a:hover {
  text-decoration: none;
  opacity: 0.6;
}
.sekisuiheim_contents_list:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background-color: #E5E5E5;
}
.sekisuiheim_contents_list_img {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.sekisuiheim_contents_list_img span {
  color: #28A656;
}
.sekisuiheim_contents_list_img img {
  width: 45px;
  height: 45px;
}
.sekisuiheim_contents_list_button {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 16px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}
.sekisuiheim_contents_list_button::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-left: 2px solid #28A656;
  border-bottom: 2px solid #28A656;
  transform: rotate(315deg);
}
.sekisuiheim_smart_block {
  margin-top: 120px;
}
.sekisuiheim_smart_block .smart_title {
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  margin-top: 80px;
}
.sekisuiheim_smart_block .smart_text {
  margin-top: 32px;
  line-height: 2;
  text-align: center;
}
.sekisuiheim_smart_system .smart_flex_block {
  display: flex;
  gap: 32px;
}
.sekisuiheim_smart_system .smart_flex_item {
  flex: 1;
}
.sekisuiheim_smart_system .smart_flex_item_title {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}
.sekisuiheim_smart_system .smart_flex_item_img img {
  width: 100%;
  height: auto;
}
.sekisuiheim_smart_system .smart_flex_item_text {
  margin: 16px 0 0 0;
}
.sekisuiheim_resilience_block {
  background-color: #F9FAF6;
  padding: 80px 720px;
  position: relative;
  margin: 120px -720px 0;
}
.sekisuiheim_resilience_block .inner-title {
  margin: 0;
}
.sekisuiheim_resilience_block .resilience_intro {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin: 72px 0 0 0;
  color: #000;
}
.sekisuiheim_resilience_block .resilience_text {
  text-align: center;
  margin-top: 16px;
}
.sekisuiheim_resilience_system {
  margin: 72px auto 0;
  width: 1200px;
}
.sekisuiheim_resilience_system .resilience_system_item {
  display: flex;
}
.sekisuiheim_resilience_system .resilience_system_item:nth-of-type(2) {
  flex-direction: row-reverse;
  margin-top: 90px;
}
.sekisuiheim_resilience_system .resilience_system_item .left {
  margin-left: calc((1200px - 100vw) / 2);
}
@media screen and (min-width: 769px) and (max-width: 1240px) {
  .sekisuiheim_resilience_system .resilience_system_item .left {
    left: 0;
    margin-left: -20px;
  }
}
.sekisuiheim_resilience_system .resilience_system_item .right {
  margin-right: calc((1200px - 100vw) / 2);
}
@media screen and (min-width: 769px) and (max-width: 1240px) {
  .sekisuiheim_resilience_system .resilience_system_item .right {
    left: 0;
    margin-right: -20px;
  }
}
.sekisuiheim_resilience_system .resilience_system_img {
  position: relative;
}
@media (min-width: 1500px) {
  .sekisuiheim_resilience_system .resilience_system_img {
    width: max(956px, 100%);
    height: auto;
  }
}
.sekisuiheim_resilience_system .resilience_system_img img {
  max-width: none;
  width: 100%;
}
@media (min-width: 1500px) {
  .sekisuiheim_resilience_system .resilience_system_img img {
    width: 100%;
    height: auto;
  }
}
.sekisuiheim_resilience_system .resilience_system_detail {
  margin: auto 0;
}
.sekisuiheim_resilience_system .resilience_system_detail .title {
  font-size: 32px;
}
.sekisuiheim_resilience_system .resilience_system_detail .text {
  margin: 16px 0;
}
.sekisuiheim_provision {
  background-color: #fff;
  max-width: 1200px;
  padding: 64px 56px 40px;
  margin: 40px auto 0;
}
.sekisuiheim_provision .provision_title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.sekisuiheim_provision .provision_flex {
  display: flex;
  gap: 64px;
  align-items: center;
}
.sekisuiheim_provision .provision_detail {
  flex: 1;
}
.sekisuiheim_provision .provision_img {
  flex: 1;
}
.sekisuiheim_provision .provision_img img {
  width: 100%;
  height: auto;
}
.sekisuiheim_provision .provision_intro img {
  width: 500px;
  height: auto;
}
.sekisuiheim_support_after_img {
  width: 800px;
  height: auto;
}
.sekisuiheim_support_block {
  padding: 80px 0 0 0;
}
.sekisuiheim_support_block .comment {
  margin-top: 24px;
}
.sekisuiheim_support_block .support_intro {
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  margin: 72px 0 0 0;
}
.sekisuiheim_support_block .support_text {
  text-align: center;
  margin-top: 16px;
}
.sekisuiheim_support_block .support_img {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sekisuiheim_support_block .support_img .provision_img {
  text-align: center;
}
.sekisuiheim_support_block .support_img .provision_img img {
  width: 100%;
  height: auto;
}
.sekisuiheim_support_block .support_system_title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
.sekisuiheim_support_block .support_system_text {
  margin: 0;
}
.sekisuiheim_support_block .owner_support {
  background-color: #F1F4F3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 56px;
  padding: 24px 32px;
}
.sekisuiheim_support_block .owner_support_img img {
  width: 300px;
  height: auto;
}

span.ann {
  font-size: 0.75em;
  vertical-align: super;
}

.comment {
  font-size: 12px;
  margin: 8px 0 0 0;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.comment:first-of-type {
  margin-top: 24px;
}
.comment span {
  flex-shrink: 0;
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* dialog */
/* ============================================ */
:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

/* カラーコード
--------------------------------------------------------------------*/
/* box-shadow
--------------------------------------------------------------------*/
/* ピクセルをremに置き換えて返す関数
--------------------------------------------------------------------*/
/* ブレイクポイント
--------------------------------------------------------------------*/
/* メディアクエリ
--------------------------------------------------------------------*/
/* half-leading
--------------------------------------------------------------------*/
/* フォントファミリー
--------------------------------------------------------------------*/
/* z-index
--------------------------------------------------------------------*/
/* イージング
--------------------------------------------------------------------*/
/* css カスタムプロパティー
--------------------------------------------------------------------*/
:root {
  --header-height: 7rem;
  --row-gap:3.5rem;
  --column-gap:2.5rem;
}

@media (max-width: 87.5rem) {
  :root {
    --header-height: 9rem;
  }
}
@media (max-width: 64rem) {
  :root {
    --header-height: 7rem;
  }
}
@media (max-width: 48rem) {
  :root {
    --header-height: 4rem;
  }
}
@media (max-width: 64rem) {
  :root {
    --row-gap:3rem;
    --column-gap:2rem;
  }
}
@media (max-width: 48rem) {
  :root {
    --row-gap:1.5rem;
    --column-gap:1.5rem;
  }
}
/* シェブロン
--------------------------------------------------------------------*/
/*
使用例:
@include chevron(
    $direction: 'down',     // 方向
    $size: 8,               // 全体の大きさpx (単位なしの数値)
    $thickness: 1.8,          // 線の太さpx (単位なしの数値)
    $color: $color-main       // 色
);
*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

::selection {
  text-shadow: none;
}

body {
  width: 100%;
  background: #F4F6FA;
  color: #262A2E;
  font-family: "Noto Sans JP", -apple-system-body, blinkMacSystemFont, "Helvetica Neue", Arial, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.84;
  font-size: 1rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-east-asian: proportional-width;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-rendering: optimizelegibility;
}
@media (max-width: 48rem) {
  body {
    font-size: 0.875rem;
  }
}

body.is-scroll-locked {
  overflow: hidden;
}

input, select, textarea {
  font-size: 1rem;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

dt {
  font-weight: inherit;
}

em {
  font-style: normal;
}

@media (pointer: fine) {
  ::-webkit-scrollbar, ::-webkit-scrollbar-corner {
    background: transparent;
    height: 12px;
    width: 12px;
  }
  ::-webkit-scrollbar-button {
    height: 0;
    width: 0;
  }
  ::-webkit-scrollbar-thumb {
    background: content-box #ACB4BF;
    border: 2px solid transparent;
    border-radius: 624.9375rem;
    min-height: 48px;
    min-width: 48px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: content-box #707c8a;
  }
}
/* カラーコード
--------------------------------------------------------------------*/
/* box-shadow
--------------------------------------------------------------------*/
/* ピクセルをremに置き換えて返す関数
--------------------------------------------------------------------*/
/* ブレイクポイント
--------------------------------------------------------------------*/
/* メディアクエリ
--------------------------------------------------------------------*/
/* half-leading
--------------------------------------------------------------------*/
/* フォントファミリー
--------------------------------------------------------------------*/
/* z-index
--------------------------------------------------------------------*/
/* イージング
--------------------------------------------------------------------*/
/* css カスタムプロパティー
--------------------------------------------------------------------*/
:root {
  --header-height: 7rem;
  --row-gap:3.5rem;
  --column-gap:2.5rem;
}

@media (max-width: 87.5rem) {
  :root {
    --header-height: 9rem;
  }
}
@media (max-width: 64rem) {
  :root {
    --header-height: 7rem;
  }
}
@media (max-width: 48rem) {
  :root {
    --header-height: 4rem;
  }
}
@media (max-width: 64rem) {
  :root {
    --row-gap:3rem;
    --column-gap:2rem;
  }
}
@media (max-width: 48rem) {
  :root {
    --row-gap:1.5rem;
    --column-gap:1.5rem;
  }
}
/* シェブロン
--------------------------------------------------------------------*/
/*
使用例:
@include chevron(
    $direction: 'down',     // 方向
    $size: 8,               // 全体の大きさpx (単位なしの数値)
    $thickness: 1.8,          // 線の太さpx (単位なしの数値)
    $color: $color-main       // 色
);
*/
/* cmn-container
--------------------------------------------------------------------*/
.cmn-container, .cmn-container--large {
  padding: 5rem 0;
  overflow-x: hidden;
  position: relative;
  background-color: #F4F6FA;
}
@media (max-width: 48rem) {
  .cmn-container, .cmn-container--large {
    padding: 3rem 0;
  }
}
@media (max-width: 48rem) {
  .cmn-container--narrow {
    padding: 2.75rem 0;
  }
}
@media (max-width: 48rem) {
  .cmn-container--narrow + .cmn-container:not(.cmn-container--narrow), .cmn-container--narrow + .cmn-container--large:not(.cmn-container--narrow) {
    padding-top: 3.25rem;
  }
}
.cmn-container--narrow + .cmn-container-colored {
  margin-top: 5rem;
}
@media (max-width: 48rem) {
  .cmn-container--narrow + .cmn-container-colored {
    margin-top: 2.75rem;
  }
}
@media (max-width: 48rem) {
  .cmn-container:not(.cmn-container--narrow) + .cmn-container--narrow, .cmn-container--large:not(.cmn-container--narrow) + .cmn-container--narrow {
    padding-top: 2.5rem;
  }
}
.cmn-container:not(.cmn-container--narrow) + .cmn-container-colored, .cmn-container--large:not(.cmn-container--narrow) + .cmn-container-colored {
  margin-top: 5rem;
}
@media (max-width: 48rem) {
  .cmn-container:not(.cmn-container--narrow) + .cmn-container-colored, .cmn-container--large:not(.cmn-container--narrow) + .cmn-container-colored {
    margin-top: 3rem;
  }
}
@media (max-width: 48rem) {
  .cmn-container:has(.calendar), .cmn-container--large:has(.calendar) {
    overflow-x: visible;
  }
}
.cmn-container--clip {
  overflow-x: clip;
}
.cmn-container--large {
  padding: 7.5rem 0;
}
@media (max-width: 64rem) {
  .cmn-container--large {
    padding: 5.5rem 0;
  }
}
@media (max-width: 48rem) {
  .cmn-container--large {
    padding: 3.75rem 0;
  }
}
.cmn-container .cmn-container + .cmn-container--large, .cmn-container--large .cmn-container + .cmn-container--large, .cmn-container .cmn-container--large + .cmn-container--large, .cmn-container--large .cmn-container--large + .cmn-container--large {
  padding-top: 5rem;
}
@media (max-width: 64rem) {
  .cmn-container .cmn-container + .cmn-container--large, .cmn-container--large .cmn-container + .cmn-container--large, .cmn-container .cmn-container--large + .cmn-container--large, .cmn-container--large .cmn-container--large + .cmn-container--large {
    padding-top: 4rem;
  }
}
@media (max-width: 48rem) {
  .cmn-container .cmn-container + .cmn-container--large, .cmn-container--large .cmn-container + .cmn-container--large, .cmn-container .cmn-container--large + .cmn-container--large, .cmn-container--large .cmn-container--large + .cmn-container--large {
    padding-top: 3rem;
  }
}

.cmn-page-head01 + .cmn-container, .cmn-page-head01 + .cmn-container--large {
  padding-top: 8rem;
}
@media (max-width: 48rem) {
  .cmn-page-head01 + .cmn-container, .cmn-page-head01 + .cmn-container--large {
    padding-top: 5.5rem;
  }
}

.cmn-page-head02 + .cmn-container, .cmn-page-head02 + .cmn-container--large {
  padding-top: 6.5rem;
}
@media (max-width: 48rem) {
  .cmn-page-head02 + .cmn-container, .cmn-page-head02 + .cmn-container--large {
    padding-top: 4rem;
  }
}

.cmn-page-head03 + .cmn-container, .cmn-page-head03 + .cmn-container--large {
  padding-top: 4.5rem;
}
@media (max-width: 48rem) {
  .cmn-page-head03 + .cmn-container, .cmn-page-head03 + .cmn-container--large {
    padding-top: 3rem;
  }
}

.cmn-container-colored {
  padding: 10rem 0;
  overflow-x: hidden;
  position: relative;
}
@media (max-width: 48rem) {
  .cmn-container-colored {
    padding: 5.5rem 0;
  }
}
.cmn-container-colored + .cmn-container, .cmn-container-colored + .cmn-container--large {
  padding-top: 10rem;
}
@media (max-width: 48rem) {
  .cmn-container-colored + .cmn-container, .cmn-container-colored + .cmn-container--large {
    padding-top: 6rem;
  }
}
.cmn-container-colored + .cmn-container--narrow {
  padding-top: 10rem;
}
@media (max-width: 48rem) {
  .cmn-container-colored + .cmn-container--narrow {
    padding-top: 5.5rem;
  }
}
.cmn-container-colored--white {
  background-color: #ffffff;
}
.cmn-container-colored--white + .cmn-container-colored--white {
  padding-top: unset;
}
.cmn-container-colored--gray {
  background-color: #EDF1F7;
}
.cmn-container-colored--gray + .cmn-container-colored--gray {
  padding-top: unset;
}

main > .cmn-container:last-child, main > .cmn-container--large:last-child,
main > .cmn-container-colored:last-child {
  padding-bottom: 10rem !important;
}
@media (max-width: 48rem) {
  main > .cmn-container:last-child, main > .cmn-container--large:last-child,
  main > .cmn-container-colored:last-child {
    padding-bottom: 5rem !important;
  }
}

/* cmn-inner
--------------------------------------------------------------------*/
.cmn-inner, .cmn-inner--narrow, .cmn-inner--medium {
  width: calc(100% - 2rem);
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
}
.cmn-inner--medium {
  max-width: 62.5rem;
}
/* cmn-sheet
--------------------------------------------------------------------*/
@media (max-width: 48rem) {
  .cmn-sheet {
    width: 100%;
    box-sizing: content-box;
    border-radius: 0.25rem;
  }
}
.cmn-sheet__inner {
  background-color: #ffffff;
  border-radius: 0.25rem;
  padding: 4rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 48rem) {
  .cmn-sheet__inner {
    overflow: hidden;
    padding: 1.5rem 1.5rem 3rem 1.5rem;
  }
}
.cmn-sheet .cmn-button__wrap {
  margin-block-start: 4.5rem;
}

/* cmn-grid
--------------------------------------------------------------------*/
.cmn-grid {
  display: flex;
}
@media (max-width: 48rem) {
  .cmn-grid {
    flex-direction: column;
  }
}
.cmn-grid__container {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
@media (max-width: 48rem) {
  .cmn-grid__container {
    gap: 1rem;
  }
}
.cmn-grid__content {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(18.75rem, 1fr));
  gap: 3.5rem 2.5rem;
}
@media (max-width: 64rem) {
  .cmn-grid__content {
    grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
  }
}
@media (max-width: 30rem) {
  .cmn-grid__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.cmn-grid__content:has(.mdl-card-image--horizontal, .mdl-card-image--horizontal02) {
  gap: 2.5rem;
}
@media (max-width: 64rem) {
  .cmn-grid__content:has(.mdl-card-image--horizontal, .mdl-card-image--horizontal02) {
    gap: 2rem;
  }
}
@media (max-width: 48rem) {
  .cmn-grid__content:has(.mdl-card-image--horizontal, .mdl-card-image--horizontal02) {
    gap: 1.5rem;
  }
}
@media (max-width: 40rem) {
  .cmn-grid__content:has(.mdl-card-image--horizontal, .mdl-card-image--horizontal02) {
    gap: 1rem;
  }
}
.cmn-grid__content:has([class^=mdl-lineup-list__]) {
  gap: 4.5rem 2.5rem;
}
@media (max-width: 48rem) {
  .cmn-grid__content:has([class^=mdl-lineup-list__]) {
    gap: 3rem;
  }
}
.cmn-grid__content:has(.mdl-menu-item) {
  gap: 0 2.5rem;
  align-items: stretch;
}

/* cmn-list
--------------------------------------------------------------------*/
.cmn-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--row-gap) var(--column-gap);
}
.cmn-list--4col > * {
  width: calc((100% - var(--column-gap) * 3) / 4);
}
@media (max-width: 80rem) {
  .cmn-list--4col > * {
    width: calc((100% - var(--column-gap) * 2) / 3);
  }
}
@media (max-width: 64rem) {
  .cmn-list--4col > * {
    width: calc((100% - var(--column-gap)) / 2);
  }
}
@media (max-width: 40rem) {
  .cmn-list--4col > * {
    width: 100%;
  }
}
.cmn-list--3col > * {
  width: calc((100% - var(--column-gap) * 2) / 3);
}
@media (max-width: 64rem) {
  .cmn-list--3col > * {
    width: calc((100% - var(--column-gap)) / 2);
  }
}
@media (max-width: 40rem) {
  .cmn-list--3col > * {
    width: 100%;
  }
}
.cmn-list--2col > * {
  width: calc((100% - var(--column-gap)) / 2);
}
@media (max-width: 40rem) {
  .cmn-list--2col > * {
    width: 100%;
  }
}

/* cmn-image-container
--------------------------------------------------------------------*/
.cmn-image-container {
  aspect-ratio: 1200/340;
}
@media (max-width: 48rem) {
  .cmn-image-container {
    aspect-ratio: 343/147;
  }
}
.cmn-image-container img {
  border-radius: 0.25rem;
  height: 100%;
  object-fit: cover;
}

/* cmn-triangle-down
--------------------------------------------------------------------*/
.cmn-triangle-down {
  position: relative;
}
.cmn-triangle-down::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  inset: 0;
  aspect-ratio: 1920/140;
  max-height: 5rem;
}
@media (max-width: 48rem) {
  .cmn-triangle-down::before {
    aspect-ratio: 375/71;
    max-height: 3.75rem;
  }
}
.cmn-triangle-down--white::before {
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.cmn-triangle-down--base::before {
  background: #F4F6FA;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

/* cmn-fv-local-nav
--------------------------------------------------------------------*/
.cmn-fv-local-nav {
  padding: 7rem 0 7.5rem;
  overflow-x: hidden;
  position: relative;
}
@media (max-width: 48rem) {
  .cmn-fv-local-nav {
    padding: 3.75rem 0;
  }
}

/* PC---------------------------------------------------------------- */
@media print, screen and (min-width: 769px) {
  /* _header.scss -------------------------------------------------- */
  .header-logo {
    padding: 0;
  }
  .header-property.is-fixed {
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1100;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
  }
  .nav-float.is-fixed {
    position: fixed;
    width: 100vw;
    z-index: 1100;
    background: #E7EFF3;
    top: 0;
    border-top: 1px solid #c0c1c5;
  }
  .nav-float {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  /* _footer.scss -------------------------------------------------- */
  .pcNon {
    display: none !important;
  }
  .inner-block {
    width: 1200px;
    margin-top: 5rem;
  }
  .outline-table {
    margin: 48px auto 0;
  }
  .outline-table tr:not(:first-child) {
    border-top: 8px solid #fff;
  }
  .outline-table th {
    padding: 16px;
  }
  .outline-table td {
    padding: 16px 0 16px 16px;
  }
  /* カラーコード
  --------------------------------------------------------------------*/
  /* box-shadow
  --------------------------------------------------------------------*/
  /* ピクセルをremに置き換えて返す関数
  --------------------------------------------------------------------*/
  /* ブレイクポイント
  --------------------------------------------------------------------*/
  /* メディアクエリ
  --------------------------------------------------------------------*/
  /* half-leading
  --------------------------------------------------------------------*/
  /* フォントファミリー
  --------------------------------------------------------------------*/
  /* z-index
  --------------------------------------------------------------------*/
  /* イージング
  --------------------------------------------------------------------*/
  /* css カスタムプロパティー
  --------------------------------------------------------------------*/
  :root {
    --header-height: 7rem;
    --row-gap:3.5rem;
    --column-gap:2.5rem;
  }
  /* シェブロン
  --------------------------------------------------------------------*/
  /*
  使用例:
  @include chevron(
      $direction: 'down',     // 方向
      $size: 8,               // 全体の大きさpx (単位なしの数値)
      $thickness: 1.8,          // 線の太さpx (単位なしの数値)
      $color: $color-main       // 色
  );
  */
  /* _header.scss -------------------------------------------------- */
  /* _header.scss -------------------------------------------------- */
  /* _header.scss -------------------------------------------------- */
  /* _header.scss -------------------------------------------------- */
}
@media print and (max-width: 87.5rem), screen and (min-width: 769px) and (max-width: 87.5rem) {
  :root {
    --header-height: 9rem;
  }
}
@media print and (max-width: 64rem), screen and (min-width: 769px) and (max-width: 64rem) {
  :root {
    --header-height: 7rem;
  }
}
@media print and (max-width: 48rem), screen and (min-width: 769px) and (max-width: 48rem) {
  :root {
    --header-height: 4rem;
  }
}
@media print and (max-width: 64rem), screen and (min-width: 769px) and (max-width: 64rem) {
  :root {
    --row-gap:3rem;
    --column-gap:2rem;
  }
}
@media print and (max-width: 48rem), screen and (min-width: 769px) and (max-width: 48rem) {
  :root {
    --row-gap:1.5rem;
    --column-gap:1.5rem;
  }
}
@media print, screen and (min-width: 769px) {
  .kv {
    margin-top: 50px;
  }
  .kv .kv-text {
    position: absolute;
    font-size: 32px;
    top: 5%;
    right: 15%;
  }
  .kv .kv-text .kv_total span {
    font-size: 72px;
  }
  .contents_block {
    margin: 72px auto 0;
  }
  .contents_flex {
    gap: 24px;
  }
  .contents_flex .flex_img {
    flex: 1;
    text-align: center;
  }
  .contents_flex .flex_img img {
    width: 100%;
    height: auto;
  }
  .contents_flex .contents_detail .caption {
    margin-top: 24px;
  }
  .contents_column {
    text-align: center;
  }
  .contents_column .caption {
    text-align: center;
  }
  .mgt0 {
    margin-top: 0;
  }
  .sekisuiheim_resilience_system .resilience_system_item {
    gap: 56px;
  }
  .sekisuiheim_resilience_system .resilience_system_detail {
    width: 48%;
  }
  .sekisuiheim_kv {
    margin: 0 -720px;
  }
  #smart, #resilience, #support {
    scroll-margin-top: 220px;
  }
}
/* SP---------------------------------------------------------------- */
@media screen and (min-width: 0px) and (max-width: 768px) {
  /* _header.scss -------------------------------------------------- */
  header {
    z-index: 200;
  }
  .header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
  }
  .header {
    max-width: 100%;
  }
  .header-logo {
    padding: 0;
  }
  .header-block {
    padding: 8px;
  }
  .header-block .header-sekisui img {
    max-width: 100%;
    width: 160px;
    height: auto;
  }
  .header-block .header-gunma img {
    max-width: 100%;
    width: 140px;
    height: auto;
  }
  .header-property {
    padding: 12px 16px 12px 8px;
    align-items: center;
  }
  .header-property-logo a {
    flex-direction: column-reverse;
    gap: 8px;
  }
  .header-property-logo p {
    margin: 0;
  }
  .header-property-logo h1 {
    font-size: 0;
  }
  .header-property .header-ttl-text {
    width: calc(100% - 30px);
    height: auto;
    max-width: 100%;
  }
  .header-property h1 {
    margin: 0 !important;
  }
  .hamburger {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  .hamburger span, .hamburger span::before, .hamburger span::after {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #000;
    transition: all 0.3s ease;
    content: "";
    left: 0;
    border-radius: 2px;
  }
  .hamburger span {
    top: 50%;
    transform: translateY(-50%);
  }
  .hamburger span::before {
    top: -10px;
  }
  .hamburger span::after {
    bottom: -10px;
  }
  .hamburger.active span {
    background-color: transparent;
  }
  .hamburger.active span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .hamburger.active span::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
  .nav-float {
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    border-top: 1px solid #ccc;
  }
  .nav-float ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .nav-float ul li {
    border-bottom: 1px solid #fff;
    background-color: #E7EFF3;
  }
  .nav-float ul li a {
    display: block;
    padding: 16px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  .nav-float.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    border-top: 1px solid #ccc;
  }
  .nav-float-list li .hamburger.active span {
    background-color: transparent;
  }
  .header-fixed-bottom {
    background: #fff;
    padding: 24px 12px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    z-index: 20;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .fixed-btn-wrap {
    display: flex;
    gap: 8px;
  }
  .fixed-btn {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    min-width: 0;
    gap: 8px;
  }
  a.fixed-btn {
    color: #fff !important;
  }
  .btn-blue {
    background-color: #2A4958;
  }
  .btn-red {
    background-color: #8D1515;
  }
  .btn-large {
    flex: 2.5;
  }
  .fixed-btn .icon {
    width: 20px;
    height: 20px;
    fill: #fff;
  }
  .gift-ribbon {
    position: absolute;
    top: -33px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4a754;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 4px;
    white-space: nowrap;
    clip-path: polygon(0% 0%, 5% 50%, 0% 100%, 100% 100%, 95% 50%, 100% 0%);
  }
  /* _footer.scss -------------------------------------------------- */
  .footer {
    margin-bottom: 8rem;
  }
  .spNon {
    display: none !important;
  }
  main {
    padding-bottom: 40px;
  }
  .inner-block {
    max-width: 100%;
    padding: 0 8px;
    margin-top: 6rem;
  }
  .inner-title {
    margin-top: 32px;
  }
  .title-block {
    margin: auto;
    padding: 20px;
    text-align: center;
    position: relative;
  }
  .title-block::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    bottom: 0;
    background-color: #C1C1C1;
    z-index: -1;
  }
  .title-content {
    display: flex;
    flex-direction: column;
    font-size: 24px;
  }
  .title-content span {
    font-size: 24px;
    color: #E7EFF3;
    font-family: Arial, Helvetica, sans-serif;
  }
  .outline-table colgroup {
    display: none;
  }
  .outline-table th, .outline-table td {
    display: block;
    padding: 8px;
  }
  /* カラーコード
  --------------------------------------------------------------------*/
  /* box-shadow
  --------------------------------------------------------------------*/
  /* ピクセルをremに置き換えて返す関数
  --------------------------------------------------------------------*/
  /* ブレイクポイント
  --------------------------------------------------------------------*/
  /* メディアクエリ
  --------------------------------------------------------------------*/
  /* half-leading
  --------------------------------------------------------------------*/
  /* フォントファミリー
  --------------------------------------------------------------------*/
  /* z-index
  --------------------------------------------------------------------*/
  /* イージング
  --------------------------------------------------------------------*/
  /* css カスタムプロパティー
  --------------------------------------------------------------------*/
  :root {
    --header-height: 7rem;
    --row-gap:3.5rem;
    --column-gap:2.5rem;
  }
  /* シェブロン
  --------------------------------------------------------------------*/
  /*
  使用例:
  @include chevron(
      $direction: 'down',     // 方向
      $size: 8,               // 全体の大きさpx (単位なしの数値)
      $thickness: 1.8,          // 線の太さpx (単位なしの数値)
      $color: $color-main       // 色
  );
  */
  /* _header.scss -------------------------------------------------- */
  /* _header.scss -------------------------------------------------- */
  /* _header.scss -------------------------------------------------- */
  /* _header.scss -------------------------------------------------- */
}
@media screen and (min-width: 0px) and (max-width: 768px) and (max-width: 87.5rem) {
  :root {
    --header-height: 9rem;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) and (max-width: 64rem) {
  :root {
    --header-height: 7rem;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) and (max-width: 48rem) {
  :root {
    --header-height: 4rem;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) and (max-width: 64rem) {
  :root {
    --row-gap:3rem;
    --column-gap:2rem;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) and (max-width: 48rem) {
  :root {
    --row-gap:1.5rem;
    --column-gap:1.5rem;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) {
  .kv {
    position: relative;
    margin-top: 60px;
  }
  .kv picture img {
    height: auto;
    aspect-ratio: 0;
  }
  .kv_box_wrap {
    flex-direction: column;
    padding: 0 8px;
    gap: 16px;
    margin: -80px 0 0;
  }
  .kv .kv-text {
    position: relative;
  }
  .kv .kv-text .kv_total {
    font-size: 32px;
    position: absolute;
    top: -105px;
    right: 2%;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  }
  .kv .kv-text .kv_total span {
    font-size: 60px;
  }
  .kv .kv-text .kv_phase {
    font-size: 18px;
    position: absolute;
    top: -52vw;
    right: 2%;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  }
  .anniversary_img_block .anniversary_img {
    margin: 36px auto 0;
  }
  .anniversary_img_block .anniversary_img img {
    width: 100%;
    height: auto;
  }
  .smartheim_flex {
    flex-direction: column;
  }
  .smartheim_title {
    margin: 36px auto 0;
  }
  .smartheim_title img {
    width: 100%;
    height: auto;
  }
  .smartheim_text {
    margin: 32px 0 0;
  }
  .smartheim_detail {
    padding: 0;
  }
  .smartheim_detail_img {
    margin: 16px 0 0;
  }
  .smartheim_detail_img img {
    width: 100%;
    height: auto;
  }
  .smartheim_img {
    margin: 0;
  }
  .smartheim_img_block {
    flex: 1;
  }
  .smartheim_img_block .smartheim_img {
    margin: 16px 0 0;
  }
  .smartheim_img_block .smartheim_img img {
    width: 100%;
    height: auto;
  }
  .contents_block {
    margin: 36px auto 0;
  }
  .contents_block .contents_flex {
    flex-direction: column;
  }
  .contents_flex {
    display: block;
  }
  .contents_flex .contents_detail_title {
    font-size: 20px;
  }
  .contents_title {
    font-size: 24px;
    margin-top: 32px;
  }
  .contents_column {
    margin-top: 48px;
  }
  .estate-information {
    display: flex;
    gap: 24px;
    padding: 36px 0 56px;
    flex-direction: column;
  }
  .estate-content {
    flex: 1;
  }
  .estate-sale {
    text-align: center;
    margin: 0 auto;
  }
  .estate-all {
    text-align: center;
    margin-block-end: 0;
    margin: 0;
  }
  .estate-all span {
    font-size: 60px;
  }
  .estate-image svg {
    top: 80%;
  }
  .location_block {
    padding: 40px 0;
  }
  .location_title {
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    line-height: 48px;
  }
  .location_text {
    margin: auto;
    font-size: 16px;
    width: 100%;
  }
  .location_img img {
    width: 100%;
    height: auto;
  }
  .location_map {
    margin-top: 36px;
  }
  .location_map .detail-Gmap iframe {
    width: 350px;
    height: 240px;
  }
  .access_block {
    padding: 40px 8px;
    left: 0;
    width: auto;
    margin: 0 -8px;
  }
  .access_img {
    background-color: #fff;
    padding: 8px;
    margin: 0;
  }
  .access_img_block {
    gap: 24px;
    flex-direction: column;
    width: 100%;
  }
  .access_img img {
    width: 100%;
  }
  .amenity_block {
    padding: 40px 0 0;
  }
  .amenity_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-top: 36px;
    padding: 0;
  }
  .amenity_list li figure img {
    width: 100%;
    height: auto;
  }
  .sekisuiheim_kv {
    position: relative;
    margin: 0 -8px;
  }
  .sekisuiheim_kv img {
    width: 100%;
    height: 160px;
    object-position: right;
  }
  .sekisuiheim_kv p {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
  .sekisuiheim_kv p.kv_title {
    font-size: 20px;
  }
  .sekisuiheim_contents_menu {
    margin: -10vw auto;
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
  }
  .sekisuiheim_contents_menu_block {
    display: flex;
    background-color: #fff;
    border: 1px solid #E1E1E1;
    justify-content: space-around;
    padding: 16px 8px;
    border-radius: 4px;
    gap: 32px;
    align-items: baseline;
  }
  .sekisuiheim_contents_list {
    text-align: center;
    position: relative;
    flex: 1;
  }
  .sekisuiheim_contents_list:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20%;
    width: 1px;
    height: 100%;
    background-color: #E5E5E5;
  }
  .sekisuiheim_contents_list_text {
    margin: 0;
    font-size: 12px;
    height: 40px;
    width: auto;
  }
  .sekisuiheim_contents_list_img {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin: 0;
  }
  .sekisuiheim_contents_list_img span {
    color: #28A656;
  }
  .sekisuiheim_contents_list_img img {
    width: 32px;
    height: auto;
  }
  .sekisuiheim_contents_list_button::before {
    left: 0;
  }
  .sekisuiheim_smart_block {
    margin: 0;
  }
  .sekisuiheim_smart_block .inner-title {
    margin-top: 80px;
  }
  .sekisuiheim_smart_block .smart_title {
    font-size: 24px;
    margin: 36px 0 0 0;
  }
  .sekisuiheim_smart_block .smart_text {
    margin-top: 16px;
  }
  .sekisuiheim_smart_system .smart_flex_block {
    gap: 16px;
    flex-direction: column;
  }
  .sekisuiheim_smart_system .smart_flex_item {
    gap: 0;
  }
  .sekisuiheim_smart_system .smart_flex_item_title {
    margin: 0;
  }
  .sekisuiheim_smart_system .smart_flex_item_img img {
    width: 100%;
    height: auto;
  }
  .sekisuiheim_smart_system .smart_flex_item_text {
    margin: 8px 0 0 0;
  }
  .sekisuiheim_resilience_block {
    width: auto;
    padding: 40px 8px;
    margin: 40px -8px 0;
    left: 0;
  }
  .sekisuiheim_resilience_block .inner-title {
    margin: 0;
  }
  .sekisuiheim_resilience_block .resilience_intro {
    font-size: 24px;
    margin: 36px 0 0 0;
    padding: 0 8px;
  }
  .sekisuiheim_resilience_block .resilience_text {
    padding: 0 8px;
  }
  .sekisuiheim_resilience_system {
    margin: 0;
    width: 100%;
  }
  .sekisuiheim_resilience_system .resilience_system {
    margin: 0;
  }
  .sekisuiheim_resilience_system .resilience_system_item {
    display: flex;
    flex-direction: column;
  }
  .sekisuiheim_resilience_system .resilience_system_item:nth-of-type(2) {
    flex-direction: column;
    margin-top: 0;
  }
  .sekisuiheim_resilience_system .resilience_system_item .right, .sekisuiheim_resilience_system .resilience_system_item .left {
    margin: 32px auto;
  }
  .sekisuiheim_resilience_system .resilience_system_img {
    position: relative;
    width: 100%;
  }
  .sekisuiheim_resilience_system .resilience_system_img img {
    width: 100%;
    height: auto;
  }
  .sekisuiheim_resilience_system .resilience_system_detail {
    flex: 1;
  }
  .sekisuiheim_resilience_system .resilience_system_detail .title {
    font-size: 24px;
    text-align: center;
    margin: 0;
    padding: 0 8px;
  }
  .sekisuiheim_resilience_system .resilience_system_detail .text {
    margin: 16px 0 8px;
    padding: 0 8px;
  }
  .sekisuiheim_provision {
    background-color: #fff;
    max-width: 100%;
    padding: 40px 8px;
    margin: 36px auto;
  }
  .sekisuiheim_provision .provision_title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
  }
  .sekisuiheim_provision .provision_flex {
    gap: 24px;
    flex-direction: column;
  }
  .sekisuiheim_provision .provision_detail {
    flex: 1;
  }
  .sekisuiheim_provision .provision_img {
    flex: 1;
  }
  .sekisuiheim_provision .provision_img img {
    width: 100%;
    height: auto;
  }
  .sekisuiheim_provision .provision_intro img {
    width: 100%;
    height: auto;
  }
  .sekisuiheim_support_block {
    padding: 40px 0 0;
  }
  .sekisuiheim_support_block .support_intro {
    font-size: 24px;
    margin: 36px 0 0 0;
  }
  .sekisuiheim_support_block .support_text {
    text-align: center;
    margin-top: 16px;
  }
  .sekisuiheim_support_block .support_img {
    margin-top: 28px;
  }
  .sekisuiheim_support_block .support_img .provision_img {
    text-align: center;
    width: 100%;
    height: auto;
  }
  .sekisuiheim_support_block .support_img .provision_img:first-of-type img {
    width: 100%;
    height: auto;
  }
  .sekisuiheim_support_block .support_img .provision_img:nth-of-type(2) img {
    width: 100%;
    height: auto;
  }
  .sekisuiheim_support_block .owner_support {
    flex-direction: column;
    gap: 20px;
    margin: 28px -8px;
    padding: 28px 8px;
  }
  .sekisuiheim_support_block .owner_support_img img {
    width: 100%;
    height: auto;
  }
  .comment {
    font-size: 12px;
    margin-top: 24px;
  }
}

/*# sourceMappingURL=/assets/web/extras/special/common/all-825a4dd2.css.map */
