@charset "UTF-8";
/* ==========================================================================
   Main SCSS File for Advance Real Estate Theme
   ========================================================================== */
/* ==========================================================================
   CSS Reset & Base Styles for Advance Real Estate Theme
   ========================================================================== */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html {
  font-size: 62.5%; /* 10px base for rem calculations */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem; /* 16px */
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2.4rem;
  color: #1a1a1a;
}

h1 {
  font-size: 4.8rem; /* 48px */
  letter-spacing: -0.02em;
}

h2 {
  font-size: 3.6rem; /* 36px */
  letter-spacing: -0.01em;
}

h3 {
  font-size: 2.8rem; /* 28px */
}

h4 {
  font-size: 2.4rem; /* 24px */
}

h5 {
  font-size: 2rem; /* 20px */
}

h6 {
  font-size: 1.8rem; /* 18px */
}

/* Paragraph and text elements */
p {
  font-size: 1.6rem; /* 16px */
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

small {
  font-size: 1.2rem; /* 12px */
}

/* Remove list styles on ul, ol elements with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: #004499;
  text-decoration: underline;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Form elements */
input,
button,
textarea,
select {
  font: inherit;
  font-size: 1.6rem;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=search],
textarea,
select {
  padding: 1.2rem 1.6rem;
  border: 0.1rem solid #e0e0e0;
  border-radius: 0.4rem;
  background-color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=password]:focus,
input[type=search]:focus,
textarea:focus,
select:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 0.3rem rgba(0, 102, 204, 0.1);
}

/* Table styles */
table {
  border-collapse: collapse;
  width: 100%;
}

td,
th {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 0.1rem solid #e0e0e0;
}

th {
  font-weight: 600;
  background-color: #f8f9fa;
}

/* Utility classes */
.sr-only {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  padding: 0;
  margin: -0.1rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Media query breakpoints for responsive design */
@media (max-width: 768px) {
  h1 {
    font-size: 3.6rem; /* 36px on mobile */
  }
  h2 {
    font-size: 2.8rem; /* 28px on mobile */
  }
  h3 {
    font-size: 2.4rem; /* 24px on mobile */
  }
  body {
    font-size: 1.4rem; /* 14px on mobile */
  }
}
#header {
  height: 60px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  #header {
    width: calc(100vw - 48px);
    height: 80px;
    left: 24px;
    top: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
  }
}
#header h1 {
  height: 40px;
  width: 116px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #header h1 {
    height: 60px;
  }
}
#header h1 img {
  height: 40px;
  width: auto;
}
@media screen and (min-width: 768px) {
  #header h1 img {
    height: 60px;
  }
}
#header .nav-left {
  display: none;
}
@media screen and (min-width: 768px) {
  #header .nav-left {
    display: block;
    position: fixed;
    left: 3.75vw;
  }
  #header .nav-left ul {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  #header .nav-left ul li a {
    font-weight: bold;
    color: #262626;
  }
}
#header .nav-right {
  display: none;
}
@media screen and (min-width: 768px) {
  #header .nav-right {
    display: block;
    position: fixed;
    right: 3.75vw;
  }
}
#header .nav-right ul {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}
#header .nav-right li a {
  font-weight: bold;
  color: #262626;
}
#header .nav-sp-menu-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  width: 60px;
  height: 60px;
  cursor: pointer;
  font-size: 9px;
  list-style: 1;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  #header .nav-sp-menu-button {
    display: none;
  }
}
#header .nav-sp-menu-button span {
  order: 2;
  list-style: 1;
  display: block;
  margin-top: -4px;
}
#header .nav-sp-menu-button:before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background-color: #262626;
  order: 0;
}
#header .nav-sp-menu-button:after {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background-color: #262626;
  order: 1;
}
#header .nav-sp-menu {
  display: none;
}
#header.white {
  background: none;
}
#header.white h1 img {
  filter: brightness(1000);
}
#header.white .nav-left ul li a {
  color: #fff;
}
#header.white .nav-right ul li a {
  color: #fff;
}
#header .pc-sub-menu {
  display: none;
}
@media screen and (min-width: 768px) {
  #header .pc-sub-menu {
    display: block;
    position: fixed;
    left: 3.75vw;
    top: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 24px;
  }
}

#site-footer {
  background-color: #262626;
  color: #fff;
  padding: 60px 0;
}
#site-footer h2 {
  padding-left: 24px;
  margin: 0;
}
#site-footer h2 img {
  filter: brightness(1000);
}
#site-footer .footer-menus {
  padding: 24px;
  display: flex;
}
#site-footer .footer-menus .footer-menu h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.8;
  color: #fff;
  margin: 0;
}
#site-footer .footer-menus .footer-menu nav ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
#site-footer .footer-menus .footer-menu nav ul li a {
  color: #fff;
  font-size: 1.1rem;
}
#site-footer small {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.8;
}

body {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  color: #262626;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  body {
    height: 100px;
  }
}

#main-visual {
  margin-top: -60px;
  position: relative;
  height: calc(100vh - 100px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-visual .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
#main-visual .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
#main-visual .content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}
#main-visual .content h1 {
  font-size: 2rem;
  letter-spacing: 0.3rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media screen and (min-width: 768px) {
  #main-visual .content h1 {
    writing-mode: horizontal-tb;
    font-size: 3rem;
  }
}

#sub-visual {
  padding: 60px 0 360px;
  text-align: left;
  position: relative;
}
@media screen and (min-width: 768px) {
  #sub-visual {
    padding: 120px 0 360px;
  }
}
#sub-visual .sub-visual-text {
  font-size: 2.4rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #333;
  padding-left: 24px;
}
@media screen and (min-width: 768px) {
  #sub-visual .sub-visual-text {
    font-size: 4rem;
    padding-left: 3.75vw;
  }
}
#sub-visual .infinity-scroll-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}
#sub-visual .infinity-scroll-container .infinity-scroll {
  display: flex;
  width: 1500px;
  animation: infiniteScroll 20s linear infinite;
  animation-duration: 20s;
}
@media screen and (min-width: 768px) {
  #sub-visual .infinity-scroll-container .infinity-scroll {
    width: 2400px;
    animation: infiniteScroll 20s linear infinite;
    animation-duration: 20s;
  }
}
#sub-visual .infinity-scroll-container .infinity-scroll .slide-item {
  flex-shrink: 0;
  width: 250px;
  height: 167px;
  margin-right: 16px;
}
@media screen and (min-width: 768px) {
  #sub-visual .infinity-scroll-container .infinity-scroll .slide-item {
    width: 400px;
    height: 267px;
  }
}
#sub-visual .infinity-scroll-container .infinity-scroll .slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sub-visual p {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 700;
  padding-left: 24px;
  margin-top: 40px;
  height: 400px;
  position: absolute;
  top: 200px;
  z-index: 10;
  right: 24px;
}
@media screen and (min-width: 768px) {
  #sub-visual p {
    writing-mode: horizontal-tb;
    font-size: 2rem;
    height: 600px;
    top: 430px;
  }
}
#sub-visual p span {
  background-color: rgba(255, 255, 255, 0.7);
}
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-798px);
  }
}

#home-buy,
#home-rental {
  padding: 60px 0 0;
  border-top: 2px solid #262626;
}
@media screen and (min-width: 768px) {
  #home-buy,
  #home-rental {
    padding: 120px 0 0;
  }
}
#home-buy h2,
#home-rental h2 {
  padding-left: 24px;
  padding-bottom: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #262626;
  border-bottom: 2px solid #262626;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #home-buy h2,
  #home-rental h2 {
    font-size: 3rem;
    padding-left: 3.75vw;
  }
}
#home-buy .home-buy-list,
#home-rental .home-buy-list {
  display: flex;
  flex-direction: column;
  list-style: none;
}
@media screen and (min-width: 768px) {
  #home-buy .home-buy-list,
  #home-rental .home-buy-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
#home-buy .home-buy-list > li,
#home-rental .home-buy-list > li {
  padding: 40px 0;
  border-bottom: 2px solid #262626;
}
@media screen and (min-width: 768px) {
  #home-buy .home-buy-list > li,
  #home-rental .home-buy-list > li {
    border-right: 2px solid #262626;
  }
  #home-buy .home-buy-list > li:nth-child(3n),
  #home-rental .home-buy-list > li:nth-child(3n) {
    border-right: none;
  }
}
#home-buy .home-buy-list > li > figure,
#home-rental .home-buy-list > li > figure {
  display: flex;
}
#home-buy .home-buy-list > li > figure .area,
#home-rental .home-buy-list > li > figure .area {
  width: 40px;
  display: block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
#home-buy .home-buy-list > li > figure a,
#home-rental .home-buy-list > li > figure a {
  width: calc(100% - 80px);
  height: auto;
}
#home-buy .home-buy-list > li > figure a img,
#home-rental .home-buy-list > li > figure a img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}
#home-buy .home-buy-list > li > figure a img:hover,
#home-rental .home-buy-list > li > figure a img:hover {
  transform: scale(1.02);
}
#home-buy .home-buy-list > li > figure .category,
#home-rental .home-buy-list > li > figure .category {
  width: 40px;
  display: block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
#home-buy .home-buy-list > li h3,
#home-rental .home-buy-list > li h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 16px 0;
  padding: 0 40px;
}
#home-buy .home-buy-list > li .tags,
#home-rental .home-buy-list > li .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0 40px;
  margin-bottom: 20px;
}
#home-buy .home-buy-list > li .tags li,
#home-rental .home-buy-list > li .tags li {
  padding: 4px 12px;
  background-color: #262626;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
#home-buy .home-buy-list > li > a,
#home-rental .home-buy-list > li > a {
  color: #262626;
  display: flex;
  justify-content: flex-end;
  font-weight: bold;
  font-size: 1.2rem;
  gap: 8px;
  margin-right: 40px;
}
#home-buy .home-buy-list > li > a img,
#home-rental .home-buy-list > li > a img {
  transition: 0.3s;
}
#home-buy .home-buy-list > li > a:hover,
#home-rental .home-buy-list > li > a:hover {
  text-decoration: none;
}
#home-buy .home-buy-list > li > a:hover img,
#home-rental .home-buy-list > li > a:hover img {
  transform: rotate(720deg);
}
#home-buy .home-buy-search,
#home-rental .home-buy-search {
  display: none;
}

#home-rental {
  background-color: #E6E6E6;
  border-top: none;
}

#home-sell-think,
#home-rental-think {
  padding: 24px;
  border-bottom: 2px solid #262626;
}
@media screen and (min-width: 768px) {
  #home-sell-think,
  #home-rental-think {
    padding: 3.75vw;
    display: flex;
    gap: 3.75vw;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  #home-sell-think > div,
  #home-rental-think > div {
    width: calc((100% - 3.75vw) / 2);
  }
}
#home-sell-think > div h2,
#home-rental-think > div h2 {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 1em;
}
@media screen and (min-width: 768px) {
  #home-sell-think > div h2,
  #home-rental-think > div h2 {
    font-size: 3rem;
  }
}
#home-sell-think > div p,
#home-rental-think > div p {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  #home-sell-think > div p,
  #home-rental-think > div p {
    font-size: 1.6rem;
  }
}
#home-sell-think > div > a,
#home-rental-think > div > a {
  color: #262626;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  gap: 8px;
  margin-right: 40px;
  border: 2px solid #262626;
  height: 42px;
  width: 100%;
  max-width: 500px;
  margin: 24px auto 40px;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  #home-sell-think > div > a,
  #home-rental-think > div > a {
    font-size: 1.6rem;
    height: 60px;
  }
}
#home-sell-think > div > a img,
#home-rental-think > div > a img {
  transition: 0.3s;
  width: 16px;
}
@media screen and (min-width: 768px) {
  #home-sell-think > div > a img,
  #home-rental-think > div > a img {
    width: 20px;
  }
}
#home-sell-think > div > a:hover,
#home-rental-think > div > a:hover {
  text-decoration: none;
  background-color: #262626;
  color: #fff;
}
#home-sell-think > div > a:hover img,
#home-rental-think > div > a:hover img {
  transform: rotate(720deg);
  filter: brightness(1000);
}
@media screen and (min-width: 768px) {
  #home-sell-think > figure,
  #home-rental-think > figure {
    width: calc((100% - 3.75vw) / 2);
  }
}

@media screen and (min-width: 768px) {
  #home-rental-think {
    flex-direction: row-reverse;
  }
}

#home-news {
  padding: 60px 0;
  border-bottom: 2px solid #262626;
  background-color: #E6E6E6;
}
#home-news h2 {
  font-size: 2.4rem;
  font-weight: 700;
  padding-left: 24px;
  padding-bottom: 24px;
  margin: 0;
  border-bottom: 2px solid #262626;
}
#home-news ul {
  list-style: none;
  padding: 0;
}
#home-news ul li a {
  color: #262626;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 24px;
  padding: 24px;
  border-bottom: 1px solid #262626;
  transition: 0.3s;
}
#home-news ul li a:hover {
  background-position: right 19px center;
  background-color: #bebebe;
}
#home-news ul li a .title {
  width: 100%;
}

#home-map {
  padding: 60px 0;
  border-bottom: 2px solid #262626;
}
#home-map h2 {
  font-size: 2.4rem;
  font-weight: 700;
  padding-left: 24px;
  padding-bottom: 24px;
  margin: 0;
  border-bottom: 2px solid #262626;
}
#home-map > div {
  padding: 60px 24px;
}
#home-map > div p {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.8;
}
#home-map > div > a {
  color: #262626;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  gap: 8px;
  margin-right: 40px;
  border: 2px solid #262626;
  height: 42px;
  width: 100%;
  max-width: 500px;
  transition: 0.3s;
}
#home-map > div > a img {
  transition: 0.3s;
  width: 16px;
}
#home-map > div > a:hover {
  text-decoration: none;
  background-color: #262626;
  color: #fff;
}
#home-map > div > a:hover img {
  transform: rotate(720deg);
  filter: brightness(1000);
}
#home-map iframe {
  width: 100%;
  height: 450px;
  border: none;
}

#sell-main-visual {
  display: flex;
  align-items: center;
  min-height: 80vh;
  padding: 80px 24px 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
#sell-main-visual .content {
  flex: 1;
  max-width: 600px;
}
#sell-main-visual .content h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #333;
}
@media (max-width: 768px) {
  #sell-main-visual .content h1 {
    font-size: 2.2rem;
  }
}
#sell-main-visual .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}
#sell-main-visual figure {
  flex: 1;
  max-width: 500px;
  margin-left: 40px;
}
#sell-main-visual figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  #sell-main-visual figure {
    margin-left: 0;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  #sell-main-visual {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px 40px;
  }
}

#sell-flow {
  padding: 80px 24px;
  background-color: #fff;
}
#sell-flow h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
}
#sell-flow .flow-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
#sell-flow .flow-item {
  text-align: center;
  position: relative;
}
#sell-flow .flow-item .number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #262626;
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 60px;
  margin-bottom: 20px;
}
#sell-flow .flow-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}
#sell-flow .flow-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}
#sell-flow .flow-item:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 30px;
  font-size: 1.5rem;
  color: #262626;
}
@media (max-width: 768px) {
  #sell-flow .flow-item:not(:last-child)::after {
    display: none;
  }
}

#sell-reasons {
  padding: 80px 24px;
  background-color: #f8f9fa;
}
#sell-reasons h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
}
#sell-reasons .reasons-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
#sell-reasons .reason-item {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
#sell-reasons .reason-item:hover {
  transform: translateY(-5px);
}
#sell-reasons .reason-item .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
#sell-reasons .reason-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}
#sell-reasons .reason-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}

#sell-form {
  padding: 80px 24px;
  background-color: #fff;
}
#sell-form h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}
#sell-form .form-description {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#sell-form .sell-form {
  max-width: 600px;
  margin: 0 auto;
}
#sell-form .sell-form .form-group {
  margin-bottom: 24px;
}
#sell-form .sell-form .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
#sell-form .sell-form .form-group input,
#sell-form .sell-form .form-group select,
#sell-form .sell-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
#sell-form .sell-form .form-group input:focus,
#sell-form .sell-form .form-group select:focus,
#sell-form .sell-form .form-group textarea:focus {
  outline: none;
  border-color: #262626;
}
#sell-form .sell-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
#sell-form .sell-form .submit-btn {
  width: 100%;
  padding: 16px;
  background: #262626;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}
#sell-form .sell-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(38, 38, 38, 0.3);
  background: #1a1a1a;
}

#sell-faq {
  padding: 80px 24px;
  background-color: #f8f9fa;
}
#sell-faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
}
#sell-faq .faq-container {
  max-width: 800px;
  margin: 0 auto;
}
#sell-faq .faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#sell-faq .faq-item h3 {
  background-color: #262626;
  color: white;
  padding: 20px 24px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}
#sell-faq .faq-item p {
  padding: 20px 24px;
  margin: 0;
  line-height: 1.7;
  color: #666;
}

#sell-cta {
  padding: 80px 24px;
  background: #262626;
  color: white;
  text-align: center;
}
#sell-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
#sell-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}
#sell-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
#sell-cta .cta-buttons a {
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
#sell-cta .cta-buttons a.btn-phone {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}
#sell-cta .cta-buttons a.btn-phone img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
#sell-cta .cta-buttons a.btn-phone:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
#sell-cta .cta-buttons a.btn-form {
  background-color: white;
  color: #262626;
}
#sell-cta .cta-buttons a.btn-form:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #sell-flow,
  #sell-reasons,
  #sell-form,
  #sell-faq,
  #sell-cta {
    padding: 60px 20px;
  }
  #sell-flow h2,
  #sell-reasons h2,
  #sell-form h2,
  #sell-faq h2,
  #sell-cta h2 {
    font-size: 2rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons a {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
#about-main-visual,
#access-main-visual,
#staff-main-visual,
#vacant-main-visual {
  display: flex;
  align-items: center;
  min-height: 60vh;
  padding: 80px 24px 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
#about-main-visual .content,
#access-main-visual .content,
#staff-main-visual .content,
#vacant-main-visual .content {
  flex: 1;
  max-width: 600px;
}
#about-main-visual .content h1,
#access-main-visual .content h1,
#staff-main-visual .content h1,
#vacant-main-visual .content h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #333;
}
@media (max-width: 768px) {
  #about-main-visual .content h1,
  #access-main-visual .content h1,
  #staff-main-visual .content h1,
  #vacant-main-visual .content h1 {
    font-size: 2.2rem;
  }
}
#about-main-visual .content p,
#access-main-visual .content p,
#staff-main-visual .content p,
#vacant-main-visual .content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
}
#about-main-visual figure,
#access-main-visual figure,
#staff-main-visual figure,
#vacant-main-visual figure {
  flex: 1;
  max-width: 500px;
  margin-left: 40px;
}
#about-main-visual figure img,
#access-main-visual figure img,
#staff-main-visual figure img,
#vacant-main-visual figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  #about-main-visual figure,
  #access-main-visual figure,
  #staff-main-visual figure,
  #vacant-main-visual figure {
    margin-left: 0;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  #about-main-visual,
  #access-main-visual,
  #staff-main-visual,
  #vacant-main-visual {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px 40px;
    min-height: 50vh;
  }
}

#about-main-visual,
#access-main-visual,
#staff-main-visual {
  justify-content: center;
  text-align: center;
}
#about-main-visual .content,
#access-main-visual .content,
#staff-main-visual .content {
  max-width: 800px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

section {
  padding: 80px 0;
}
section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
}
@media (max-width: 768px) {
  section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

#company-info {
  background-color: #fff;
}
#company-info .info-table {
  max-width: 800px;
  margin: 0 auto;
}
#company-info .info-row {
  display: flex;
  border-bottom: 1px solid #e9ecef;
  padding: 20px 0;
}
#company-info .info-row .label {
  width: 200px;
  font-weight: 600;
  color: #333;
  flex-shrink: 0;
}
#company-info .info-row .value {
  flex: 1;
  color: #666;
  line-height: 1.7;
}
@media (max-width: 768px) {
  #company-info .info-row {
    flex-direction: column;
  }
  #company-info .info-row .label {
    width: auto;
    margin-bottom: 8px;
  }
}

#company-philosophy {
  background-color: #f8f9fa;
}
#company-philosophy .philosophy-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
#company-philosophy .philosophy-item {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
#company-philosophy .philosophy-item h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #262626;
}
#company-philosophy .philosophy-item p {
  line-height: 1.8;
  color: #666;
}

#company-history {
  background-color: #fff;
}
#company-history .history-timeline {
  max-width: 600px;
  margin: 0 auto;
}
#company-history .history-item {
  display: flex;
  padding: 20px 0;
  border-left: 3px solid #262626;
  margin-left: 80px;
  padding-left: 30px;
  position: relative;
}
#company-history .history-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 25px;
  width: 12px;
  height: 12px;
  background: #262626;
  border-radius: 50%;
}
#company-history .history-item .year {
  width: 100px;
  font-weight: bold;
  color: #262626;
  position: absolute;
  left: -110px;
  top: 20px;
}
#company-history .history-item .event {
  color: #666;
  line-height: 1.7;
}
@media (max-width: 768px) {
  #company-history .history-item {
    margin-left: 20px;
    flex-direction: column;
  }
  #company-history .history-item .year {
    position: static;
    margin-bottom: 8px;
  }
}

#certifications {
  background-color: #f8f9fa;
}
#certifications .cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
#certifications .cert-item {
  background: white;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#certifications .cert-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}
#certifications .cert-item p {
  color: #666;
  font-weight: 600;
}

#access-info {
  background-color: #fff;
}
#access-info .access-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 768px) {
  #access-info .access-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
#access-info .address-info h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #333;
}
#access-info .address-info .address {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #666;
}
#access-info .address-info .contact-info p {
  margin-bottom: 8px;
  color: #666;
}
#access-info .address-info .contact-info p strong {
  color: #333;
}
#access-info .transport-info h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #333;
}
#access-info .transport-info .transport-method {
  margin-bottom: 30px;
}
#access-info .transport-info .transport-method h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #333;
}
#access-info .transport-info .transport-method ul {
  list-style: none;
  padding-left: 0;
}
#access-info .transport-info .transport-method ul li {
  padding: 4px 0;
  color: #666;
  position: relative;
  padding-left: 16px;
}
#access-info .transport-info .transport-method ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #262626;
}
#access-info .map-container iframe {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#access-info .map-container .map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #262626;
  text-decoration: none;
  font-weight: 600;
}
#access-info .map-container .map-link:hover {
  text-decoration: underline;
}
#access-info .map-container .map-link img {
  width: 16px;
  height: 16px;
}

#surrounding-area {
  background-color: #f8f9fa;
}
#surrounding-area .area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
#surrounding-area .area-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
#surrounding-area .area-item h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #333;
}
#surrounding-area .area-item ul {
  list-style: none;
  padding: 0;
}
#surrounding-area .area-item ul li {
  padding: 8px 0;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
}
#surrounding-area .area-item ul li:last-child {
  border-bottom: none;
}

#access-contact {
  background-color: #fff;
  text-align: center;
}
#access-contact .contact-description {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}
#access-contact .contact-methods {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
#access-contact .contact-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 30px;
  background: #262626;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
#access-contact .contact-btn:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}
#access-contact .contact-btn img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  #access-contact .contact-btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }
}

#staff-introduction {
  background-color: #fff;
}
#staff-introduction .staff-grid {
  display: grid;
  gap: 60px;
}
#staff-introduction .staff-member {
  display: flex;
  gap: 40px;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 12px;
}
#staff-introduction .staff-member.executive {
  background: linear-gradient(135deg, #262626, #1a1a1a);
  color: white;
}
#staff-introduction .staff-member.executive .staff-info h3,
#staff-introduction .staff-member.executive .staff-info .position,
#staff-introduction .staff-member.executive .staff-info .message,
#staff-introduction .staff-member.executive .staff-info h4 {
  color: white;
}
#staff-introduction .staff-member.executive .qualifications span {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
@media (max-width: 768px) {
  #staff-introduction .staff-member {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
  }
}
#staff-introduction .staff-photo {
  flex-shrink: 0;
}
#staff-introduction .staff-photo img {
  width: 150px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 768px) {
  #staff-introduction .staff-photo img {
    width: 120px;
    height: 160px;
    margin: 0 auto;
    display: block;
  }
}
#staff-introduction .staff-info {
  flex: 1;
}
#staff-introduction .staff-info h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #333;
}
#staff-introduction .staff-info .position {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 16px;
}
#staff-introduction .staff-info .qualifications {
  margin-bottom: 20px;
}
#staff-introduction .staff-info .qualifications span {
  display: inline-block;
  background: #e9ecef;
  color: #666;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-right: 8px;
  margin-bottom: 8px;
}
#staff-introduction .staff-info .message {
  line-height: 1.8;
  margin-bottom: 24px;
  color: #666;
}
#staff-introduction .staff-info .experience h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #333;
}
#staff-introduction .staff-info .experience ul {
  list-style: none;
  padding: 0;
}
#staff-introduction .staff-info .experience ul li {
  padding: 4px 0;
  color: #666;
  position: relative;
  padding-left: 16px;
}
#staff-introduction .staff-info .experience ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #262626;
}

#team-philosophy {
  background-color: #f8f9fa;
}
#team-philosophy .team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #team-philosophy .team-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
#team-philosophy .team-description h3,
#team-philosophy .team-strengths h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}
#team-philosophy .team-description p,
#team-philosophy .team-strengths p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #666;
}
#team-philosophy .team-strengths ul {
  list-style: none;
  padding: 0;
}
#team-philosophy .team-strengths ul li {
  padding: 16px 0;
  border-bottom: 1px solid #e9ecef;
}
#team-philosophy .team-strengths ul li:last-child {
  border-bottom: none;
}
#team-philosophy .team-strengths ul li strong {
  display: block;
  color: #333;
  margin-bottom: 4px;
}

#staff-contact {
  background-color: #262626;
  color: white;
  text-align: center;
}
#staff-contact h2 {
  color: white;
}
#staff-contact .contact-description {
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.9;
}
#staff-contact .contact-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
#staff-contact .contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
#staff-contact .contact-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
#staff-contact .contact-btn.secondary {
  background: white;
  color: #262626;
}
#staff-contact .contact-btn.secondary:hover {
  background: #f8f9fa;
}
#staff-contact .contact-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  #staff-contact .contact-btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }
}

#vacant-situation {
  background-color: #fff;
}
#vacant-situation .situation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 768px) {
  #vacant-situation .situation-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
#vacant-situation .problems h3 {
  color: #dc3545;
  margin-bottom: 30px;
}
#vacant-situation .solutions h3 {
  color: #28a745;
  margin-bottom: 30px;
}
#vacant-situation .problem-list,
#vacant-situation .solution-list {
  display: grid;
  gap: 24px;
}
#vacant-situation .problem-item,
#vacant-situation .solution-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 8px;
}
#vacant-situation .problem-item .icon,
#vacant-situation .solution-item .icon {
  font-size: 2rem;
  flex-shrink: 0;
}
#vacant-situation .problem-item div,
#vacant-situation .solution-item div {
  flex: 1;
}
#vacant-situation .problem-item div h4,
#vacant-situation .solution-item div h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #333;
}
#vacant-situation .problem-item div p,
#vacant-situation .solution-item div p {
  color: #666;
  line-height: 1.6;
}
#vacant-situation .problem-item {
  background: #fff5f5;
  border-left: 4px solid #dc3545;
}
#vacant-situation .solution-item {
  background: #f0fff4;
  border-left: 4px solid #28a745;
}

#utilization-methods {
  background-color: #f8f9fa;
}
#utilization-methods .methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
#utilization-methods .method-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
#utilization-methods .method-item:hover {
  transform: translateY(-5px);
}
#utilization-methods .method-icon {
  font-size: 3rem;
  text-align: center;
  padding: 30px 20px 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}
#utilization-methods .method-content {
  padding: 0 30px 30px;
}
#utilization-methods .method-content h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #333;
  text-align: center;
}
#utilization-methods .method-content .description {
  text-align: center;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.7;
}
#utilization-methods .method-content .features,
#utilization-methods .method-content .process {
  margin-bottom: 24px;
}
#utilization-methods .method-content .features h4,
#utilization-methods .method-content .process h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #333;
}
#utilization-methods .method-content .features ul,
#utilization-methods .method-content .features ol,
#utilization-methods .method-content .process ul,
#utilization-methods .method-content .process ol {
  padding-left: 20px;
}
#utilization-methods .method-content .features ul li,
#utilization-methods .method-content .features ol li,
#utilization-methods .method-content .process ul li,
#utilization-methods .method-content .process ol li {
  padding: 4px 0;
  color: #666;
  line-height: 1.6;
}

#vacant-features {
  background-color: #fff;
}
#vacant-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
#vacant-features .feature-item {
  text-align: center;
  padding: 30px 20px;
}
#vacant-features .feature-item .feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
#vacant-features .feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #333;
}
#vacant-features .feature-item p {
  color: #666;
  line-height: 1.7;
}

#case-studies {
  background-color: #f8f9fa;
}
#case-studies .cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}
#case-studies .case-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
#case-studies .case-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
#case-studies .case-content {
  padding: 30px;
}
#case-studies .case-content h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #333;
}
#case-studies .case-content .case-details {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}
#case-studies .case-content .case-details p {
  margin: 4px 0;
  font-size: 0.9rem;
  color: #666;
}
#case-studies .case-content .case-details p strong {
  color: #333;
}
#case-studies .case-content .case-description {
  line-height: 1.7;
  color: #666;
}

#consultation-flow {
  background-color: #fff;
}
#consultation-flow .flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
#consultation-flow .flow-step {
  text-align: center;
  position: relative;
}
#consultation-flow .flow-step .step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #262626;
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 60px;
  margin-bottom: 20px;
}
#consultation-flow .flow-step h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #333;
}
#consultation-flow .flow-step p {
  color: #666;
  line-height: 1.7;
}

#vacant-cta {
  background-color: #262626;
  color: white;
  text-align: center;
}
#vacant-cta h2 {
  color: white;
  margin-bottom: 20px;
}
#vacant-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}
#vacant-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
#vacant-cta .cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
#vacant-cta .cta-btn.phone {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
#vacant-cta .cta-btn.phone:hover {
  background: rgba(255, 255, 255, 0.2);
}
#vacant-cta .cta-btn.phone img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
#vacant-cta .cta-btn.form {
  background: white;
  color: #262626;
}
#vacant-cta .cta-btn.form:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  #vacant-cta .cta-btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }
}

/* Custom styles can be added here temporarily */
