@charset "UTF-8";
/* assets/scss/style.scss
  Tailwind CSSを使用せず、独自のSCSS設計で構築しています。
*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #374151;
  background-color: #fffbf5;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.5s;
  overflow-x: hidden;
}
body.is-loaded {
  opacity: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.text-center {
  text-align: center;
}

.text-orange {
  color: #f97316;
}

.text-green {
  color: #22c55e;
}

.text-bold {
  font-weight: bold;
}

.hidden-sm {
  display: none;
}

.width-full-sm {
  width: 100%;
}

@media (min-width: 768px) {
  .hidden-sm {
    display: inline;
  }
  .width-full-sm {
    width: auto;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: bold;
  border-radius: 9999px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}
.btn.btn-primary {
  padding: 1rem;
  background-color: #f97316;
  color: white;
}
.btn.btn-primary:hover {
  background-color: #ea580c;
}
.btn.btn-secondary {
  background-color: white;
  color: #f97316;
  border: 2px solid #fed7aa;
}
.btn.btn-secondary:hover {
  background-color: #fff7ed;
}
.btn.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn.btn-xl {
  padding: 1rem 3rem;
  font-size: 1.25rem;
}
.btn.width-full {
  width: 100%;
}

.tag {
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tag-new {
  background-color: #ef4444;
  color: white;
  animation: pulse 2s infinite;
}

.tag-popular {
  background-color: #ef4444;
  color: white;
}

.tag-loc {
  background-color: white;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.opening-overlay {
  position: fixed;
  inset: 0;
  background-color: #f97316;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s ease-in-out;
}
.opening-overlay.is-hidden {
  transform: translateY(-100%);
}

.opening-logo {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  animation: bounce 1s infinite;
}
.opening-logo .dot {
  color: #fef08a;
}

.global-nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #f97316;
  transition: all 0.3s;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-brand .brand-tag {
  background-color: #f97316;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: bold;
  font-size: 0.875rem;
}
.nav-brand .brand-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1f2937;
  letter-spacing: -0.05em;
}
.nav-brand .brand-name .dot {
  color: #f97316;
}

.nav-menu {
  display: none;
}
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  color: #6b7280;
  font-weight: bold;
  transition: color 0.3s;
}
.nav-link:hover {
  color: #f97316;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.menu-btn {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
}
.menu-btn:hover {
  color: #f97316;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border-top: 1px solid #ffedd5;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.mobile-menu.is-open {
  display: block;
  animation: menuSlideDown 0.3s ease-out forwards;
}
.mobile-menu .mobile-menu-inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu .mobile-link {
  display: block;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}
.mobile-menu .mobile-link.btn {
  color: white;
  text-align: center;
  margin-top: 1rem;
  border: none;
}

@keyframes menuSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-section {
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-section {
    padding: 10rem 0 6rem;
  }
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("https://www.transparenttextures.com/patterns/cream-paper.png");
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(40px);
  opacity: 0.7;
  animation: blob 7s infinite;
  z-index: 0;
}

.blob-1 {
  top: 5rem;
  right: 0;
  width: 16rem;
  height: 16rem;
  background-color: #ffedd5;
}

.blob-2 {
  top: 10rem;
  left: 0;
  width: 18rem;
  height: 18rem;
  background-color: #fef9c3;
  animation-delay: 2s;
}

.blob-3 {
  bottom: -2rem;
  left: 5rem;
  width: 18rem;
  height: 18rem;
  background-color: #dcfce7;
  animation-delay: 4s;
}

.hero-container {
  position: relative;
  z-index: 10;
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text-area {
  text-align: center;
}
@media (min-width: 768px) {
  .hero-text-area {
    text-align: left;
  }
}

.hero-badge {
  display: inline-block;
  background-color: #ffedd5;
  color: #ea580c;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border: 1px solid #fed7aa;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #1f2937;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}
.hero-title .highlight {
  color: #f97316;
  display: inline-block;
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: #fdba74;
  text-underline-offset: 4px;
  transform: rotate(-1deg);
}

.hero-desc {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
}

.hero-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 8px solid white;
  transform: rotate(2deg);
  transition: transform 0.5s;
}
.hero-image-wrapper:hover {
  transform: rotate(0);
}

.hero-image-overlay {
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  padding: 1.5rem;
  color: white;
  font-weight: bold;
}

.campaign-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 6rem;
  height: 6rem;
  background-color: #facc15;
  color: #713f12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: rotate(12deg);
  animation: bounce-slow 3s infinite;
  border: 4px solid white;
  line-height: 1.2;
}

.points-section {
  padding: 3rem 0;
  background-color: white;
  border-top: 1px solid #ffedd5;
  border-bottom: 1px solid #ffedd5;
}

.points-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .points-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.point-card {
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: box-shadow 0.3s;
  background-color: #fff7ed;
  border: 1px solid #ffedd5;
}
.point-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.point-card.theme-green {
  background-color: #dcfce7;
  border-color: #bbf7d0;
}
.point-card.theme-green .point-icon {
  color: #22c55e;
  background-color: white;
}
.point-card.theme-pink {
  background-color: #fdf2f8;
  border-color: #fce7f3;
}
.point-card.theme-pink .point-icon {
  color: #ec4899;
  background-color: #fce7f3;
}

.point-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.point-icon.icon-orange {
  background-color: #ffedd5;
  color: #f97316;
}

.point-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.point-desc {
  font-size: 0.875rem;
  color: #6b7280;
}

.concept-section {
  padding: 5rem 0;
  background-color: #fffbf5;
}

.concept-box {
  background-color: white;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #ffedd5;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .concept-box {
    padding: 3rem;
  }
}

.concept-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: #fef9c3;
  border-bottom-left-radius: 100%;
  margin-right: -2.5rem;
  margin-top: -2.5rem;
  opacity: 0.5;
}

.concept-grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .concept-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.section-label {
  color: #f97316;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label .label-line {
  width: 2rem;
  height: 4px;
  background-color: #f97316;
  border-radius: 9999px;
}

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.concept-lead {
  font-size: 1rem;
  text-align: justify;
  color: #6b7280;
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
}
.concept-lead .highlight-bg {
  background-color: #fef9c3;
  padding: 0 0.25rem;
  font-weight: bold;
  color: #1f2937;
}

.concept-desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.recommend-box {
  background-color: #fff7ed;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #ffedd5;
}

.recommend-title {
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.recommend-list {
  list-style: none;
  font-size: 0.875rem;
  color: #6b7280;
}
.recommend-list li {
  margin-bottom: 0.5rem;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.image-grid .concept-img {
  border-radius: 1rem;
  width: 100%;
  height: 12rem;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.image-grid .concept-img.img-3 {
  grid-column: span 2;
}

.lineup-section {
  padding: 5rem 0;
  background-color: #fff7ed;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-desc {
  margin-top: 1rem;
  color: #6b7280;
  font-weight: 500;
}

.underline-yellow {
  display: inline-block;
  border-bottom: 4px solid #fde047;
}

.property-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .property-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.property-card {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #ffedd5;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.property-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.property-img-link {
  display: block;
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.property-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s;
}
.property-card:hover .property-img {
  transform: scale(1.1);
}

.property-tags {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.property-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-name {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.property-card:hover .property-name {
  color: #f97316;
}

.property-desc {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-box {
  background-color: #fff7ed;
  border-radius: 0.5rem;
  padding: 0.75rem;
  border: 1px solid #ffedd5;
  margin-bottom: 1rem;
}

.price-row, .payment-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.payment-row {
  margin-top: 0.25rem;
  padding-top: 0.25rem;
  border-top: 1px solid #fed7aa;
}

.price-label {
  font-size: 0.75rem;
  font-weight: bold;
  color: #6b7280;
}

.payment-label {
  font-size: 0.75rem;
  font-weight: bold;
  color: #ea580c;
  background-color: #fed7aa;
  padding: 0 0.375rem;
  border-radius: 0.25rem;
}

.price-val {
  font-size: 1.125rem;
  font-weight: 900;
  color: #1f2937;
}

.payment-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ef4444;
}

.unit {
  font-size: 0.875rem;
  font-weight: 500;
}

.unit-sm {
  font-size: 0.875rem;
  font-weight: bold;
  color: #6b7280;
}

.price-note {
  font-size: 0.625rem;
  color: #9ca3af;
  text-align: right;
  margin-top: 0.25rem;
}

.property-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-badge {
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
.status-badge.status-on {
  background-color: #dcfce7;
  color: #22c55e;
}

.other-plans-area {
  margin-top: 4rem;
}

.other-plans-box {
  background-color: white;
  border: 2px dashed #fed7aa;
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.other-plans-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.other-plans-title .icon-wrapper {
  background-color: #fff7ed;
  color: #f97316;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
}

.other-plans-desc {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.other-plans-desc .highlight {
  color: #ea580c;
  font-weight: bold;
  border-bottom: 2px solid #fed7aa;
}

.other-plans-action .btn {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.other-plans-action .btn:hover {
  background-color: #fff7ed;
  border-color: #f97316;
  transform: translateY(-2px);
}

.features-section {
  padding: 5rem 0;
  background-color: white;
}

.features-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: #f9fafb;
  border: 1px solid #f3f4f6;
  transition: border-color 0.3s;
  height: 100%;
}
.feature-item:hover {
  border-color: #fed7aa;
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon-wrapper.bg-orange-light {
  background-color: #ffedd5;
}
.feature-icon-wrapper.bg-green-light {
  background-color: #dcfce7;
}
.feature-icon-wrapper.bg-yellow-light {
  background-color: #fef9c3;
}
.feature-icon-wrapper.bg-blue-light {
  background-color: #dbeafe;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.feature-sub {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: bold;
  color: #6b7280;
  background-color: white;
  border: 1px solid #e5e7eb;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}

.spec-section {
  padding: 5rem 0;
  background-color: #fffbf5;
}

.spec-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.spec-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #fed7aa;
  transition: transform 0.3s;
}
.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.spec-img-wrapper {
  position: relative;
  overflow: hidden;
}
.spec-img-wrapper .spec-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.spec-img-wrapper:hover .spec-img {
  transform: scale(1.05);
}

.spec-label {
  position: absolute;
  top: 1rem;
  left: 0;
  background-color: #f97316;
  color: white;
  padding: 0.4rem 0.5rem;
  font-weight: bold;
  font-size: 3.7vw;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
@media (min-width: 768px) {
  .spec-label {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
  }
}

.spec-content {
  padding: 1.5rem;
}

.spec-text {
  font-weight: bold;
  color: #374151;
  line-height: 1.6;
}

.guarantee-area {
  background-color: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 4px solid #f97316;
  margin-bottom: 4rem;
}

.guarantee-header {
  background-color: #f97316;
  color: white;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.guarantee-label {
  display: inline-block;
  background-color: white;
  color: #f97316;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.guarantee-title {
  font-size: 6.5vw;
  font-weight: bold;
}
.guarantee-title .sp {
  display: block;
}
@media (min-width: 768px) {
  .guarantee-title {
    font-size: 1.5rem;
  }
  .guarantee-title .sp {
    display: none;
  }
}

.guarantee-content {
  padding: 2rem;
}

.equip-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .equip-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .equip-list {
    grid-template-columns: repeat(6, 1fr);
  }
}

.equip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  color: #374151;
}
.equip-item img {
  width: 80px;
  height: auto;
  display: block;
}

.support-box {
  background-color: #fff7ed;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px dashed #fed7aa;
}

.support-icon {
  width: 5rem;
  height: auto;
  flex-shrink: 0;
}
.support-icon img {
  width: 100%;
  height: auto;
}

.support-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #374151;
}
.support-text strong {
  color: #ea580c;
  font-size: 1.1rem;
}

.all-in-one-banner {
  background: linear-gradient(90deg, #f97316, #ea580c);
  color: white;
  text-align: center;
  padding: 1.5rem;
  font-size: 4.6vw;
  font-weight: 900;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
  transform: rotate(-1deg);
  margin: 0 auto;
  max-width: 800px;
}
@media (min-width: 768px) {
  .all-in-one-banner {
    font-size: 1.75rem;
  }
}

.contact-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #fb923c, #f97316);
  overflow: hidden;
}

.contact-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("https://www.transparenttextures.com/patterns/diagmonds-light.png");
}

.contact-container {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  text-align: center;
}

.contact-badge {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.contact-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .contact-title {
    font-size: 3rem;
  }
}

.contact-lead {
  color: #fff7ed;
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.contact-form-wrapper {
  background-color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-align: left;
  border: 4px solid #fed7aa;
}
@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 3rem;
  }
}

.form-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  color: #374151;
  margin-bottom: 0.5rem;
}
.form-label .required {
  color: #ef4444;
  font-size: 0.75rem;
  margin-left: 0.25rem;
}
.form-label .badge-any {
  background-color: #f3f4f6;
  color: #6b7280;
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  margin-left: 0.5rem;
  font-weight: normal;
}

.checkbox-group-wrapper {
  background-color: white;
  border: 1px solid #fed7aa;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.area-group {
  margin-bottom: 1.5rem;
}
.area-group:last-child {
  margin-bottom: 0;
}

.area-label {
  font-size: 0.9rem;
  font-weight: bold;
  color: #f97316;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.area-label::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 14px;
  background-color: #f97316;
  margin-right: 0.5rem;
  border-radius: 2px;
}

.checkbox-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .checkbox-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.checkbox-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #374151;
  font-size: 0.9rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checkbox-item:hover {
  border-color: #f97316;
  background-color: #fff7ed;
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(249, 115, 22, 0.15);
}
.checkbox-item input[type=checkbox] {
  accent-color: #f97316;
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
  margin-right: 0.75rem;
  flex-shrink: 0;
}
.checkbox-item.is-checked, .checkbox-item:has(input:checked) {
  background-color: #fff7ed;
  border-color: #f97316;
  color: #ea580c;
  font-weight: bold;
  box-shadow: 0 0 0 1px #f97316;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
  font-size: 1rem;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 4px #ffedd5;
}

.privacy-note {
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 1rem;
}

.success-message {
  padding: 4rem 2rem;
  text-align: center;
  background: white;
  border-radius: 1.5rem;
  border: 4px solid #fed7aa;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 600px;
  margin: 0 auto;
}
.success-message h3 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #f97316;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.success-message p {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.global-footer {
  background-color: #1f2937;
  color: #d1d5db;
  padding: 3rem 0;
  border-top: 1px solid #374151;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}
.footer-logo .dot {
  color: #f97316;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 24rem;
  color: #9ca3af;
}

.footer-title {
  color: white;
  font-weight: bold;
  margin-bottom: 1rem;
  border-bottom: 1px solid #4b5563;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-links {
  list-style: none;
  font-size: 0.875rem;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.footer-links li a:hover {
  color: #f97316;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-item .tel {
  font-size: 1.125rem;
  font-weight: bold;
  color: white;
}
.contact-item .icon-orange {
  color: #f97316;
}

.contact-note {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.footer-copy {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@keyframes bounce-slow {
  0%, 100% {
    transform: translateY(-5%) rotate(12deg);
  }
  50% {
    transform: translateY(5%) rotate(12deg);
  }
}
@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}
.scroll-reveal {
  opacity: 0;
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.scroll-reveal.fade-up {
  transform: translateY(30px);
}
.scroll-reveal.fade-right {
  transform: translateX(-30px);
}
.scroll-reveal.fade-left {
  transform: translateX(30px);
}
.scroll-reveal.zoom-in {
  transform: scale(0.95);
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.property-card.is-soldout {
  background-color: #f3f4f6;
  border-color: #e5e7eb;
}
.property-card.is-soldout .property-img-link {
  position: relative;
}
.property-card.is-soldout .property-img-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 10;
}
.property-card.is-soldout .property-img-link::after {
  content: "SOLD OUT";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  background-color: #ef4444;
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  border: 3px solid white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 20;
  white-space: nowrap;
}
.property-card.is-soldout .property-name,
.property-card.is-soldout .property-desc {
  color: #9ca3af;
}
.property-card.is-soldout .price-box {
  display: none;
}
.property-card.is-soldout .soldout-msg {
  text-align: center;
  font-weight: bold;
  color: #ef4444;
  font-size: 1.25rem;
  padding: 1.5rem 0;
  background-color: #fff;
  border: 1px dashed #ef4444;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.property-card.is-soldout .status-badge {
  background-color: #9ca3af;
  color: white;
}
.property-card.is-soldout .btn {
  background-color: #e5e7eb;
  color: #9ca3af;
  border-color: #e5e7eb;
  pointer-events: none;
  box-shadow: none;
}/*# sourceMappingURL=style.css.map */