/* ==========================================================================
   Sunbig Theme — Figma準拠リビルド
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --navy: #0E2659;
  --navy-dark: #091a45;
  --navy-light: #1a3570;
  --orange: #e8852e;
  --orange-hover: #d4751f;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ea;
  --gray-400: #adb5bd;
  --gray-600: #6c757d;
  --text: #333333;
  --text-light: #666666;
  --font: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --container: 1140px;
  --ease: 0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; scroll-padding-top: 120px; }
body { font-family: var(--font); color: var(--text); line-height: 1.8; background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
ul, ol { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; }

/* ---------- Accessibility ---------- */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  word-wrap: normal !important;
}

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  line-height: 1.5;
}
.btn--contact-header {
  background: var(--navy);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 1rem;
}
.btn--contact-header:hover { background: var(--navy-light); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.btn--navy:hover { background: var(--navy-light); }

.btn--outline {
  background: var(--navy);
  color: var(--white);
  padding: 14px 40px;
  border-radius: 4px;
  font-size: 0.875rem;
}
.btn--outline:hover { background: var(--navy-light); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Upper */
.header-upper__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.header-logo a { display: flex; align-items: center; }
.header-logo img { height: 40px; width: auto; }
.header-logo__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.header-logo__corp {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.header-nav-primary { display: flex; align-items: center; gap: 4px; }
.nav-primary__list { display: flex; align-items: center; }
.nav-primary__list > li { position: relative; }
.nav-primary__list > li > a {
  display: block;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.nav-primary__list > li > a:hover,
.nav-primary__list > li.current-menu-item > a { color: var(--orange); }

/* Dropdown arrow */
.nav-primary__list > li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 4px;
  vertical-align: 2px;
}

/* Dropdown */
.nav-primary__list > li > .sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--ease);
  z-index: 100;
}
.nav-primary__list > li:hover > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-primary__list .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
  transition: background var(--ease);
}
.nav-primary__list .sub-menu li:last-child a { border-bottom: none; }
.nav-primary__list .sub-menu li a:hover { background: var(--gray-50); color: var(--orange); }

/* Lower */
.header-lower {
  border-top: 1px solid var(--gray-200);
}
.nav-secondary__list {
  display: flex;
  justify-content: center;
}
.nav-secondary__list > li > a {
  display: block;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  transition: color var(--ease);
}
.nav-secondary__list > li > a:hover { color: var(--orange); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger__line { display: block; width: 100%; height: 2px; background: var(--navy); transition: all var(--ease); }
.hamburger.is-active .hamburger__line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.is-active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.is-active .hamburger__line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu — header内、上段ナビの直下に展開 */
.mobile-menu {
  display: none;
  position: absolute;
  top: 70px; left: 0;
  width: 100%; height: calc(100vh - 70px);
  background: var(--white);
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.mobile-menu.is-open { display: block; }
.mobile-menu__inner { padding: 20px; }
.mobile-menu__list li a {
  display: block;
  padding: 14px 16px;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--text);
}
.mobile-menu__list li a:hover { color: var(--orange); background: var(--gray-50); }
.mobile-menu__list--secondary { margin-top: 24px; }
/* モバイル内ではPC用ナビスタイルをリセット */
.mobile-menu .nav-secondary__list,
.mobile-menu .nav-primary__list { display: block; }
.mobile-menu .nav-secondary__list > li > a,
.mobile-menu .nav-primary__list > li > a {
  white-space: normal;
  padding: 14px 16px;
  font-size: 0.9375rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-menu .nav-primary__list > li > a {
  text-decoration: none;
}
.mobile-menu .menu-item-has-children { position: relative; }
.mobile-menu .menu-item-has-children > a::after { display: none; }
.mobile-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.submenu-toggle__icon {
  display: block;
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-right: 2px solid var(--gray-600);
  border-bottom: 2px solid var(--gray-600);
  transform: rotate(45deg);
  transition: transform var(--ease);
}
.mobile-menu .menu-item-has-children > a.is-open .submenu-toggle__icon { transform: rotate(-135deg); }
.mobile-menu .sub-menu { display: none; padding-left: 0; background: var(--gray-50); }
.mobile-menu .sub-menu a { font-size: 0.875rem; color: var(--text-light); padding-left: 32px; }
.btn--contact-mobile { display: block; width: 100%; margin-top: 20px; padding: 16px; text-align: center; font-size: 1rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-swiper {
  width: 100%;
}
.hero__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}
/* Swiper ページネーション */
.hero-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--white);
  opacity: 1;
}
.hero-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--orange);
}

.hero_toparea {
	text-align: center;
    font-size: 1.4em;
	line-height: 1.4;
    padding: 10px;
    font-weight: bold;
	color: var(--orange);
}
.hero_toparea a:hover {
	opacity: .7;
}
/* ==========================================================================
   News Ticker
   ========================================================================== */
.news-ticker {
  background: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}
.news-ticker__inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  font-size: 1rem;
}
.news-ticker__label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.15em;
  flex-shrink: 0;
  padding-bottom: 2px;
  line-height: 1.6;
}
.news-ticker__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  min-width: 0;
}
.news-ticker__item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-200);
  line-height: 1.8;
  min-width: 0;
}
.news-ticker__item:last-child { border-bottom: none; }
.news-ticker__date { color: var(--text); flex-shrink: 0; }
.news-ticker__title {
  color: var(--text);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  display: block;
}
.news-ticker__title:hover { color: var(--orange); }

/* ==========================================================================
   Intro (キャッチコピー)
   ========================================================================== */
.intro {
  padding: 72px 0;
  background: var(--white);
}
.intro__inner {
  display: flex;
  align-items: center;
  gap: 56px;
}
.intro__image {
  flex: 0 0 50%;
  border-radius: 4px;
  overflow: hidden;
}
.intro__img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.intro__text { flex: 1; }
@media screen and (max-width: 770px){
  .intro__text{
    flex: 1;
    text-align: center;
  }
}
.intro__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}
.intro__desc {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 2;
  margin-bottom: 32px;
}

/* ==========================================================================
   Section Common
   ========================================================================== */
.section { padding: 80px 0; }
.section__heading {
  text-align: center;
  margin-bottom: 40px;
}
.section__title {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
  margin-bottom: 0;
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}

/* ==========================================================================
   Business Section (事業紹介)
   ========================================================================== */
.section--business { background: var(--gray-50); }

/* Main card */
.biz-main {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 28px;
}
.biz-main__visual {
  position: relative;
  overflow: hidden;
}
.biz-main__visual::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 80%);
  position: absolute;  
  top: 0;
  left: 0;
}
.biz-main__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255, 255, 255, 0);
}
.biz-main__img {
  width: 100%;
  height: 320px;
  padding: 1em;
  object-fit: cover;
  display: block;
  border-radius: 25px;
}
.biz-main__overlay {
  position: absolute;
  top: 80%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.biz-main__body {
  padding: 20px 22px 24px;
  text-align: center;
}
.biz-main__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}
.biz-main__desc {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.biz-main__footer { display: flex; justify-content: flex-end; }

/* Business Flow Image */
.biz-main__flow-img {
  max-width: 540px;
  width: 100%;
  margin: 0 auto 24px;
  display: block;
}

/* Detail link */
.detail-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.1em;
  border-bottom: 0.7px dashed var(--gray-600);
  padding-bottom: 2px;
}
.detail-link:hover { color: var(--orange); border-color: var(--orange); }

/* Sub cards */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.biz-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
}
.biz-card__img {
  width: 100%;
  height: 220px;
  padding: 1em;
  object-fit: cover;
  display: block;
  border-radius: 25px;
}
.biz-card__image { overflow: hidden; }
.biz-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.biz-card__title {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.biz-card__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.biz-card__desc {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
  flex: 1;
}
/*.biz-card__footer { display: flex; justify-content: flex-end; }*/
.biz-card__footer { display: flex; justify-content: center; padding-top: 20px;}

/* ==========================================================================
   Results Section (取引実績)
   ========================================================================== */
.section--results {
  position: relative;
  padding: 72px 0 40px;
}
.results__bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.results__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: 0% 85%; }
.results__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(14,38,89,0.55);
}
.results__inner { position: relative; z-index: 1; }
.results__title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  padding-bottom: 14px;
  position: relative;
  display: inline-block;
}
.results__title-wrap { text-align: center; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: -100px;
  position: relative;
}
.results-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 6px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow var(--ease), transform var(--ease);
  aspect-ratio: 1.1 / 1;
}
.results-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  transform: translateY(-4px);
}
.results-card__text {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ==========================================================================
   Property Section (物件情報)
   ========================================================================== */
.section--property {
  background: var(--white);
  padding-top: 160px;
}
.property-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.property-header__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.property-header__link:hover { color: var(--orange); }
.property-header__line {
  display: inline-block;
  width: 48px;
  border-top: 1px solid currentColor;
  position: relative;
}
.property-header__line::after {
  content: '';
  position: absolute;
  right: -1px; top: -4px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.property-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.property-card__wrap {
  display: flex;
  flex-direction: column;
  padding-top: 24px;
}
.property-card__badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.property-card__badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 3px 12px;
  line-height: 1.4;
  margin-bottom: 6px;
}
.property-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow var(--ease);
}
.property-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.14); }
.property-card__image { overflow: hidden; }
.property-card__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform var(--ease);
}
.property-card:hover .property-card__image img { transform: scale(1.04); }
.property-card__placeholder {
  width: 100%; height: 180px;
  background: var(--gray-200);
}
.property-card__body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.property-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.property-card__desc {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.property-card__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.property-card__desc + .property-card__price { margin-top: auto; }
.property-card__price-badge {
  background: var(--navy);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: 2px;
  flex-shrink: 0;
}
.property-tolist {
	display: flex;
	grid-gap: 30px;
	justify-content: center;
	padding-top: 30px;
}
@media (max-width: 768px) {

.property-tolist {
	flex-direction: column;
	grid-gap: 20px;

	}
	.property-tolist .property-header {
		margin-bottom: 0;
	}
}
@media (min-width: 768px) {
	.sp_only {
		display: none;
	}

.property-tolist {
	justify-content: center;
}
}
/* ==========================================================================
   Property List Hero & Filter (物件一覧)
   ========================================================================== */
.property-hero {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
}
.property-hero__overlay {
  width: 100%;
}
.property-hero__title {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.property-hero__sub {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
}
.property-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: -40px;
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 24px;
}
.property-tabs__item {
  flex: 1;
  min-width: 0;
  padding: 14px 8px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: background var(--ease), border-color var(--ease);
}
.property-tabs__item:hover {
  background: var(--gray-50);
}
.property-tabs__item.is-active {
  border-bottom-color: var(--orange);
  color: var(--orange);
  background: var(--white);
}
.property-count {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.property-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--text-light);
  font-size: 0.9375rem;
}
.property-card__address {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: auto;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .property-hero { height: 160px; }
  .property-hero__title { font-size: 1.5rem; }
  .property-tabs { margin-top: -24px; flex-wrap: wrap; }
  .property-tabs__item { flex: 0 0 auto; padding: 10px 14px; font-size: 0.75rem; }
}

/* ==========================================================================
   Property Detail (物件詳細)
   ========================================================================== */
.property-detail__image {
  margin-bottom: 24px;
}
.property-detail__image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.property-detail__overview {
  margin-top: 24px;
  margin-bottom: 40px;
}
.property-detail__section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 20px;
}
.property-table {
  width: 100%;
  border-collapse: collapse;
}
.property-table th,
.property-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.property-table th {
  width: 140px;
  background: var(--gray-50);
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.property-detail__description {
  margin-bottom: 40px;
}
.property-detail__cta {
  background: var(--gray-50);
  border-radius: 6px;
  padding: 32px;
  text-align: center;
  margin-top: 40px;
}
.property-detail__cta-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.property-detail__cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.property-detail__cta-hours {
  font-size: 0.8125rem;
  color: var(--text-light);
}
@media (max-width: 768px) {
  .property-table th {
    width: 100px;
  }
  .property-table th,
  .property-table td {
    padding: 10px 12px;
    font-size: 0.875rem;
  }
  .property-detail__cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .property-detail__cta {
    padding: 24px 16px;
  }
}

/* ==========================================================================
   Flow Section (売買の流れ)
   ========================================================================== */
.section--flow { background: var(--white); }
.flow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.flow-card {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 5;
  transition: box-shadow var(--ease);
}
.flow-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.flow-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ==========================================================================
   CTA Section (お問い合わせ)
   ========================================================================== */
.section--cta { background: var(--navy); }
.cta__inner { text-align: center; }
.cta__title {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 14px;
  position: relative;
  display: inline-block;
}
.cta__title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 2px;
  background: var(--white);
}
.cta__desc {
  color: #F8FAFC;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  line-height: 1.8;
}
.cta__info { margin-bottom: 40px; }
.cta__hours {
  color: #F8FAFC;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: 4px;
}
.cta__holiday { color: #F8FAFC; font-size: 0.875rem; font-weight: 600; }
.cta__actions {
  display: flex;
  gap: 120px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cta__icon {
  width: 64px; height: 64px;
  flex-shrink: 0;
}
.cta__icon svg {
  width: 100%; height: 100%;
}
.cta__action-text {
  color: #F8FAFC;
  font-size: 1rem;
  font-weight: 600;
}
.cta__action-text:hover { color: rgba(255,255,255,0.8); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--gray-50);
  color: var(--text);
  padding-top: 56px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 44px;
}
.footer__logo img { height: 36px; width: auto; }
.footer__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.footer__logo-corp {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.footer__address {
  margin-top: 18px;
  font-size: 0.8125rem;
  color: var(--text);
  line-height: 2;
}
.footer__address a { color: var(--text); }
.footer__address a:hover { color: var(--orange); }
.footer__note {
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--text-light);
}
.footer__brand {
	flex-grow: 1;
}
.footer__related { display: flex; gap: 12px; margin-top: 20px; }
.footer__related {font-size: 0.8125rem; flex-wrap: wrap; gap: 5px;}
.footer__related h3 {font-size: 0.8125rem; font-weight: bold; width: 100%;}
.footer__related > div {width: 100%; display: flex; align-items: center; grid-gap: 10px; padding-left: 1em;}
.footer__related p.footer__relatedco {font-size: 0.9rem; font-weight: bold;}
.footer__related p.footer__note {margin: 0;}
.gmap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
}
.gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 1024px) {
	.address_map {margin-top: 10px;}
}
@media (min-width: 1024px) {
.address_map {width: 280px;}
.address_wrap {display: flex; justify-content: space-between;}
}
/* Footer Nav */
.footer__nav-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 20px;
}
.footer__nav-columns { display: flex; gap: 40px; }
.footer__nav-list li { margin-bottom: 10px; }
.footer__nav-list li::before {
  content: '■';
  font-size: 0.45rem;
  color: var(--navy);
  margin-right: 8px;
  vertical-align: middle;
}
.footer__nav-list li a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--ease);
}
.footer__nav-list li a:hover { color: var(--orange); }

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid var(--gray-200);
  padding: 18px 0;
}
.footer__bottom-inner { text-align: center; }
.footer__privacy {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--navy);
  margin-bottom: 6px;
  transition: color var(--ease);
}
.footer__privacy:hover { color: var(--orange); }
.footer__copyright {
  font-size: 0.75rem;
  color: var(--navy);
}

/* ==========================================================================
   Page / Single / Archive (下層ページ共通)
   ========================================================================== */
.page-header {
  background: var(--navy);
  padding: 48px 0;
  text-align: center;
}
.page-header__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.page-content { padding: 60px 0; }
.entry-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.entry-content {
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 2;
}
.entry-content h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 16px;
}
.entry-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 20px;
}
/* wp-block-heading: h1/h2の差異で列内揃いが崩れるのを防ぐ */
.entry-content h1.wp-block-heading,
.entry-content h2.wp-block-heading {
  font-size: 1.25rem;
  margin: 36px 0 16px;
}
.entry-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 16px;
}
.entry-content a:not(.wp-block-button__link):not(.btn) {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.entry-content a:not(.wp-block-button__link):not(.btn):hover { color: var(--orange-hover); }
.entry-content p { margin-bottom: 1.5em; }
.entry-content img { border-radius: 4px; }
.entry-content ul, .entry-content ol { margin: 0 0 1.5em 1.5em; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.5em; }

/* hr (GENSEN style.css 準拠) */
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }

/* WP Block: CSSリセットとの競合回避 */
.entry-content .wp-block-columns { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 1.5em; }
.entry-content .wp-block-column { flex: 1; min-width: 0; }
@media (max-width: 768px) {
  .entry-content .wp-block-columns { flex-direction: column; }
}

.breadcrumb { padding: 12px 0; font-size: 0.9rem; color: var(--gray-600); }
.breadcrumb a { color: var(--gray-600); }
.breadcrumb a:hover { color: var(--orange); }

.nav-links { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 12px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: all var(--ease);
}
.nav-links .page-numbers.current { background: var(--navy); color: var(--white); border-color: var(--navy); }
.nav-links .page-numbers.dots { border-color: transparent; pointer-events: none; }
.nav-links a.page-numbers:hover { border-color: var(--orange); color: var(--orange); }
.nav-links a.page-numbers:hover.current { border-color: var(--navy); color: var(--white); }

.archive-list { display: flex; flex-direction: column; }
.archive-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.archive-item__date { flex-shrink: 0; font-size: 0.8125rem; color: var(--gray-600); }
.archive-item__title { font-size: 0.9375rem; color: var(--text); transition: color var(--ease); }
.archive-item__title:hover { color: var(--orange); }

/* ---------- Entry Meta / Thumbnail (single) ---------- */
.entry-meta {
  text-align: center;
  margin-bottom: 24px;
  color: var(--gray-600);
  font-size: 0.875rem;
}
.entry-thumbnail {
  margin-bottom: 32px;
  text-align: center;
}
.entry-thumbnail img {
  border-radius: 4px;
}

/* ---------- 404 Error Page ---------- */
.error-page {
  text-align: center;
  padding: 80px 20px;
}
.error-page__code {
  font-size: 5rem;
  font-weight: 700;
  color: var(--gray-200);
  margin-bottom: 16px;
  line-height: 1;
}
.error-page__text {
  margin-bottom: 32px;
  color: var(--text-light);
  font-size: 0.9375rem;
}

/* ==========================================================================
   About Page (会社概要)
   ========================================================================== */

/* Intro */
.about-intro {
  padding: 60px 0;
  text-align: center;
}
.about-intro__logo {
  display: block;
  margin: 0 auto 24px;
  max-width: 160px;
  height: auto;
}
.about-intro__tagline {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 2;
}

/* Greeting */
.about-greeting {
  padding: 60px 0;
}
.about-greeting__text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--text);
  text-align: center;
}
.about-greeting__text p {
  margin-bottom: 1.5em;
}
.about-greeting__quotes {
  margin: 2em 0;
  font-size: 1.125rem;
  line-height: 2.2;
}
.about-greeting__name {
  font-size: 1.0625rem;
  color: var(--navy);
  margin-top: 2em;
}

/* History */
.about-history {
  padding: 60px 0;
}

.about-info {
  padding: 60px 0;
  background: var(--gray-50);
}

/* Company Table */
.company-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.company-table th,
.company-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
  line-height: 1.8;
}
.company-table th {
  width: 160px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  white-space: nowrap;
  vertical-align: top;
}
.company-table td a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.company-table td a:hover {
  color: var(--orange);
}

/* Access */
.about-access {
  padding: 60px 0;
}
.about-access__map {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.about-access__map iframe {
  display: block;
  width: 100%;
  height: 400px;
}
.about-access__info {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 2;
  text-align: center;
}

/* ==========================================================================
   Contact Page (お問い合わせ)
   ========================================================================== */
.contact-info {
  max-width: 640px;
  margin: 0 auto 48px;
  background: var(--gray-50);
  border-radius: 6px;
  padding: 32px 36px;
}
.contact-info__block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contact-info__icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.contact-info__label {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info__tel {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.contact-info__tel:hover {
  color: var(--orange);
}
.contact-info__hours {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Contact Form (CF7 — GENSEN design-plus.css 準拠) */
.wpcf7 { width: 100%; border: 1px solid #ddd; background: #fafafa; padding: 0; margin: 0 0 2.5em; font-size: 0.875rem; }
.wpcf7 form { margin: 1.5em 1.5em 0; }
.wpcf7 p { margin-bottom: 1em; font-size: 0.75rem; }
.wpcf7 input, .wpcf7 textarea { width: 100%; box-sizing: border-box; border: 1px solid #ccc; line-height: 1.2; padding: 8px; }
.wpcf7 select, .wpcf7 input[type=checkbox], .wpcf7 input[type=radio] { width: auto; max-width: 97%; border: 1px solid #ccc; padding: 8px; }
.wpcf7 select, .wpcf7 .wpcf7-list-item-label { line-height: 1.2; font-size: 0.875rem; }
.wpcf7-list-item { display: block; }
.wpcf7 textarea { height: 300px; }
.wpcf7 input:focus, .wpcf7 textarea:focus { outline: none; border: 1px solid #bbb; box-shadow: inset 0 0 5px rgba(0,0,0,0.2); }
.wpcf7 input.wpcf7-submit, .wpcf7 .wpcf7-previous { position: relative; display: block; width: 280px; max-width: 100%; height: auto; margin: 30px auto 0; padding: 14px 40px; background-color: var(--orange); cursor: pointer; border: none !important; border-radius: 50px; color: #fff; text-align: center; text-decoration: none; font-size: 1rem; font-weight: 700; font-family: var(--font); line-height: 1.5; outline: none; transition: background .3s; }
.wpcf7 input.wpcf7-submit:hover, .wpcf7 .wpcf7-previous:hover { background-color: var(--orange-hover); }
.wpcf7 .wpcf7-not-valid { background: pink; }
.wpcf7 .wpcf7-response-output { margin: 10px 0 0; padding: 8px 35px 8px 14px; border-radius: 4px; }
.wpcf7 .wpcf7-validation-errors { color: #B94A48; background-color: #F2DEDE; border: 1px solid #EED3D7; }
.wpcf7 .wpcf7-mail-sent-ok { color: #3A87AD; background-color: #D9EDF7; border: 1px solid #BCE8F1; }
.wpcf7 .wpcf7-previous + br { display: none; }
.wpcf7 form .wpcf7-response-output { margin: 2em 0.5em 2em; padding: 0; border: none; text-align: center; }
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output { color: #dc3232; font-size: 1em; }

/* CF7 フォーム内 dl/dt/dd */
.wpcf7 dt { margin-bottom: 4px; }
.wpcf7 dd { margin-left: 0; margin-bottom: 0; }
.must { font-size: 0.75rem; font-weight: 700; color: #e74536; margin-left: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 24px; }

.contact-form__body .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.75rem;
  margin-top: 4px;
}
.contact-form__body .wpcf7-response-output {
  text-align: center;
  font-size: 0.875rem;
  padding: 12px;
  border-radius: 4px;
}

/* ==========================================================================
   Flow Page (売買の流れ)
   ========================================================================== */
.flow-heading {
  text-align: center;
  margin-bottom: 48px;
}
.flow-heading__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
}
.flow-lead {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 2;
}
.flow-steps {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.flow-step {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}
.flow-step:last-child {
  padding-bottom: 0;
}
/* Connecting line */
.flow-step::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.flow-step:last-child::before {
  display: none;
}
.flow-step__number {
  flex-shrink: 0;
  width: 80px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}
.flow-step__number span {
  font-size: 1.125rem;
  margin-left: 4px;
}
.flow-step__content {
  flex: 1;
  padding-top: 2px;
}
.flow-step__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.5;
}
.flow-step__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 2;
}

/* ==========================================================================
   Page CTA (下層ページ用CTA)
   ========================================================================== */
.page-cta {
  background: var(--gray-50);
  padding: 48px 0;
  margin-top: 60px;
}
.page-cta__inner {
  text-align: center;
}
.page-cta__text {
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 24px;
}
.page-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.page-cta__margin {
  margin: 1em
}

/* ==========================================================================
   Results Detail Page (取引実績詳細)
   ========================================================================== */
.results-hero {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.results-hero__bg {
  position: absolute;
  inset: 0;
}
.results-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 画像ギャラリー（自社投資開発・販売向け） */
.results-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.results-gallery figure {
  margin: 0;
}
.results-gallery figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.results-gallery figcaption {
  font-size: 0.8125rem;
  color: var(--text);
  margin-top: 8px;
  text-align: center;
  line-height: 1.6;
}

/* 会社名リスト（事業用仲介向け） */
.results-companies {
  columns: 2;
  column-gap: 48px;
  margin-bottom: 40px;
}
.results-companies li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9375rem;
  break-inside: avoid;
}

/* ---------- PC/タブレット: tel:リンク無効化 ---------- */
@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .header-nav-primary { display: none; }
  .header-lower { display: none; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .property-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Hero */
  .hero__img { max-height: 300px; }

  /* News */
  .news-ticker__inner { flex-direction: column; align-items: stretch; gap: 8px; }

  /* Intro */
  .intro { padding: 48px 0; }
  .intro__inner { flex-direction: column; gap: 28px; }
  .intro__image { flex: none; }
  .intro__img { height: 220px; }

  /* Sections */
  .section { padding: 48px 0; }
  .section__title { font-size: 1.25rem; }

  /* Business */
  .biz-grid { grid-template-columns: 1fr; gap: 20px; }
  .biz-main__body { padding: 20px; }
  .biz-main__img { height: 220px; }
  .biz-main__overlay { font-size: 1rem; }
  /* Results */
  .results-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: -40px; }
  .results-card__text { font-size: 1.125rem; }
  .section--property { padding-top: 100px; }

  /* Property */
  .property-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Flow */
  .flow-grid { grid-template-columns: 1fr; gap: 16px; }

  /* CTA */
  .section--cta { padding: 48px 0; }
  .cta__title { font-size: 1.25rem; }
  .cta__actions { gap: 48px; }

  /* Footer */
  .footer__inner { flex-direction: column; gap: 32px; }
  .footer__nav-columns { flex-direction: column; gap: 0; }
  .footer__related { flex-direction: column; }

  /* Page */
  .page-header { padding: 32px 0; }
  .page-header__title { font-size: 1.375rem; }
  .page-content { padding: 40px 0; }
  .archive-item { flex-direction: column; gap: 4px; }

  /* About */
  .about-intro { padding: 40px 0; }
  .about-intro__tagline { font-size: 1rem; }
  .about-greeting { padding: 40px 0; }
  .about-greeting__text { font-size: 0.875rem; }
  .about-info { padding: 40px 0; }
  .about-history { padding: 40px 0; }
  .company-table th { width: 120px; padding: 14px 16px; font-size: 0.8125rem; }
  .company-table td { padding: 14px 16px; font-size: 0.8125rem; }
  .about-access { padding: 40px 0; }
  .about-access__map iframe { height: 280px; }

  /* Contact */
  .contact-info { padding: 24px 20px; }
  .contact-info__block { flex-direction: column; align-items: center; text-align: center; }
  .contact-info__tel { font-size: 1.25rem; }

  /* Flow Steps */
  .flow-lead { font-size: 0.875rem; margin-bottom: 32px; }
  .flow-step { gap: 16px; }
  .flow-step__number { width: 64px; height: 36px; font-size: 0.6875rem; }
  .flow-step__number span { font-size: 1rem; }
  .flow-step::before { left: 32px; top: 48px; }
  .flow-step__title { font-size: 1rem; }

  /* Results Detail */
  .results-hero { height: 200px; }
  .results-gallery { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .results-companies { columns: 1; }

  /* Page CTA */
  .page-cta { margin-top: 40px; padding: 36px 0; }
  .page-cta__actions { flex-direction: column; align-items: center; }

  /* Error */
  .error-page { padding: 48px 20px; }
  .error-page__code { font-size: 3.5rem; }
}

@media (max-width: 480px) {

  .hero__img { max-height: 200px; }
  .property-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .results-card__text { font-size: 1rem; }
}
@media (min-width: 1400px) {

	.hero__img {
	  max-height: 700px;
		max-width: 1400px;
		margin: 0 auto;
	}
}
.grecaptcha-badge { visibility: hidden; }
.text_sm {font-size: 0.8125rem;}


.printfooter {
	display: none;
}
@media print {
  /* 印刷用スタイル*/
.printfooter {
	display: block;
	}
	footer,
  .breadcrumb, .page-header , .site-header , .wpcf7, .wp-block-buttons, .wp-block-spacer,
	.property-card__badges {
    display: none !important;
  }
	.wp-block-heading {
		margin: 10px 0 15px 0 !important;
	}
	.wp-block-image,
	.wp-block-cover {
    /* モダンブラウザ用：画像内で改ページしない */
    break-inside: avoid;
    /* 古いブラウザ用（必要に応じて） */
    page-break-inside: avoid;
  }
}

/* 実績ページギャラリー調整 */
#investment_wrap .wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before,
#organization_wrap .wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before {
	display: none;
}
#investment_wrap .wp-block-gallery.has-nested-images .wp-block-image,
#organization_wrap .wp-block-gallery.has-nested-images .wp-block-image {
	padding-bottom: 2em;
}

.entry-content img {
	border-radius: 0 !important;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
	padding: .2em 0 !important;
	background: none !important;
	color: #000 !important;
	text-shadow: none;
}
.wp-block-gallery.has-nested-images {
	padding-bottom: 0.5em;
}