@charset "UTF-8";

/* ベース初期化 */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  color: #462412;
}

/* 媒体要素の基本 */
img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

/* フォームのフォント継承 */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* ユーティリティ */
.pc-none {
  display: none;
}

.sp-none {
  display: block;
}

.sp-left {
  text-align: center !important;
}

/* スクリーンリーダーのみ表示 */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* --------------------------------
共通ボタン
-------------------------------- */

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 60px;
  padding: 0 120px 0 40px;
  background: #c45736;
  border: 1px solid #c45736;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  box-sizing: border-box;
  transition: 0.3s;
}

.btn-arrow::before {
  content: "";
  position: absolute;
  right: 48px;
  top: 50%;
  width: 58px;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
  transition: 0.3s;
}

.btn-arrow::after {
  content: "";
  position: absolute;
  right: 48px;
  top: 50%;
  width: 22px;
  height: 2px;
  background: #fff;
  transform: translateY(-8px) rotate(28deg);
  transform-origin: right center;
  transition: 0.3s;
}

.btn-arrow:hover {
  background: #fff;
  color: #c45736;
}

.btn-arrow:hover::before,
.btn-arrow:hover::after {
  background: #c45736;
}

/* -----------------------------
   header
--------------------------------*/
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none !important; /* 影がついている場合は削除 */
  position: fixed;
}

.header_scrolled .site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none !important; /* 影がついている場合は削除 */
}

.header_scrolled .site-header-logo {
  display: block !important;
}

.header_scrolled .global-nav-list {
  max-height: 60px;
  align-items: center;
}

#site-header-container.container {
  max-width: 1440px;
}

.header_scrolled .site-header .global-nav {
  display: flex;
  align-items: center;
}

.device-pc .global-nav-list > li > a {
  padding: 14px 8px;
}

.global-nav-list > li:last-child > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 60px;
  padding: 0 24px;
  border: 1px solid #c85a38;
  color: #c85a38;
  background-color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.global-nav-list > li:last-child > a:hover {
  color: #fff;
  background-color: #c85a38;
}

.global-nav-list > li:nth-last-child(2) > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 20px;
  background-color: #c85a38;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #c85a38;
  transition: 0.3s;
  margin-left: 8px;
}

.global-nav-list > li:nth-last-child(2) {
  margin-right: 14px;
}

.global-nav-list > li:nth-last-child(2) > a:hover {
  background-color: #fff;
  color: #c85a38;
}

/* -----------------------------
   TOP
--------------------------------*/
.top-mv {
  position: relative;
}

.top-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 28%,
    rgba(255, 255, 255, 0.65) 42%,
    rgba(255, 255, 255, 0) 58%
  );
}

.top-mv-copy {
  position: absolute;
  left: 7%;
  top: 50%;
  transform: translateY(-42%);
  z-index: 3;
  color: #462412;
}

.top-mv-copy__en {
  margin: 0 0 40px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(72px, 9.2vw, 132px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
  color: #462412;
}

.top-mv-copy__main {
  margin: 0 0 22px;
  font-size: clamp(24px, 2.15vw, 34px);
  font-weight: 700;
  line-height: 1.45;
  color: #462412;
}

.top-mv-copy__sub {
  margin: 0 0 28px;
  font-weight: 700;
}

.top-mv-copy__btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 320px;
  min-height: 60px;
  padding: 0 110px 0 40px;
  background: #c45736;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  border: 1px solid #c45736;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.top-mv-copy__btn:hover {
  background: #fff;
  color: #c45736;
}

.top-mv-copy__btn:hover::before,
.top-mv-copy__btn:hover::after {
  background: #c45736;
}

.top-mv-copy__btn::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 31px;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
}

.top-mv-copy__btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 62%;
  width: 13px;
  height: 1px;
  background: #fff;
  transform: translateY(-8px) rotate(28deg);
  transform-origin: right center;
}

.homes-section {
  padding: 120px 0;
  background: #f7f5f2;
}

.homes-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.homes-card {
  overflow: hidden;
  background: #fff;
}

.homes-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.homes-card__img {
  position: relative;
  overflow: hidden;
}

.homes-card__img img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* 共通 */
.homes-card__status {
  position: absolute;
  top: 20px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 30px;
  padding: 0 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

/* 販売中 */
.homes-card__status--for-sale {
  background: #c45736;
}

/* 建築中・成約済み：大きく表示 */
.homes-card__status--for-sale,
.homes-card__status--building,
.homes-card__status--sold {
  top: 50%;
  left: 50%;
  min-width: 180px;
  min-height: 128px;
  padding: 0 32px;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  width: 100%;
}

.homes-card:has(.homes-card__status--building) .homes-card__img img,
.homes-card:has(.homes-card__status--sold) .homes-card__img img {
  filter: brightness(0.72);
}

/* 建築中 */
.homes-card__status--building {
  background: rgba(84, 116, 67, 0.92);
}

/* 成約済み */
.homes-card__status--sold {
  background: #c0c0c0;
}

.homes-card__body {
  padding: 24px;
}

.homes-card__title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.homes-card h3:where(:not(.wp-block-post-title)) {
  border-bottom: none;
}

.homes-card h3::after {
  display: none;
}

.homes-card__loan {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 11px;
  border-bottom: 1px dashed #d8c9ad;
}

.homes-card__loan-label {
  font-size: 12px;
  font-weight: 500;
  color: #6e655c;
}

.homes-card__loan-price {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.homes-card__loan-unit {
  font-size: 14px;
  font-weight: 400;
}

.homes-card__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 44px;
}

.homes-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.homes-card__icon {
  width: 22px;
  color: #b8b8b8;
  font-size: 20px;
  line-height: 1;
}

.homes-card__more {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 160px;
  margin-left: auto;
  padding-right: 72px;
  padding-bottom: 10px;
  color: #c45736;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border-bottom: solid 1px #c45736;
  transition: opacity 0.3s ease;
}

.homes-card__more::before,
.homes-card__more::after {
  transition: transform 0.3s ease;
}

.homes-card__more::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 52px;
  height: 1px;
  background: #c45736;
  transform: translateY(-50%);
}

.homes-card__more::after {
  content: "";
  position: absolute;
  right: 0;
  top: 66%;
  width: 16px;
  height: 1px;
  background: #c45736;
  transform: translateY(-5px) rotate(28deg);
  transform-origin: right center;
}

.homes-card a:hover .homes-card__more {
  opacity: 0.7;
}

.homes-card a:hover .homes-card__more::before {
  transform: translate(6px, -50%);
}

.homes-card a:hover .homes-card__more::after {
  transform: translate(6px, -5px) rotate(28deg);
}

.vk_button .has-text-color.vk_button_link-type-text:hover,
.vk_button .has-text-color.vk_button_link-type-text:hover *,
.editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover,
.editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover * {
  text-decoration: none !important;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.section-heading__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(54px, 6vw, 96px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #462412;
}

.section-heading__label {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0px;
  /* min-height: 78px; */
  padding: 9px 38px;
  border: 1px solid #8f6a5b;
  color: #462412;
}

.section-heading__label .section-heading__label-large {
  font-size: 42px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  color: #462412 !important;
}

.section-heading__label .section-heading__label-text {
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  color: #462412 !important;
}

.section-heading__link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #c45736;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  padding-bottom: 10px;
  padding-right: 70px;
  justify-content: flex-end;
  border-bottom: 1px solid #c45736;
  transition: opacity 0.3s ease;
}

.section-heading__link:hover {
  color: #c45736;
  opacity: 0.7;
}

.section-heading__link::before,
.section-heading__link::after {
  transition: transform 0.3s ease;
}

.section-heading__link:hover::before {
  transform: translate(6px, -50%);
}

.section-heading__link:hover::after {
  transform: translate(6px, -5px) rotate(28deg);
}

.section-heading__link::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 52px;
  height: 1px;
  background: #c45736;
  transform: translateY(-50%);
  border-bottom: solid 1px #c45736;
}

.section-heading__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 66%;
  width: 16px;
  height: 1px;
  background: #c45736;
  transform: translateY(-5px) rotate(28deg);
  transform-origin: right center;
}

.section-heading__link:hover {
  opacity: 0.7;
}

.homes-heading {
  display: flex;
  align-items: flex-end !important;
  justify-content: space-between;
  gap: 40px;
}

.homes-heading.wp-block-columns {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 40px;
  margin-bottom: 50px;
}

.homes-heading.wp-block-columns > .wp-block-column {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none;
}

.homes-heading.wp-block-columns > .wp-block-column:last-child {
  margin-left: auto;
  border-bottom: solid 1px #bb5535;
}

.reason-section {
  padding: 120px 0 140px;
  background-color: #f9f7f5;
  background-image: linear-gradient(90deg, #f9f7f5 0%, #f9f7f5 24%, #eee7de 24%, #eee7de 100%);
  color: #462412;
  width: 100vw;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.reason-section__inner {
  position: relative;
  z-index: 1;
  /* display: grid;
  grid-template-columns: 32% 68%; */
  align-items: center;
}
.reason-intro {
  position: relative;
  width: calc(100% + ((100vw - 100%) / 2));
  margin-left: calc((100% - 100vw) / 2);
  margin-bottom: 120px;
  padding: 80px 0 70px;
  background: none;
  z-index: 1;
}

.reason-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  right: 28%;
  background: #fff;
  z-index: 1;
  width: 90%;
}

.reason-intro::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -70px;
  width: 100%;
  height: 100%;
  background: url("https://as002.xsrv.jp/sciencehome-hanamaki/wp-content/uploads/2026/05/figure_2.jpg") center / cover
    no-repeat;
  z-index: 0;
}

.reason-intro__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--vk-width-container);
  margin: 0 auto;
  padding: 0 var(--vk-width-container-padding);
  box-sizing: border-box;
}

.reason-intro__en {
  position: relative;
  display: inline-block;
  margin: 0 0 40px;
  padding-bottom: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(120px, 14vw, 200px);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: 0;
  color: #c45736;
}

.reason-intro__en::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 3px;
  background: #462412;
}

.reason-intro__en::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #462412;
}

.reason-intro__title-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
}

.reason-intro__title {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: 0 0 60px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.8;
  border-top: none;
  border-bottom: none;
  padding: 0;
}

.reason-intro__title::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(100% + 20px);
  width: 100%;
  height: 64px;
  background: url("https://as002.xsrv.jp/sciencehome-hanamaki/wp-content/uploads/2026/05/figure_1.png") left top /
    contain no-repeat;
}

.reason-intro__line {
  display: block;
  width: auto;
  max-width: 100%;
  margin-top: 24px;
  margin-bottom: 40px;
}

.reason-intro__title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 4px 8px 4px;
  /* width: 56px;
  height: 56px; */
  margin-left: 4px;
  background: #462412;
  color: #fff;
  line-height: 1;
  font-size: 64px;
}

.reason-intro__text {
  margin: 0 0 32px;
  font-weight: 700;
  line-height: 1.8;
}

.reason-list {
  display: grid;
  gap: 72px;
  padding: 0 20px;
  max-width: 1140px;
  margin: auto;
}

.reason-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr 360px;
  align-items: center;
  background: #fff;
  margin-left: 40px;
}

.reason-card__num {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(72px, 7vw, 104px);
  font-weight: 600;
  line-height: 1;
  color: #c45736;
  transform: translateX(-60px);
  /* padding-left: 10px; */
}

.reason-card__body {
  padding: 48px 30px 48px 0px;
}

.reason-card__label {
  margin: 0 0 12px;
  margin-bottom: 6px !important;
  color: #c45736;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.reason-card__title {
  display: inline-block;
  position: relative;
  margin: 0 0 28px;
  padding: 16px 28px;
  border: 1px solid #8f6a5b;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.3;
}

.reason-card__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 26px;
  height: 1px;
  background: #462412;
  border-bottom: #462412;
  transform: rotate(-45deg);
}

.reason-card__text {
  margin: 0;
  font-weight: 700;
  line-height: 1.8;
}

.reason-card__img {
  height: 100%;
  width: auto;
}

.reason-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason-card__num,
.about-title {
  font-family: "Bodoni Moda", serif;
}

.about-section {
  color: #462412;
}

.about-section__inner {
  display: grid;
  grid-template-columns: 60% 40%;
}

.about-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6vw 80px 0;
  box-sizing: border-box;
}
.about-section__en {
  margin: 0 0 56px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(72px, 8vw, 132px);
  font-weight: 500;
  line-height: 0.85;
  color: #462412;
}

.about-section__title {
  display: inline-block;
  width: fit-content;
  margin: 0 0 34px;
  padding-bottom: 10px;
  border-top: none;
  border-bottom: 4px double #462412;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.5;
}

.about-section__lead {
  margin: 0 0 36px;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.4;
}

.about-section__lead span {
  font-size: clamp(52px, 5vw, 76px);
  line-height: 1;
}

.about-section__box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-left: 8px;
  background: #462412;
  color: #fff;
  font-size: clamp(42px, 4vw, 60px) !important;
  line-height: 1;
}

.about-section__text {
  margin: 0 0 48px;
  font-weight: 700;
  line-height: 1.9;
}

.about-section__image {
  position: relative;
  width: calc(100% + ((100vw - 100%) / 2));
  margin-right: calc((100% - 100vw) / 2);
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: stretch;
}

.about-section__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section .section-heading__link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: fit-content;
  margin-left: 0;
}
/* -----------------------------
   GALLERY
--------------------------------*/

.gallery-section {
  background: #f9f7f5;
}

.gallery-section__inner {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: stretch;
}

.gallery-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6vw 80px 0;
  box-sizing: border-box;
}

.gallery-section__en {
  position: relative;
  display: inline-block;
  margin: 0 0 70px;
  font-family: "Cormorant Garamond", serif;
  white-space: nowrap;
  font-size: clamp(56px, 7vw, 120px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: #462412;
}

.gallery-section__title {
  margin: 0 0 36px;
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 400;
  line-height: 1.5;
  color: #462412;
  border: none !important;
}

.gallery-section__title .gallery-section__dot {
  position: relative;
  display: inline-block;
  font-size: 1.5em;
}

.gallery-section__title .gallery-section__dot::before {
  content: "";
  position: absolute;
  top: -0.18em;
  left: 50%;
  width: 0.16em;
  height: 0.16em;
  background: currentColor;
  border-radius: 50%;
  transform: translateX(-50%);
}

.gallery-section .section-heading__link {
  width: fit-content;
}

.gallery-section__image {
  position: relative;
  width: calc(100% + ((100vw - 100%) / 2));
  margin-right: calc((100% - 100vw) / 2);
  height: auto;
  overflow: hidden;
}

.gallery-section__image img {
  position: absolute;
  inset: 0;
  display: block;
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* -----------------------------
   STAFF
--------------------------------*/
.staff-section {
  position: relative;
}

.staff-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc((100% - 100vw) / 2);
  width: calc(50% + ((100vw - 100%) / 2));
  height: 100%;
  background: #f0e9e1;
  z-index: 0;
}

.staff-section__inner {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.staff-section__body {
  display: grid;
  grid-template-columns: 32% 68%;
  align-items: start;
  gap: 60px;
}

.staff-section__content {
  padding: 60px 0 120px;
  box-sizing: border-box;
}

.staff-section__en {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 7vw, 120px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: #462412;
}

.staff-section__title {
  position: relative;
  margin: 0;
  padding-bottom: 60px;
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 400;
  line-height: 1.4;
  color: #462412;
  border-bottom: none;
  border-top: none;
}

.staff-section__title::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(100% - 42px);
  width: 100%;
  height: 64px;
  background: url("https://as002.xsrv.jp/sciencehome-hanamaki/wp-content/uploads/2026/05/figure_1.png") left top /
    contain no-repeat;
}

.staff-section__title span {
  font-size: 1.5em;
  font-weight: 700;
}

.staff-section__text {
  margin: 0 0 60px;
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
  color: #462412;
}

.staff-section .section-heading__link {
  width: fit-content;
}

.staff-section__list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 20px;
  padding: 60px 0 0;
  box-sizing: border-box;
}

.staff-card {
  width: calc((100% - 80px) / 4);
  text-align: center;
}

.staff-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-card__name {
  margin: 6px 0 4px !important;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #462412;
}

.staff-card__role {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #462412;
}

/* -----------------------------
   NEWS & INSTAGRAM
--------------------------------*/

.news-instagram-section {
  padding: 120px 0;
  background: #f9f7f5;
}

.news-instagram-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  gap: 80px;
  align-items: start;
}

/* -----------------------------
   NEWS
--------------------------------*/

.news-column__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.news-column__title {
  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 7vw, 120px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: #462412;
}

.news-list {
  padding: 40px;
  background: #fff;
  box-sizing: border-box;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 20px 0;

  text-decoration: none;
  color: inherit;

  border-bottom: 1px solid #e5ddd6;
}

.news-item:first-child {
  padding-top: 0;
}

.news-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.news-item__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;

  background: #8d6b56;
}

/* 新着物件 */
.news-item__label--property {
  background: #bb5535;
}

/* イベント */
.news-item__label--event {
  background: #462412;
}

/* 成約御礼 */
.news-item__label--thanks {
  background: #666666;
}

/* その他 */
.news-item__label--other {
  background: #b8b0aa;
}

.news-item__date {
  font-size: 14px;
  line-height: 1;
  color: #8b8179;
}

.news-item__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #462412;
}

.news-item--empty {
  padding: 20px 0;

  font-size: 16px;
  line-height: 1.8;
  color: #462412;
}

/* -----------------------------
   INSTAGRAM
--------------------------------*/

.instagram-column__title {
  margin: 0 0 72px !important;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 7vw, 120px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: #462412;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.instagram-grid a {
  display: block;
  overflow: hidden;
}

.instagram-grid img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instagram-grid a:hover img {
  transform: scale(1.05);
}

.instagram-follow {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-top: 32px;

  font-size: 18px;
  font-weight: 700;
  color: #462412;
  text-decoration: none;
}

.instagram-follow img {
  width: 28px;
  height: 28px;
}

/* -----------------------------
   CTA
--------------------------------*/
.cta-section {
  padding: 120px 0;
  background: #fff;
  border-bottom: 1px solid #d9d2cb;
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 18% 42% 40%;
  gap: 40px;
  align-items: center;
}

.cta-section__left {
  display: flex;
  justify-content: center;
}

.cta-section__en {
  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(64px, 6vw, 110px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: #462412;
}

.cta-section__title {
  margin: 0 0 28px;
  font-size: 39px;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: 3px;
}

.cta-section__text {
  margin: 0 0 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  color: #462412;
}

.cta-section__image img {
  display: block;
  width: 160px;
  height: auto;
}

.cta-section__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-box {
  display: flex;
  align-items: center;
  gap: 18px;
  /* min-height: 132px; */
  padding: 22px 26px;
  box-sizing: border-box;
  text-decoration: none;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s,
    opacity 0.3s;
}

.cta-box:hover {
  opacity: 0.8;
}

.cta-box__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.cta-box__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.cta-box__title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px !important;
}

.cta-box__sub {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
}

.cta-box {
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}

/* TEL */

.cta-box--tel {
  background: #4f220b;
  color: #fff;
}

.cta-box--tel:hover {
  background: #fff;
  color: #4f220b;
  border: 1px solid #4f220b;
}

.cta-box--tel:hover .cta-box__icon img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(59%) saturate(1787%) hue-rotate(10deg) brightness(93%)
    contrast(96%);
}

/* PROPERTY */

.cta-box--property {
  background: #c85d33;
  color: #fff;
}

.cta-box--property:hover {
  background: #fff;
  color: #c85d33;
  border: 1px solid #c85d33;
}

.cta-box--property:hover .cta-box__icon img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(69%) saturate(1118%) hue-rotate(336deg) brightness(94%)
    contrast(92%);
}

/* CONTACT */

.cta-box--contact {
  border: 1px solid #c85d33;
  background: #fff;
  color: #c85d33;
}

.cta-box--contact:hover {
  background: #c85d33;
  color: #fff;
}

.cta-box--contact:hover .cta-box__icon img {
  filter: brightness(0) invert(1);
}

/* -----------------------------
   FOOTER
--------------------------------*/
.footer {
  padding: 64px 0 48px;
  border-top: 1px solid #d8cfc6;
  background: #f7f5f2;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  max-width: 1440px;
  padding: 0 20px;
}

.footer__left {
  width: 360px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 28px;
}

.footer__logo img {
  width: 417px;
}

.footer__info p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  color: #5a311b;
}

.footer__right {
  flex: 1;
}

.footer-nav {
  padding-bottom: 28px;
  border-bottom: 1px solid #d8cfc6;
}

.footer-nav__list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0px;
  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-nav li {
  padding: 0 6px;
}

.footer-nav__list a {
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s;
  color: #462412;
}

.footer-nav__list a:hover {
  opacity: 0.6;
}

.footer__copy {
  margin: 20px 0 0;

  font-size: 12px;
  text-align: right;
  color: #7b7b7b;
}

.fixed-cta {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 9999;
  transform: translateY(-50%) translateX(100%);
  transition: transform 0.4s ease;
}

.fixed-cta.is-show {
  transform: translateY(-50%) translateX(0);
}

.fixed-cta__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 18px 10px;
  background: #b45f6c;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  writing-mode: vertical-rl;
  font-weight: 700;
  line-height: 1.4;
}

.fixed-cta__item--primary {
  background: #bb5535;
}

.fixed-cta__item--primary:hover {
  background: #a4482c;
  color: #fff;
}

.fixed-cta__item--secondary {
  background: #5b3420;
}

.fixed-cta__item--secondary:hover {
  background: #452515;
  color: #fff;
}

.fixed-cta__icon {
  margin-bottom: 10px;
  writing-mode: horizontal-tb;
  font-size: 22px;
}

.fixed-cta__text {
  letter-spacing: 0.08em;
}

.page_top_btn {
  bottom: 9%;
}

/* -----------------------------
   下層ページ共通
--------------------------------*/
body:not(.home) .site-header {
  position: relative;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}
.page-header {
  background-color: #fff;
  color: #462412;
}

.page-header-title-wrap,
h1.page-header-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 英語タイトル */

.page-header-title-en {
  display: block;

  font-family: "Cormorant Garamond", serif;
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;

  color: #462412;
}

/* 日本語タイトル */

.page-header-title-ja {
  display: flex;
  align-items: center;
  gap: 24px;

  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: left;

  color: #462412;
}

.page-header-title-ja::before {
  content: "";

  display: block;

  width: 120px;
  height: 1px;

  background-color: #462412;
}

/* -----------------------------
   下層ページ
--------------------------------*/
.single .entry-meta {
  display: none;
}

.home .cta-section {
  border-top: none;
}

body:not(.home) .cta-section {
  border-top: 1px solid var(--vk-color-border-hr);
}

.property-single__head {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--vk-color-border-hr);
}

.property-single__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.property-single__category {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #bb5535;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.property-single__address {
  color: #7b6a55;
  font-size: 14px;
}

.property-single__address::before {
  content: "📍";
  margin-right: 4px;
}

.property-single__title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.property-single__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
}

.property-single__loan {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}

.property-single__loan-label {
  margin-bottom: 6px;
  color: #999;
  font-size: 13px;
  font-weight: 400;
}

.property-single__loan-bottom {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.property-single__loan-price {
  font-size: 48px;
  font-weight: 700;
  color: #bb5535;
  line-height: 0.9;
}

.property-single__loan-unit {
  margin-bottom: 4px;
  color: #999;
  font-size: 14px;
  font-weight: 400;
}

.property-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 80px auto;
}

.property-card {
  width: calc((100% - 64px) / 3);
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.property-card__image {
  position: relative;
  aspect-ratio: 4 / 2.5;
  background: #f5f5f5;
  overflow: hidden;
}

.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.property-card:hover .property-card__image img {
  transform: scale(1.05);
}

.property-card__status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #8b1236;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.property-card__body {
  padding: 24px;
}

.property-card__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.property-card__area {
  margin: 0 0 18px;
  color: #888;
  font-size: 14px;
  line-height: 1.7;
}

.property-card__loan {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin: 0;
  color: #8b1236;
  font-weight: 700;
  line-height: 1;
}

.property-card__loan span {
  font-size: 36px;
  line-height: 0.9;
  color: #9a7a4a;
}

.property-card--sold {
  opacity: 0.55;
}

.property-related {
  padding: 80px 0;
  background: #f7f5f2;
}

.property-related__title {
  margin: 0 0 40px;
  font-size: 28px;
  font-weight: 700;
  color: #462412;
  border: none;
}

.property-related__title::after {
  display: none;
}

.property-related__list {
  margin-top: 0;
}

.property-archive__list {
  margin-top: 0;
}

.property-archive__pagination {
  margin-top: 56px;
  text-align: center;
}

.post-type-archive-property .site-body {
  background: #f7f5f2;
}

.intro-text {
  text-align: center;
  font-size: 20px;
  margin-bottom: 60px;
}

.veu_followSet {
  display: none;
}

.vk_posts.next-prev {
  display: none;
}

/*  */
.property-flow-block {
  display: grid;
  gap: 28px;
}

.property-flow-block .vk_flow_frame {
  position: relative;
  padding: 32px 40px;
  border: 1px solid #e5ddd6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.property-flow-block .vk_flow_frame_text_title {
  margin-bottom: 12px;
  color: #462412;
  font-size: 24px;
  font-weight: 700;
}

.property-flow-block .vk_flow_frame_text_content {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.property-flow-block .vk_flow_frame_image {
  max-width: 88px;
}

.property-flow-block .vk_flow_frame_image img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.property-flow-block .vk_flow_frame::after {
  display: none;
}

.property-flow-block dl:not(:last-child) {
  margin-bottom: 0 !important;
}

/* -----------------------------
   pagination
--------------------------------*/

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  margin-bottom: 80px;
}

.pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;

  min-width: 52px;
  height: 52px;
  padding: 0 14px;

  border: 1px solid #d8c9ad;
  background: #fff;

  color: #462412;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;

  text-decoration: none;

  transition:
    background-color 0.3s,
    color 0.3s,
    border-color 0.3s;
}

.pagination .page-numbers:hover {
  background: #c45736;
  border-color: #c45736;
  color: #fff;
}

.pagination .page-numbers.current {
  background: #c45736;
  border-color: #c45736;
  color: #fff;
}

.pagination .prev,
.pagination .next {
  font-size: 20px;
}

.point-card {
  position: relative;
}

.point-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #9a7a4b;
  border-radius: 999px;
}
/* -----------------------------
   ギャラリー
--------------------------------*/
.gallery-archive__lead {
  margin: 0 0 40px;
  text-align: center;
  color: #6e655c;
  font-size: 16px;
  line-height: 1.8;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.gallery-filter__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  color: #666;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.gallery-filter__item:hover,
.gallery-filter__item.is-active {
  background: #bb5535;
  border-color: #bb5535;
  color: #fff;
}

.gallery-archive__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.gallery-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.gallery-card__image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card a:hover .gallery-card__image img {
  transform: scale(1.05);
}

.gallery-card__body {
  padding: 18px 20px;
}

.gallery-card__title {
  margin: 0 0 6px;
  border: none;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.gallery-card__title::after {
  display: none;
}

.gallery-card__category {
  margin: 0;
  color: #777;
  font-size: 14px;
  line-height: 1.6;
}

.slbCloseBtn {
  display: block !important;
  opacity: 1 !important;
  color: #fff !important;
  font-size: 42px !important;
}

.vk_flow .vk_flow_frame {
  background-color: #fff;
  flex-direction: row-reverse;
  gap: 20px;
}

/* -----------------------------
   ABOUT STAFF
--------------------------------*/
.about-staff-list {
  display: grid;
  gap: 40px;
}

.about-staff-card {
  background: #fff;
  padding: 40px;
}

.about-staff-card__head {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
}

.about-staff-card__image {
  width: 180px;
  aspect-ratio: 1 / 1;
  background: #eee;
  overflow: hidden;
}

.about-staff-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-staff-card__name {
  margin: 0 0 12px;
  border: none;
  color: #462412;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.about-staff-card__name::after {
  display: none;
}

.about-staff-card__role {
  margin: 0;
  color: #c45736;
  font-size: 18px;
  font-weight: 700;
}

.about-staff-card__role::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin-top: 18px;
  background: #c45736;
}

.about-staff-card__profile p {
  margin: 0 0 1.4em;
}

.about-staff-card__profile p:last-child {
  margin-bottom: 0;
}

/* -----------------------------
   ABOUT COMPANY
--------------------------------*/
.company-table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden;
  background: #fff;
}

.company-table td {
  padding: 24px 28px !important;
  color: #462412;
  font-size: 16px;
  line-height: 1.8;
  vertical-align: middle;
  background: #fff;
}

/* 左カラム */
.company-table td:first-child {
  width: 220px;
  background: #f7f3ee;
  font-weight: 700;
  white-space: nowrap;
}

/* 右カラム */
.company-table td:nth-child(2) {
  font-weight: 500;
}

.company-table a {
  color: #c45736;
  text-decoration: underline;
}

/* -----------------------------
   CONTACT
--------------------------------*/
.contact-form {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 32px;
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form__row--full,
.contact-form__privacy,
.contact-form__submit {
  grid-column: 1 / -1;
}

.contact-form label {
  color: #462412;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.contact-form .required {
  color: #c45736;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #ddd6cf;
  background: #fff;
  color: #462412;
  font-size: 16px;
  line-height: 1.6;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c45736;
}

.contact-form .wpcf7-radio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form .wpcf7-list-item {
  margin: 0;
}

.contact-form .wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 1px solid #ddd6cf;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form .wpcf7-list-item label:hover {
  border-color: #c45736;
}

.contact-form input[type="radio"] {
  margin-right: 8px;
  accent-color: #c45736;
}

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

.contact-form__privacy a {
  color: #c45736;
  text-decoration: underline;
}

.contact-form input[type="submit"] {
  display: block;
  min-width: 260px;
  min-height: 58px;
  margin: 0 auto;
  border: 1px solid #c45736;
  border-radius: 999px;
  background: #c45736;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form input[type="submit"]:hover {
  background: #fff;
  color: #c45736;
}

/* -----------------------------
   concept
--------------------------------*/
.concept-strength {
  padding: 96px 0;
  background: #fbf8f4;
  color: #462412;
}

.concept-strength__head {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.concept-strength__en {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1;
}

.concept-strength__title {
  margin: 0 0 28px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
  border: none;
}

.concept-strength__lead {
  margin: 0;
  font-size: 17px;
  line-height: 2;
}

.concept-strength__cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.concept-strength__cards::before {
  content: "×";
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid #d8c9b8;
  border-radius: 50%;
  background: #fff;
  color: #462412;
  font-size: 34px;
  font-weight: 300;
  transform: translate(-50%, -50%);
}

.concept-strength-card {
  padding: 64px 56px;
  border: 1px solid #d8c9b8;
  background: rgba(255, 255, 255, 0.72);
}

.concept-strength-card--product {
  background: #fff;
}

.concept-strength-card--build {
  background: #fff;
}

.concept-strength-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 32px;
  border: 1px solid #d8c9b8;
  border-radius: 50%;
  background: #fff;
}

.concept-strength-card__icon img {
  width: 42px;
  height: auto;
}

.concept-strength-card__title {
  margin: 0 0 36px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  border: none;
}

.concept-strength-card__title strong {
  display: block;
  color: #c45736;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
}

.concept-strength-card--build .concept-strength-card__title strong {
  color: #c77a1f;
}

.concept-strength-card__title::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 18px auto 0;
  background: currentColor;
}

.concept-strength-card__list {
  display: grid;
  gap: 16px;
}

.concept-strength-card__item {
  position: relative;
  margin: 0;
  padding: 18px 24px 18px 58px;
  background: #fff;
  border: 1px solid #eee4da;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.concept-strength-card__item::before {
  content: "✓";
  position: absolute;
  left: 24px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid #c45736;
  border-radius: 50%;
  color: #c45736;
  font-size: 14px;
  line-height: 1;
  transform: translateY(-50%);
}

.concept-strength-card--build .concept-strength-card__item::before {
  border-color: #c77a1f;
  color: #c77a1f;
}
.concept-strength-card__head {
  margin-bottom: 40px;
  text-align: center;
}

.concept-strength-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  border: 1px solid #d8c9b8;
  border-radius: 50%;
  background: #fff;
}

.concept-strength-card__sub {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.8;
  color: #c45736;
  margin-bottom: 4px !important;
  text-align: center;
}

.concept-strength-card__main {
  position: relative;
  margin: 0;
  padding-bottom: 20px;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.4;
  border: none;
  text-align: center;
}

.concept-strength-card__main::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 1px;
  background: #c45736;
  transform: translateX(-50%);
}

.concept-lead__title {
  font-size: 4rem;
  margin-bottom: 10px !important;
}

.concept-lead__title mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 4px 8px 4px;
  margin-left: 4px;
  background: #462412 !important;
  color: #fff;
  line-height: 1;
  font-size: 64px;
}

.concept-lead__sub {
  margin-bottom: 10px !important;
}

.concept-lead__sub strong {
  background-color: #462412;
  color: #fff;
  padding: 2px 10px;
}

.concept-strength__title span {
  background-color: #462412;
  color: #fff;
  padding: 0 10px;
}

.concept-feature-section {
  position: relative;
  overflow: hidden;
  background: #f8f5f1;
}

.concept-feature-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc((100% - 100vw) / 2);
  width: calc(50% + ((100vw - 100%) / 2));
  height: 100%;
  background: #f0e9e1;
  z-index: 0;
}

.concept-feature-section__inner {
  position: relative;
  z-index: 1;
}

.concept-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.concept-feature-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid #eadfd4;
  border-radius: 8px;
  overflow: hidden;
}

.concept-feature-card__head {
  display: flex;
}

.concept-feature-card__num {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  background: #c45736;
  color: #fff;
}

.concept-feature-card__num span {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.concept-feature-card__num strong {
  display: block;
  color: #fff;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.concept-feature-card__title {
  display: flex;
  align-items: center;
  min-height: 140px;
  margin: 0;
  padding: 24px 32px;
  border: none !important;
  color: #462412;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
}

.concept-feature-card__title::before,
.concept-feature-card__title::after {
  display: none !important;
}

.concept-feature-card__sub-title {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid #462412;
  border-radius: 8px;
  background-color: #fff;
  text-align: left;
  line-height: 1.5;
  color: #462412;
  margin: 20px 30px 0 30px !important;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}

/* 外側の線 */
.concept-feature-card__sub-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 72px;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #462412 transparent transparent;
  translate: 0 100%;
}

/* 内側の白 */
.concept-feature-card__sub-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 74px;
  border-style: solid;
  border-width: 17.2px 16.5px 0 0;
  border-color: #fff transparent transparent;
  translate: 0 100%;
}

.concept-feature-card__text {
  margin: 0;
  padding: 40px 32px 28px;
  color: #462412;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}

.concept-feature-card__image {
  margin: auto 32px 28px;
}

.concept-feature-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 6.5;
  object-fit: cover;
  border-radius: 4px;
}

.concept-feature-card__tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 32px 28px;
}

.concept-feature-card__tags span {
  color: #462412;
  font-size: 15px;
  font-weight: 700;
}

.concept-feature-card__tags span::before {
  content: "◎";
  margin-right: 6px;
  color: #c45736;
}
/* -----------------------------
   注文住宅
--------------------------------*/
.lineup-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.lineup-cards > .wp-block-column {
  display: flex;
}

.lineup-cards > .wp-block-column > .lineup-card {
  width: 100%;
}

.lineup-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: 1px solid #462412;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(70, 36, 18, 0.08);
}

.lineup-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.lineup-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px;
  justify-content: space-between;
}

.lineup-card h3 {
  margin: 0 0 14px;
  font-weight: 700;
  line-height: 1.4;
}

.lineup-card p {
  line-height: 1.8;
}

.lineup-card__sub-title {
  background: #462412;
  padding: 0 10px;
  color: #fff;
  margin-bottom: 10px !important;
}

.lineup-card ul {
  margin: 0 0 22px;
  padding: 0 !important;
  list-style: none;
}

.lineup-card__list {
  margin: 0 0 22px;
  padding: 0 !important;
  list-style: none;
}

.lineup-card__list li {
  position: relative;
  padding: 0 0 12px 28px;
  margin-bottom: 12px;
  border-bottom: 1px solid #d9c7bc;
  line-height: 1.6;
  font-weight: 700;
}

.lineup-card__list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #c4572f;
  font-weight: 800;
}

.lineup-card__button {
  margin-top: auto;
  width: 100%;
}

.lineup-card .wp-block-buttons {
  margin-top: auto;
}

.lineup-card .wp-block-button__link {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  border-radius: 6px;
  background: #fff;
  font-weight: 700;
  text-align: center;
}

/* 1枚目：サイエンスホーム */
.lineup-card--science {
  border-color: #b84623;
}

.lineup-card--science img {
  border-color: #b84623;
}

.lineup-card--science h3,
.lineup-card--science li::before {
  color: #b84623;
}

/* 2枚目：美小家 */
.lineup-card--small {
  border-color: #462412;
}

.lineup-card--small img {
  border-color: #462412;
}

.lineup-card--small h3,
.lineup-card--small li::before {
  color: #462412;
}

/* 3枚目：樹里 */
.lineup-card--juri {
  border-color: #1f7a4a;
}

.lineup-card--juri img {
  border-color: #1f7a4a;
}

.lineup-card--juri h3,
.lineup-card--juri li::before {
  color: #1f7a4a;
}

/* -----------------------------
   家づくりの流れ
--------------------------------*/
.flow-section {
  max-width: 1080px;
  margin: 0 auto;
}

.flow-item {
  display: grid !important;
  grid-template-columns: 90px 1fr 1fr;
  align-items: center;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid #ead8cf;
  border-radius: 10px;
  background: #fff;
}

.flow-num {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 130px;
  background: #c4572f;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
}

.flow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.flow-content {
  padding: 22px 20px;
}

.flow-title {
  margin: 0 0 8px;
  color: #462412;
  font-weight: 700;
  line-height: 1.4;
}

.flow-text {
  margin: 0;
  color: #462412;
  line-height: 1.8;
}

.flow-image {
  display: flex;
}

body .container .flow-image.wp-block-image img,
body .container .flow-image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.flow-image a {
  height: 100%;
}

.flow-image img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.smb-spider-slider .spider__figure {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #f7f3ee;
  display: block;
}

.section-custom-home {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.section-custom-home::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background-image: url("https://as002.xsrv.jp/sciencehome-hanamaki/wp-content/uploads/2026/05/img-60.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.section-custom-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 48%;
  width: 22%;
  height: 100%;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.9) 35%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.section-custom-home > * {
  position: relative;
  z-index: 1;
}

.section-custom-home__feature {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 760px !important;
  margin-top: 48px;
  margin-left: 0 !important;
}

.section-custom-home__feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px;
  border: 1px solid #e4d9cf;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
  text-align: center;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
  height: 100%;
}

.section-custom-home__feature-item div:first-child {
  width: 100%;
  align-items: center !important;
}

.section-custom-home__feature-item img,
.section-custom-home__feature-item svg {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.section-custom-home__feature-item p {
  margin: 0;
  color: #462412;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  height: 100%;
}

/* -----------------------------
   レスポンシブ
--------------------------------*/
@media screen and (max-width: 991px) {
  /* 991pxまでの幅の場合に適用される */
}

@media screen and (max-width: 900px) {
  .lineup-cards {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  /* 768pxまでの幅の場合に適用される */
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
  .sp-left {
    text-align: left !important;
  }
  #site-header-container.container {
    padding-left: 4px;
  }
  .header_scrolled .site-header .global-nav {
    display: none;
  }
  .site-header-logo {
    margin: 0;
    padding-bottom: 0.5rem;
    height: 57px;
  }
  .site-header-logo a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .site-header-logo span {
    display: flex;
    justify-content: flex-start;
  }
  .site-header-logo img {
    display: block;
    width: calc(100% - 60px);
    margin-left: 0;
  }
  .top-mv {
    min-height: 100svh;
    overflow: hidden;
  }
  .top-mv img {
    width: 100%;
    height: 100svh !important;
    object-fit: cover;
    object-position: center top;
  }
  .top-mv::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.12) 40%,
      rgba(255, 255, 255, 0.72) 62%,
      rgba(255, 255, 255, 0.9) 100%
    );
  }
  .top-mv-copy {
    left: 2vw;
    right: 9vw;
    bottom: 56px;
    top: auto;
    transform: none;
  }
  .top-mv-copy__en {
    margin: 0 0 22px;
    font-size: clamp(64px, 15vw, 92px);
    line-height: 0.9;
    letter-spacing: -0.02em;
  }
  .top-mv-copy__main {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.55;
    letter-spacing: 0.02em;
  }
  .top-mv-copy__sub {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.03em;
  }
  .top-mv-copy__btn {
    width: 100%;
    min-height: 64px;
    padding: 0 82px 0 28px;
    font-size: 18px;
  }
  .top-mv-copy__btn::before {
    right: 28px;
    width: 40px;
  }
  .top-mv-copy__btn::after {
    right: 28px;
  }
  .homes-section {
    padding: 80px 0;
  }
  .homes-list {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
  .homes-card__title {
    font-size: 22px;
  }
  .homes-card__price span {
    font-size: 32px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
  }
  .section-heading__title {
    font-size: 56px;
  }
  .section-heading__label {
    min-height: 56px;
    padding: 6px 28px;
    font-size: 16px;
  }
  .btn-arrow {
    width: 100%;
    padding: 0 100px 0 28px;
  }
  .reason-section {
    padding: 80px 0;
    background: #eee7de;
  }
  .reason-intro {
    margin-bottom: 64px;
    padding: 56px 24px;
  }
  .reason-intro::after {
    display: none;
  }
  .reason-intro__content {
    width: 100%;
    margin-left: 0;
    padding: 0 !important;
  }
  .reason-intro::before {
    width: 100%;
  }
  .reason-intro__title span {
    font-size: 42px;
  }
  .reason-card {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
  .reason-card__num {
    transform: none;
    padding: 0px;
    margin-top: -37px;
    margin-bottom: 0;
  }
  .reason-card__body {
    padding: 0 24px 24px;
  }
  .reason-card__img {
    height: 220px;
  }
  .reason-intro__en {
    font-size: clamp(70px, 14vw, 200px);
  }
  .about-section__inner {
    grid-template-columns: 1fr;
  }
  .about-section__content {
    padding: 72px 0;
  }
  .about-section__image {
    height: 420px;
    width: 100%;
    display: block;
  }
  .about-section__en {
    margin-bottom: 40px;
  }
  .about-section__box {
    width: 60px;
    height: 60px;
  }
  .gallery-section__inner {
    grid-template-columns: 1fr;
  }
  .gallery-section__image {
    width: 100%;
    height: 360px;
    margin-right: 0;
  }
  .gallery-section__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .staff-section::before {
    width: 70%;
  }
  .staff-section__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .staff-section__content {
    padding: 40px 0 0;
  }
  .staff-section__list {
    padding: 0;
    gap: 24px;
  }
  .staff-card {
    width: calc((100% - 24px) / 2);
  }
  .news-instagram-section {
    padding: 80px 0;
  }
  .news-instagram-section__inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .news-column__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
  }
  .news-list {
    padding: 32px 24px;
  }
  .news-item {
    flex-wrap: wrap;
    gap: 12px;
  }
  .news-item__title {
    width: 100%;
  }
  .news-btn__wrapper {
    margin-top: 40px;
  }
  .instagram-column__title {
    margin-bottom: 40px;
  }
  .instagram-grid {
    gap: 8px;
  }
  .cta-section {
    padding: 80px 0;
  }
  .cta-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cta-section__left {
    justify-content: flex-start;
  }
  .cta-section__title {
    margin-bottom: 24px;
  }
  .cta-section__text {
    margin-bottom: 32px;
    font-size: 18px;
  }
  .cta-section__image img {
    width: 120px;
  }
  .cta-box {
    min-height: auto;
    padding: 24px;
    gap: 20px;
  }
  .cta-box__title {
    font-size: 20px;
  }
  .footer {
    padding: 56px 0 40px;
  }
  .footer__inner {
    flex-direction: column;
    gap: 48px;
  }
  .footer__left {
    width: 100%;
  }
  .footer__logo img {
    width: 220px;
  }
  .footer__info p {
    font-size: 14px;
  }
  .footer-nav__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 32px;
    width: 100%;
  }
  .footer-nav__list li {
    width: 100%;
    padding: 0;
  }
  .footer-nav__list a {
    display: block;
    width: 100%;
  }
  .footer__copy {
    text-align: left;
  }
  .fixed-cta {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: translateY(100%);
  }
  .fixed-cta.is-show {
    transform: translateY(0);
  }
  .fixed-cta__item {
    width: auto;
    min-height: 64px;
    padding: 10px 8px;
    writing-mode: horizontal-tb;
    flex-direction: row;
    gap: 8px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.45);
  }
  .fixed-cta__icon {
    margin-bottom: 0;
    font-size: 18px;
  }
  .fixed-cta__text {
    font-size: 14px;
    letter-spacing: 0.03em;
  }
  .page-header-title-wrap,
  h1.page-header-title-wrap {
    gap: 14px;
  }
  .page-header-title-en {
    font-size: 58px;
    line-height: 0.95;
  }
  .page-header-title-ja {
    gap: 12px;

    font-size: 16px;
  }
  .page-header-title-ja::before {
    width: 60px;
  }
  .property-card-list {
    grid-template-columns: 1fr;
    margin: 56px auto;
  }
  .property-card__body {
    padding: 20px;
  }
  .property-card__title {
    font-size: 20px;
  }
  .property-card__loan span {
    font-size: 32px;
  }
  .intro-text {
    font-size: 16px;
    text-align: left;
  }
  .pagination {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .pagination .nav-links {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pagination .page-numbers {
    min-width: 44px;
    height: 44px;
    font-size: 14px;
  }
  .gallery-filter {
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 32px;
  }
  .gallery-filter__item {
    min-width: auto;
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
  }
  .gallery-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .gallery-card__body {
    padding: 14px;
  }
  .gallery-card__title {
    font-size: 15px;
  }
  .gallery-card__category {
    font-size: 13px;
  }
  .about-staff-card {
    padding: 28px 24px;
  }
  .about-staff-card__head {
    grid-template-columns: 120px 1fr;
    gap: 20px;
  }
  .about-staff-card__image {
    width: 120px;
  }
  .about-staff-card__name {
    font-size: 24px;
  }
  .company-table {
    border-bottom: solid 1px;
  }
  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table td {
    display: block;
    width: 100%;
  }
  /* .company-table tr:last-child {
    border-bottom: none;
  } */
  .company-table td {
    border: none;
    padding: 16px 20px;
  }
  .company-table td:first-child {
    width: 100%;
    padding-bottom: 6px;
    background: #f7f3ee;
    border-bottom: none;
  }
  .company-table td:nth-child(2) {
    padding-top: 0;
    border-top: none;
    border-bottom: none;
  }
  .contact-form {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-form .wpcf7-radio {
    grid-template-columns: 1fr;
  }
  .contact-form input[type="submit"] {
    width: 100%;
    min-width: auto;
  }
  .property-single__title-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .property-single__loan {
    flex-direction: column;
    align-items: flex-start;
  }
  .vk_flow .vk_flow_frame {
    flex-direction: column-reverse;
  }
  .vk_flow .vk_flow_frame_text_title {
    text-align: center;
  }
  .vk_flow .vk_flow_frame_image {
    text-align: center;
    margin: auto;
  }
  .property-flow-block .vk_flow_frame {
    padding: 24px 20px;
  }
  .property-flow-block .vk_flow_frame_text_title {
    font-size: 20px;
  }
  .property-flow-block .vk_flow_frame_image {
    max-width: 40px;
  }
  .property-flow-block .vk_flow_frame_image img {
    width: 40px;
    height: auto;
  }
  .concept-strength {
    padding: 64px 0;
  }
  .concept-strength__head {
    margin-bottom: 36px;
    text-align: left;
  }
  .concept-strength__en {
    font-size: 14px;
  }
  .concept-strength__title {
    font-size: 30px;
    line-height: 1.6;
  }
  .concept-strength__lead {
    font-size: 15px;
  }
  .concept-strength__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .concept-strength__cards::before {
    display: none;
  }
  .concept-strength-card {
    padding: 40px 24px;
  }
  .concept-strength-card__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }
  .concept-strength-card__icon img {
    width: 32px;
  }
  .concept-strength-card__title {
    margin-bottom: 28px;
    font-size: 20px;
  }
  .concept-strength-card__title strong {
    font-size: 32px;
  }
  .concept-strength-card__item {
    padding: 15px 18px 15px 50px;
    font-size: 15px;
  }
  .concept-strength-card__item::before {
    left: 18px;
  }
  .concept-feature-list {
    grid-template-columns: 1fr;
  }
  .concept-feature-card__head {
    grid-template-columns: 96px 1fr;
  }
  .concept-feature-card__num {
    padding: 14px;
  }
  .concept-feature-card__num strong {
    font-size: 42px;
  }
  .concept-feature-card__title {
    padding: 18px 20px;
    font-size: 22px;
  }
  .concept-feature-card__text {
    padding: 28px 20px 24px;
    font-size: 14px;
  }
  .concept-feature-card__image {
    margin: auto 20px 24px;
  }
  .concept-feature-card__tags {
    padding: 0 20px 24px;
    gap: 16px;
  }
  .concept-lead__title {
    font-size: 2.5rem;
  }
  .concept-lead__title mark {
    font-size: 4rem;
  }

  .flow-item {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "num"
      "content"
      "image";
    gap: 0;
  }
  .flow-num {
    grid-area: num;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    font-size: 2rem;
  }
  .flow-content {
    grid-area: content;
    padding: 20px 16px;
  }
  .flow-image {
    grid-area: image;
  }
  .flow-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }
  .section-custom-home__feature {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }
  .section-custom-home__feature-item {
    flex-direction: row;
    justify-content: flex-start;
    min-height: auto;
    padding: 10px;
    text-align: left;
  }
  .section-custom-home__feature-item img,
  .section-custom-home__feature-item svg {
    width: 32px;
    height: auto;
    flex-shrink: 0;
  }
  .section-custom-home__feature-item p {
    font-size: 1.6rem;
  }
  .section-custom-home__feature-item p {
    font-size: 1rem;
  }
  .section-custom-home__feature-item div:first-child {
    display: grid;
    grid-template-columns: 30px 1fr;
  }
  .section-custom-home::before {
    left: 47%;
  }
}

/* アニメーションを抑制（ユーザー設定尊重） */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
