*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1c2760;
  --navy-dark: #161e50;
  --navy-gray: #999AB1;
  --red: #d53f3f;
  --light-red: #fc6060;
  --white: #ffffff;
  --light-gray: #F4F4F4;
  --mid-gray: #e8e8e6;
  --text-dark: #1c2760;
  --text-body: #333;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: var(--text-body);
  background: #fff;
  font-weight: 300;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-logo img {
  width: 200px;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  font-family: 'League Spartan', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}

nav a:hover { opacity: 0.6; }

.nav-reservation {
  border: 1px solid var(--navy);
  padding: 11px 24px 8px;
  font-size: 13px;
  letter-spacing: 0.2em;
}

.nav-reservation:hover {
  color: var(--navy) !important;
}

.nav-reservation::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--navy);
  vertical-align: 4px;
  margin-left: 10px;
}

/* ===== FIRST VIEW ===== */
#fv {
  padding: 68px 80px 80px;
  background: #fff;
  overflow: hidden;
}

.fv-hero {
  position: relative;
  margin-top: 48px;
  margin-bottom: 48px;
  height: clamp(300px, 42vw, 620px);
}

.fv-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background-color: #fff;
  border-radius: 12px;
  width: 800px;
  aspect-ratio: 800 / 314;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-right {
  position: absolute;
  left: 38%;
  right: -80px;
  top: 0;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.fv-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.fv-desc {
  font-size: clamp(22px, 2.6vw, 26px);
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 40px;
  font-weight: 300;
  text-align: center;
}

.fv-desc-sub {
  font-size: clamp(14px, 1.8vw, 15px);
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 48px;
  font-weight: 300;
  text-align: center;
}

.fv-reservation {
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-family: 'League Spartan', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: #fff;
  background: var(--red);
  text-decoration: none;
  padding: 20px 48px 16px;
  transition: opacity 0.2s;
}

.fv-reservation:hover {
  opacity: 0.85;
  color: #fff !important;
}

.pc-only { display: block; }
.sp-only { display: none; }

/* ===== SECTION COMMON ===== */
.section-label {
  font-family: 'League Spartan', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-bottom: 0;
}

.section-heading {
  font-family: 'League Spartan', sans-serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1;
}

.section-sub {
  font-size: 13px;
  letter-spacing: 0.7em;
  color: var(--red);
}

.header-right {
  display: none;
}

.hamburger {
  display: none;
}

.header-reservation-mobile {
  display: none;
}

.red-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--red);
  vertical-align: middle;
  margin-right: 12px;
}

/* ===== CONCEPT ===== */
#concept {
  background: var(--navy);
  color: white;
  padding: 120px 0;
}

.concept-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.concept-heading {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: white;
  margin-bottom: 12px;
}

.concept-sub {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--light-red);
  margin-bottom: 72px;
  font-weight: bold;
}

.concept-tagline {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300;
  line-height: 1.8;
  color: white;
  margin-bottom: 72px;
  letter-spacing: 0.05em;
}

.concept-divider {
  width: 1px;
  height: 64px;
  background: rgba(252, 96, 96, 0.8);
  margin: 0 auto 72px;
}

.concept-body {
  text-align: left;
  max-width: 660px;
  margin: 0 auto;
}

.concept-body p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  font-weight: 300;
}

.concept-body em {
  font-style: normal;
  color: var(--light-red);
  font-weight: bold;
}

.concept-photo {
  margin-top: 96px;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.concept-photo img {
  width: calc(50% - 16px);
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ===== FACILITY ===== */
#facility {
  background: white;
  padding: 120px 80px;
}

.facility-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.facility-header {
  margin-bottom: 80px;
}

.facility-heading {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--navy);
  margin-bottom: 8px;
}

.facility-sub {
  display: flex;
  align-items: center;
  gap: 0;
}

.facility-entrance {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.facility-entrance-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.facility-item-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--navy);
  margin-bottom: 6px;
}

.facility-item-sub {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 20px;
}

.facility-item-desc {
  font-size: 15px;
  line-height: 2;
  color: #555;
  font-weight: 300;
}

.facility-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.facility-grid-stagger {
  align-items: start;
}

.facility-card--offset {
  margin-top: 80px;
}

.facility-grid-stagger .facility-card-img {
  height: auto;
}

.facility-card img,
.facility-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  border-radius: 12px;
}

.facility-card-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--navy);
  margin-bottom: 4px;
}

.facility-card-sub {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--navy-gray);
}

.facility-card-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  border-bottom: 1px solid var(--mid-gray);
  padding-bottom: 12px;
}

.facility-card-label-row .facility-card-title {
  margin-bottom: 0;
}

.facility-card-label-row .facility-card-sub {
  text-align: right;
}

.facility-specs-divider {
  border: none;
  border-top: 1px solid var(--navy);
  margin: 64px 0 48px;
}

.facility-specs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.facility-specs-label {
  font-family: 'League Spartan', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 16px;
}

.facility-specs-value {
  font-size: 15px;
  line-height: 2;
  color: var(--navy);
  font-weight: 300;
}

.facility-specs-note {
  font-size: 13px;
  color: var(--navy-gray);
  margin-top: 8px;
}

/* ===== PRICE ===== */
#price {
  background: var(--light-gray);
  padding: 120px 80px;
}

.price-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.price-header {
  text-align: center;
  margin-bottom: 96px;
}

.price-heading {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--navy);
  margin-bottom: 8px;
}

.price-tax-note {
  font-size: 12px;
  color: #999;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

.price-section {
  margin-bottom: 80px;
}

.price-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.price-section-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--navy);
  margin-bottom: 4px;
}

.price-section-sub {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--red);
}

.price-section-desc {
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.05em;
}

.price-divider {
  border: none;
  border-top: 1px solid #c8c8c4;
  margin-bottom: 32px;
}

.price-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: start;
}
.price-groups.cowarking {
  grid-template-columns: 1fr 3fr;
}
.price-groups.cowarking > *:first-child {
  grid-column: 1 / -1;
}
.price-group.dropin,
.price-group.corporate {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
}
.price-group.dropin .price-group-label,
.price-group.corporate .price-group-label {
  grid-column: 1 / -1;
}

.price-group-label {
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 10px;
  font-weight: 400;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0db;
}

.price-row:first-child {
  border-top: 1px solid #e0e0db;
}

.price-row-name {
  font-size: 14px;
  color: var(--navy);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.price-row-value {
  font-family: 'League Spartan', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
}

.price-row-unit {
  font-size: 11px;
  color: #999;
  margin-left: 3px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

p.individual_plan {
  margin-top: 10px;
}
ul.individual_plan {
  line-height: 150%;
}
ul.individual_plan li {
  list-style-position: outside;
  margin-left: 20px;
}

.price-options {
  padding: 28px 0 32px;
}

.price-options-label {
  font-family: 'League Spartan', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--navy);
  margin-bottom: 16px;
}

.price-option-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0ee;
  font-weight: 300;
}

.price-option-row:last-child { border-bottom: none; }

.price-reservation-link {
  text-align: center;
  margin-top: 64px;
}

.price-reservation-link a {
  font-family: 'League Spartan', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: #fff;
  background: var(--navy);
  text-decoration: none;
  padding: 18px 64px 14px;
  transition: opacity 0.2s;
}

.price-reservation-link a:hover {
  opacity: 0.8;
}

/* ===== NEWS ===== */
#news {
  background: white;
  padding: 120px 80px;
}

.news-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.news-header {
  margin-bottom: 64px;
}

.news-heading {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--navy);
  margin-bottom: 12px;
}

.news-list {
  border-top: 1px solid var(--mid-gray);
}

.news-item-meta {
  display: contents;
}

.news-item {
  display: grid;
  grid-template-columns: 120px 200px 1fr;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--mid-gray);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.news-item:hover { background: #fafafa; }

.news-date {
  font-family: 'League Spartan', sans-serif;
  font-size: 14px;
  color: var(--navy-gray);
  letter-spacing: 0.05em;
}

.news-cat {
  font-family: 'League Spartan', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--red);
  padding: 3px 8px;
  display: inline-block;
  text-transform: uppercase;
}

.news-title {
  font-size: 15px;
  color: var(--navy);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.news-view-all {
  text-align: right;
  margin-top: 32px;
}

.news-view-all a {
  font-family: 'League Spartan', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--navy);
  text-decoration: none;
}

.news-view-all a:hover { opacity: 0.6; }

/* ===== LOCATION ===== */
#location {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.location-map {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-map-frame {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.location-info {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-heading {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 12px;
}

.location-sub {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 64px;
}

.location-sub span {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--light-red);
}

.location-block {
  margin-bottom: 40px;
}

.location-label {
  font-family: 'League Spartan', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--light-red);
  margin-bottom: 16px;
}

.location-address p,
.location-access p {
  font-size: 16px;
  color: white;
  line-height: 1.8;
  font-weight: 300;
}

.location-access-highlight {
  color: var(--light-red) !important;
  font-size: 14px !important;
}

/* ===== FAQ ===== */
#faq {
  background: var(--light-gray);
  padding: 120px 80px;
}

.faq-header {
  text-align: center;
  margin-bottom: 80px;
}

.faq-heading {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--navy);
  margin-bottom: 8px;
}

.faq-list,
#faq .ewd-ufaq-faqs {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--navy);
}

.faq-item,
#faq .ewd-ufaq-faq-div {
  border-bottom: 1px solid var(--mid-gray);
  margin: 0;
  padding: 0;
  clear: none;
  margin-bottom: 0 !important;
}
#faq .ewd-ufaq-faq-div,
#faq .ewd-ufaq-faq-title,
#faq .ewd-ufaq-faq-body {
  background: none;
  border-radius: 0;
}
#faq .ewd-ufaq-faq-div .ewd-ufaq-faq-title:before,
#faq .ewd-ufaq-faq-div .ewd-ufaq-faq-body:before {
  display: none;
}

#faq .ewd-ufaq-faq-div .ewd-ufaq-faq-title:before,
#faq .ewd-ufaq-faq-div .ewd-ufaq-faq-title:after {
  top: calc(28px + (24px / 2));
  right: 8px;
  left: auto;
  display: block;
  position: absolute;
  margin: 0;
  line-height: 24px;
  transform: translateY(-50%);
}
#faq .ewd-ufaq-faq-div .ewd-ufaq-faq-title:before {
  content: "\2b";
  font-weight: 100;
  font-size: 24px;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#faq .ewd-ufaq-faq-div.ewd-ufaq-post-active .ewd-ufaq-faq-title:before {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg);
}

#faq .ewd-ufaq-faq-div .ewd-ufaq-faq-title:after {
  opacity: 0;
  content: "\f068";
  font-weight: 600;
  font-size: 16px;
  margin-right: 3px;
  transform: translateY(-50%) rotate(90deg);
}
#faq .ewd-ufaq-faq-div.ewd-ufaq-post-active .ewd-ufaq-faq-title:after {
  opacity: 1;
  transform: translateY(-50%) rotate(0deg);
}

.faq-question,
#faq .ewd-ufaq-faq-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 8px;
  cursor: pointer;
  user-select: none;
  gap: 24px;
  position: relative;
}

.faq-question-text,
#faq .ewd-ufaq-faq-div .ewd-ufaq-faq-title h4 {
  font-size: 15px;
  color: var(--navy);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
#faq .ewd-ufaq-faq-title-text {
  width: auto;
  float: none;
}

.faq-icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  position: relative;
  color: var(--navy-gray);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--navy-gray);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
  width: 1px;
  height: 100%;
  left: 45%;
  top: 0;
}

.faq-icon::after {
  width: 100%;
  height: 1px;
  top: 45%;
  left: 0;
}

.faq-item.open .faq-icon::before {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

#faq .ewd-ufaq-faq-div .ewd-ufaq-faq-body {
  margin: 0;
  padding: 0;
}

.faq-answer-inner,
#faq .ewd-ufaq-faq-div .ewd-ufaq-faq-body p {
  padding: 0 8px 28px;
  font-size: 14px;
  line-height: 2;
  color: #666;
  font-weight: 300;
}

/* ===== POWERED BY ===== */
#powered-by {
  background: #fff;
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.powered-label {
  font-family: 'League Spartan', sans-serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: #999;
}

.powered-logo {
  background: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.assetlead-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  min-height: 240px;
}

.footer-logo {
}
.footer-logo img {
  width: 350px;
}

.footer-contact {
  font-family: 'League Spartan', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--navy);
  background: #fff;
  text-decoration: none;
  padding: 20px 48px 16px;
  margin-top: 15px;
  transition: opacity 0.2s;
  display: inline-block;
}

.footer-contact:hover {
  opacity: 0.85;
  color: var(--navy);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  text-align: right;
}

.footer-nav a {
  font-family: 'League Spartan', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.footer-nav a:hover { color: rgba(255,255,255,0.8); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  header {
    padding: 0 24px;
    height: 60px;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }

  .header-reservation-mobile {
    display: inline-flex;
    align-items: center;
    font-family: 'League Spartan', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--navy);
    text-decoration: none;
    border: 1px solid var(--navy);
    padding: 8px 12px 6px;
    white-space: nowrap;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--navy);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  header.nav-open .hamburger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  header.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  header.nav-open .hamburger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  header nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 0;
    gap: 0;
    border-top: 1px solid var(--mid-gray);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 99;
  }

  header.nav-open nav {
    display: flex;
  }

  header nav a {
    font-size: 14px;
    letter-spacing: 0.1em;
    padding: 16px 24px;
    border-bottom: 1px solid var(--mid-gray);
    width: 100%;
  }

  header nav a:last-child { border-bottom: none; }

  .nav-reservation {
    text-align: center;
    background: var(--navy);
    color: white !important;
    padding: 18px 24px;
    letter-spacing: 0.2em;
  }
  .nav-reservation::after {
    display: none;
  }

  .breadcrumb {
    padding-top: 0!important;
  }

  .pc-only { display: none; }
  .sp-only { display: block; }

  #concept, #facility, #price, #news, #location, #faq {
    scroll-margin-top: 60px;
  }

  #fv { padding: 96px 20px 64px; }
  .fv-hero { height: 56vw; }
  .fv-left { width: 60%; left: -20px; padding: 0 15px; }
  .fv-right { left: 30%; right: -24px; }
  .fv-logo-img { max-width: 100%; }
  #concept { padding: 80px 0; }
  .concept-inner { padding: 0 20px; }
  .concept-photo { flex-direction: column; }
  .concept-photo img { width: 100%; }
  #facility { padding: 80px 32px; }
  .facility-entrance { grid-template-columns: 1fr; }
  .facility-grid-2 { grid-template-columns: 1fr; }
  .facility-card--offset { margin-top: 0; }
  .facility-specs { grid-template-columns: 1fr; }
  #price { padding: 80px 32px; }
  .price-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .price-groups,
  .price-groups.cowarking,
  .price-group.dropin,
  .price-group.corporate { 
    grid-template-columns: 1fr; 
  }
  .price-groups,
  .price-groups.cowarking {
    gap: 32px; 
  }
  #news { padding: 80px 32px; }
  .news-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 0;
    text-align: left;
  }
  .news-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }
  .news-title { text-align: left; }
  #location { grid-template-columns: 1fr; }
  #location { display: flex; flex-direction: column; }
  .location-map { padding: 0 32px 32px; order: 2; }
  .location-info { padding: 48px 32px 32px; order: 1; }
  #faq { padding: 80px 32px; }
  footer { padding: 48px 32px; grid-template-columns: 1fr; gap: 32px; }
  .footer-nav { text-align: left; }
}

/* ===== FLAT お知らせ 記事詳細 ===== */

/* singleTitle: fixed ヘッダー分の余白 */
.singleTitle {
    margin-top: 68px;
}

/* アーカイブ・カテゴリページ: fixed ヘッダー分の余白 */
.flat-news-criacaoflat-page .breadcrumb {
    margin-top: 68px;
}

h4.widget-title.sub-section-title {
  margin-bottom: 0!important;
}

.widget_flat_news_yearly_archive > ul li a {
    font-family: "Lato", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo, Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

.c-card__badge {
  background: var(--navy);
}

.breadcrumb-list li,
.breadcrumb-list li a,
.c-card__meta {
  color: var(--navy)!important;
}

.content h3 {
  border-left: 5px solid var(--navy)!important;
}

@media (max-width: 900px) {
    .singleTitle {
        margin-top: 60px;
    }
    .flat-news-criacaoflat-page .breadcrumb {
        margin-top: 60px;
    }
}

/* ===== WORDPRESS ADMIN BAR ===== */
.admin-bar header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar header {
    top: 46px;
  }
}
