* {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: #fff;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.6;
}

a {
  color: #1e90ff;
  text-decoration: none;
}

/* ===== Container ===== */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header Base ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.logo-img {
  height: 45px;
  width: auto;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.custom-logo-link {
  display: inline-block;
}

.custom-logo {
  height: 40px;
  width: auto;
}

/* ===== PC Navigation ===== */
.main-nav .nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav .nav-list a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 5px 10px;
}

.main-nav .nav-list a:hover {
  color: #0078d4;
}

.main-nav .nav-list .employees-link {
  color: #666;
  font-size: 14px;
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://swallow-realestate.com/wp-content/uploads/2025/11/HERO_bgpc.png');
  background-color: #F8F9FA;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.hero-title {
  font-size: 60px;
  font-weight: 780;
  color: #2866ae;
  margin: 0 0 5px 0;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.3),
    1px 1px 2px rgba(0, 0, 0, 0.2),
    0 0 10px rgba(40, 102, 174, 0.1);
}

.hero-subtitle {
  font-size: 22px;
  color: #333;
  margin: 0 0 40px 5px;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.3),
    1px 1px 2px rgba(0, 0, 0, 0.2),
    0 0 10px rgba(40, 102, 174, 0.1);
}

/* ===== Property Search ===== */
/*.property-search {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}*/

.search-title {
  font-size: 20px;
  color: #333;
  margin: 0 0 30px 0;
  font-weight: 600;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.2),
    1px 1px 1px rgba(0, 0, 0, 0.2),
    0 0 10px rgba(40, 102, 174, 0.1)
}

.search-section {
  margin-bottom: 25px;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.2),
    1px 1px 1px rgba(0, 0, 0, 0.2),
    0 0 10px rgba(40, 102, 174, 0.1)
}

.search-category {
  font-size: 20px;
  color: #333;
  margin: 0 0 15px 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-btn {
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.5em;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  height: 39px;
  width: 150px;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.05),
    0 1px 2px rgba(0, 0, 0, 0.1);
}

.search-btn:hover,
.search-btn.active {
  background: #4a90e2;
  color: #fff;
  border-color: #4a90e2;
  box-shadow: 
    0 6px 12px rgba(74, 144, 226, 0.3),
    0 3px 6px rgba(74, 144, 226, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

/* ===== Property Wizard ===== */
.property-wizard {
  display: grid;
  gap: 30px;
  min-height: 400px;
  margin-top: 90px;
  padding: 0 20px;
}

.wizard-step {
  margin-bottom: 25px;
  padding: 20px 0;
}

/* ===== Search Continuation (Main Section) ===== */
.search-continuation {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin: 40px 0;
  border: none;
}

.search-continuation .wizard-step {
  margin-bottom: 30px;
}

.search-continuation .search-title {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 20px;
  text-shadow: none;
}

.search-continuation .wizard-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.search-continuation .wizard-cta {
  padding: 12px 24px;
  border-radius: 20px; 
  /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  color: white;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
  height: 39px;
  min-width: 150px;
  box-sizing: border-box;
  line-height: 1;
  font-size: 14px;
}

.search-continuation .wizard-cta:hover:not([aria-disabled="true"]) {
  transform: translateY(-1px);
  filter: brightness(1.1); /* 少し明るくする */
}

.wizard-tile.active {
  background: #4a90e2 !important;
  color: #fff !important;
  border-color: #4a90e2;
}

.pref-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.pref-btn {
  background: #198754;
  color: #fff;
  border: none;
  /*padding: 12px 16px;*/
  border-radius: 20px;
  cursor: pointer;
}

.pref-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.pref-btn.active,
.pref-btn:active,
.pref-btn:focus {
  background: #4a90e2;
  color: #fff;
  border-color: #4a90e2;
  box-shadow: 0 6px 12px rgba(74,144,226,0.18);
  outline: none;
}

.wizard-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wizard-cta {
  background: #198754 ;
  color: #fff ;
  border: none ;
  padding: 16px 24px ;
  border-radius: 20px ;
  cursor: pointer;
  text-decoration: none ;
  transition: all 0.3s;
  display: inline-block ;
  font-size: 16px ;
  font-weight: 500 ;
}

.wizard-cta:hover:not([aria-disabled="true"]) {
  background: #4a90e2;
  transform: translateY(-1px);
}

.wizard-cta[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

/* ウィザードの有効化状態 */
.pref-btn.enabled {
  opacity: 1 !important;
}

.wizard-cta-enabled {
  pointer-events: auto ;
  background: #198754 ;
  color: white ;
}

.area-search {
  background: #0d6efd ; /* 青色 - 地域から探す */
}

.rail-search {
  background: #6f42c1 ; /* 紫色 - 沿線から探す */
}

.wizard-help {
  color: #666;
  font-size: 0.9rem;
  margin: 0.4rem 0 0;
}

/* ===== sell section ===== */
.sell-property-btn {
  width: 300px;
  background: #ff9800;
  color: #fff;
  font-size: 18px;
  border-radius: 20px;
  height: auto;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  height: auto;
  width: 300px;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.05),
    0 1px 2px rgba(0, 0, 0, 0.1);
}

.sell-property-btn:hover,.sell-property-btn.active {
  background: #4a90e2;
  color: #fff;
  border-color: #4a90e2;
  box-shadow: 
    0 6px 12px rgba(74, 144, 226, 0.3),
    0 3px 6px rgba(74, 144, 226, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .sell-property-btn {
    width: 100%;
    font-size: 16px;
  }
}

/* ===== Hamburger (SP only) ===== */
.hamburger {
  display: none;
  width: 25px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #2866ae; /* updated color */
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

/* When hamburger has .open, morph three bars into an X */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== Mobile Nav ===== */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 15px 0;
  text-align: center;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
}

.mobile-nav-list li {
  margin: 10px 0;
}

.mobile-nav-list a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
}

/* ===== Footer ===== */
.site-footer {
  background: #f8f9fa;
  margin-top: 50px;
}

.footer-content {
  border-bottom: 1px solid #e0e0e0;
  padding: 40px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 50px;
}

.footer-left {
  flex: 2;
}

.footer-right {
  flex: 1;
}

.company-name {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0 0 20px 0;
}

.license-info {
  margin-bottom: 20px;
}

.license-info p {
  margin: 5px 0;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.company-address {
  margin-bottom: 30px;
}

.company-address p {
  margin: 5px 0;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.footer-map {
  margin-top: 20px;
}

.footer-map iframe {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 100%;
}

.footer-menu h4 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin: 8px 0;
}

.footer-menu a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #0078d4;
}

.footer-copyright {
  background: #333;
  color: #fff;
  padding: 15px 0;
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  font-size: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-left,
  .footer-right {
    flex: none;
  }
  
  .company-name {
    font-size: 18px;
  }

  .hero-section {
    min-height: 650px;
  }

  .hero-background{
    background-image: url('https://swallow-realestate.com/wp-content/uploads/2025/11/HERO_bgsp.png');
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 20px;
  }
  
  .hero-title {
    font-size: 44px;
    letter-spacing: 1px;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .property-search {
    padding: 5px;
  }
  
  .search-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .property-wizard {
    margin-top: 0;
    padding: 0 10px;
  }
  
  .search-buttons {
    gap: 8px;
    justify-content: flex-start;
  }
  
  .search-btn {
    padding: 0.5em 0.3em;
    font-size: 13px;
    height: 39px;
    width: calc(50% - 4px);
    min-width: 0;
    box-sizing: border-box;
  }
  
  .search-continuation .wizard-actions {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
  }
  
  .search-continuation .wizard-cta {
    flex: 1;
    min-width: 0;
    padding: 12px 8px;
    font-size: 13px;
  }
  
  .search-section {
    margin-bottom: 20px;
  }
}

/* iPhone SE (375px) 以下でさらに最適化 */
@media (max-width: 375px) {
  .search-btn {
    font-size: 12px;
    padding: 0.4em 0.2em;
    width: calc(50% - 4px);
  }
  
  .search-continuation .wizard-cta {
    font-size: 12px;
    padding: 12px 5px;
  }
  
  .property-wizard {
    padding: 0 5px;
  }
  
  .search-title {
    font-size: 16px;
  }
  
  .search-category {
    font-size: 18px;
  }
}

/* ===== Wizard additional styles ===== */
.search-continuation .wizard-cta{
  padding-top: 15px;
}
.wizard-btn {
  padding: 10px 20px;
  background: #1976d2;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid #1976d2;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 500;
}

.wizard-btn:hover:not(.disabled) {
  background: white;
  color: #1976d2;
}

.wizard-btn.disabled {
  background: #e0e0e0;
  color: #9e9e9e;
  border-color: #e0e0e0;
  cursor: not-allowed;
  pointer-events: none;
}

.wizard-cta:disabled,
.wizard-cta[aria-disabled="true"] {
  background: #e0e0e0;
  color: #9e9e9e;
  border-color: #e0e0e0;
  cursor: not-allowed;
  pointer-events: none;
}

.pref-btn:disabled {
  background: #e0e0e0;
  color: #9e9e9e;
  border-color: #e0e0e0;
  cursor: not-allowed;
  opacity: 0.5;
}

.wizard-help {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

/* ==============================
 * パンくずリスト
 * ============================== */
.property-breadcrumb {
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 4px solid #357ABD;
}

.property-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.property-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.property-breadcrumb li + li::before {
  content: '>';
  margin: 0 8px;
  color: #999;
  font-size: 12px;
  display: inline-block;
  width: 12px;
  height: 12px;
  text-align: center;
  line-height: 12px;
  flex-shrink: 0;
}

.property-breadcrumb a {
  color: #1e90ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.property-breadcrumb a:hover {
  color: #0066cc;
  text-decoration: underline;
}

.property-breadcrumb [aria-current="page"] {
  color: #333;
  font-weight: 500;
}

.c-breadcrumb_item-home {
  position: relative;
}

.property-breadcrumb .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .property-breadcrumb {
    padding: 8px 0;
  }
  
  .property-breadcrumb li {
    font-size: 13px;
  }
  
  .property-breadcrumb li + li::before {
    margin: 0 6px;
    font-size: 11px;
  }
}

/* ===== Search Results Page ===== */
.page-header {
  background: #fff;
  padding: 30px 0;
  margin-bottom: 40px;
}

.page-title {
  font-size: 28px;
  color: #333;
  margin: 20px 0 10px 0;
  font-weight: 600;
  text-align: center;
}

.search-conditions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.condition-item {
  background: #e3f2fd;
  color: #1976d2;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
}

.search-results {
  padding: 0 0 60px 0;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}

.results-count {
  font-size: 24px;
  color: #333;
  margin: 0;
}

.results-actions {
  display: flex;
  gap: 10px;
}

/* ===== Contact Form 7 Styles ===== */
.wpcf7 {
    max-width: 800px;
    margin: 0 auto;
}

.wpcf7 form {
    background: #fff;
    padding: 30px;
    box-shadow: none;
    border: 1px solid  #DEE2E8;
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7-form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.wpcf7-form-control[readonly] {
    background-color: #f8f9fa !important;
    color: #6c757d;
    cursor: not-allowed;
}

.wpcf7-textarea {
    min-height: 120px;
    resize: vertical;
}

.readonly-field {
    background-color: #f8f9fa;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    margin-bottom: 8px;
}

span.required {
    color: #dc3545;
    margin-left: 4px;
}

.wpcf7-submit {
    background-color: #0d6efd;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.wpcf7-submit:hover {
    background-color: #0b5ed7;
}

.wpcf7-form.sent .wpcf7-response-output {
    border: 2px solid #46b450;
    background: #f7fff7;
    color: #155724;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
}

.wpcf7-form.invalid .wpcf7-response-output {
    border: 2px solid #dc3232;
    background: #fff7f7;
    color: #721c24;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
}

.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.wpcf7-validation-errors {
    border: 2px solid #ffc107;
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

/* デフォルト：両方表示（今まで通り） */

/* 希望連絡方法 = 電話 のとき（電話だけ * 表示） */
.wpcf7-form.contact-method-phone .required-email {
  display: none;
}
.wpcf7-form.contact-method-phone .required-tel {
  display: inline;
}

/* 希望連絡方法 = メール のとき（メールだけ * 表示） */
.wpcf7-form.contact-method-email .required-email {
  display: inline;
}
.wpcf7-form.contact-method-email .required-tel {
  display: none;
}

/* 連絡希望日時はデフォルトでは非表示 */
.contact-tel-only {
  display: none;
}

/* 希望連絡方法が「電話」のときだけ表示 */
.wpcf7-form.contact-method-phone .contact-tel-only {
  display: block;
}

.policy-scroll {
  border: 1px solid #ccc;
  padding: 15px;
  height: 100px; /* ←ここ調整可能 */
  overflow-y: scroll;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
}
.policy-box {
  margin-bottom: 20px;
}

/* ✅ プライバシーポリシー同意チェック：枠線を消して横並びにする */

/* ライン全体の並び調整 */
.wpcf7 .privacy-checkbox {
  display: inline-flex;
  align-items: center;
}

/* テーマが input 用に当てているボックス風スタイルを無効化 */
.wpcf7 .privacy-checkbox .wpcf7-form-control.wpcf7-checkbox {
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  width: auto !important;
}

/* list-item の余白もリセット */
.wpcf7 .privacy-checkbox .wpcf7-list-item {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

/* チェックボックスとテキストを横並びにきれいに */
.wpcf7 .privacy-checkbox .wpcf7-list-item label {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}



/* レスポンシブ対応 */
@media (max-width: 768px) {
  .wpcf7 form {
    padding: 20px;
    margin: 0 10px;
  }
  
  .wpcf7-submit {
    padding: 12px 24px;
    font-size: 14px;
  }
}


/* ===== Company Page Styles ===== */
.company-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

.company-header {
  text-align: center;
  margin-bottom: 20px;
}
.company-header .subtitle {
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: left;
  margin-left: 7px;
}
.company-header .title {
  font-size: 55px;
  font-weight: 700;
  margin-top: -33px;
  text-align: left;
  margin-bottom: 20px;
}

.company-intro {
  max-width: 100%;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.company-table th,
.company-table td {
  border-bottom: 1px solid #ddd;
  padding: 25px 15px;
  vertical-align: top;
  text-align: left;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

.company-table th {
  width: 25%;
  background: #ffffff;
  font-weight: 600;
}

.company-table td div {
  margin-bottom: 4px;
}

.company-table td a {
  color: #333;
  text-decoration: none;
}

.company-table td a:hover {
  text-decoration: underline;
}

.company-business h2,
.company-group h2 {
  font-size: 20px;
  border-left: 4px solid #0066cc;
  padding-left: 10px;
  margin-bottom: 10px;
}

.company-business ul,
.company-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.company-business li,
.company-group li {
  padding: 6px 0;
  border-bottom: 1px dotted #ddd;
}

@media (max-width: 768px){
  .company-header .subtitle{
    margin-left: 5px;
  }
  .company-header .title{
    font-size: 45px;
    margin-top: -25px;
  }
  .company-intro{
    font-size: 14px;
  }
  .company-info{
    font-size: 14px;
  }
  .company-table th{
    width: 30%;
  }
}

/* ===== Property Card Inline Maintenance Fee ===== */
.maintenance-inline {
  display: inline;
  font-size: 14px;
  color: #666;
  font-weight: 400;
  margin-left: 12px;
}

@media (max-width: 768px) {
  .maintenance-inline {
    display: block;
    font-size: 12px;
    margin-left: 0;
    margin-top: 2px;
  }
}

/* ===== Privacy-Policy Page Styles ===== */
.privacy-policy-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

.privacy-policy-header .subtitle {
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: left;
  margin-left: 7px;
}
.privacy-policy-header .title {
  font-size: 55px;
  font-weight: 700;
  margin-top: -33px;
  text-align: left;
  margin-bottom: 20px;
}

