/****************************************
* main.css :トップページ、各固定ページのデザインを記載
* 役割：各ページで独自で適用するデザインを記載する。
***************************************/
/* 基本カラー var(--)で呼び出し */
:root {
  /* color */

  /* brand */
  --primary-color : #16253F;
  --secondary-color : #F3EFE7;

  /* text */
  --color-text: #454545;
  --color-text-light: #666666;
  --color-text-white: #ffffff;
  --color-text-gray:#42444C;

  /* background */
  --color-bg: #ffffff;
  --color-bg-dark: #42444C;
  --color-bg-gray: #EDF4FD;
  --color-after-line:#A7BCD6;

  /* gradation */
  --color-grad1: #2e5eb4;
  --color-grad2: #3D74CC ;
  --color-grad3: #4b8ee4;
  --color-grad-tmplate:linear-gradient(183deg, var(--color-grad1) 0%, var(--color-grad3) 100%);

  /* 誠心不動産 */
  --ss-navy      : #16253f;
  --ss-cream     : #f3efe7;
  --ss-table-th  : #e3e8ef;
  --ss-border    : #959595;
  --ss-text-th   : #535353;
  --ss-text-td   : #42444c;
  --ss-card-bg   : #f5f5f5;
  --ss-inner     : 940px;
  --font-mincho  : 'Shippori Mincho B1', serif;

}

/* トップページ */
.p-top-kv {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
}
 
.p-top-kv__bg {
  position: absolute;
  inset: 0;
}
 
.p-top-kv__bg-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
 
.p-top-kv__bg-item.is-active {
  opacity: 1;
}
 
.p-top-kv__bg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
.p-top-kv__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, .15) 60%);
}
 
.p-top-kv__catch {
  position: absolute;
  left: var(--inner-pad, 40px);
  bottom: 120px;
  z-index: 2;
}
 
.p-top-kv__catch p {
  font-family: var(--font-mincho);
  font-size: clamp(24px, 3vw, 40px);
  color: #fff;
  line-height: 1.6;
  letter-spacing: .05em;
}
 
.p-top-kv__cta {
  position: fixed;
  right: 0;
  bottom: 40px;
  z-index: 999;
  display: block;
  overflow: hidden;
  text-decoration: none;
  width: 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  transition: opacity .2s ease;
}

.p-top-kv__cta:hover {
  opacity: .9;
}

.p-top-kv__cta img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  display: block;
}

.p-top-kv__cta-img--sp {
  display: none !important;
}
 
.p-top-about {
  width: 100%;
  background-color: var(--secondary-color);
}
 
.p-top-about__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px var(--inner-pad, 40px);
  display: grid;
  grid-template-columns: 190px 1fr 230px;
  align-items: center;
  gap: 40px;
}
 
.p-top-about__col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
 
.p-top-about__col--center {
  text-align: center;
  gap: 28px;
}
 
.p-top-about__img {
  border-radius: 4px;
  overflow: hidden;
}
 
.p-top-about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
.p-top-about__img--01 {
  width: 200px;
  height: 200px;
}
 
.p-top-about__img--03 {
  height: 320px;
  width: 320px;
  margin-left: calc(-1 * (var(--inner-pad, 40px) + (100vw - min(100vw, var(--inner-max, 1200px))) / 2));
}
 
.p-top-about__img--02 {
  width: 300px;
  height: 300px;
  margin-right: calc(-1 * (var(--inner-pad, 40px) + (100vw - min(100vw, var(--inner-max, 1200px))) / 2));
  margin-left: auto;
}
 
.p-top-about__img--04 {
  width: 200px;
  height: 200px;
  margin-left: auto;
}
 
.p-top-about__title {
  font-family: var(--font-mincho);
  font-size: 24px;
  color: var(--ss-navy);
  font-weight: 400;
  margin-bottom: 24px;
}
 
.p-top-about__body {
  font-family: var(--font-en);
  font-size: 16px;
  color: var(--ss-black);
  line-height: 2;
  margin-bottom: 28px;
}
 
.p-top-strengths {
  width: 100%;
  background-color: var(--ss-navy);
}
 
.p-top-strengths__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 160px var(--inner-pad, 40px);
}
 
.p-top-strengths__title {
  font-family: var(--font-mincho);
  font-size: 36px;
  color: #fff;
  text-align: center;
  font-weight: 400;
  margin-bottom: 56px;
  letter-spacing: .05em;
}
 
.p-top-strengths__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
 
.p-top-strengths__item {
  text-align: center;
}
 
.p-top-strengths__item-title {
  font-family: var(--font-mincho);
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}
 
.p-top-strengths__item-img {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}
 
.p-top-strengths__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
.p-top-strengths__item-body {
  font-size: 16px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
  text-align: left;
}
 
.p-top-service {
  width: 100%;
  background-color: var(--ss-cream, #ede8de);
}
 
.p-top-service__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 160px var(--inner-pad, 40px) 80px;
}
 
.p-top-service__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}
 
.p-top-service__title {
  font-family: var(--font-mincho);
  font-size: 60px;
  color: var(--ss-navy);
  font-weight: 400;
  letter-spacing: .05em;
}
 
.p-top-service__subtitle {
  font-size: 16px;
  color: var(--ss-black);
  margin-top: 6px;
}
 
.p-top-service__desc {
  max-width: 380px;
  font-size: 16px;
  color: var(--ss-black);
  line-height: 1.9;
}
 
.p-top-service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
 
.p-top-service__card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
}
 
.p-top-service__card-img {
  position: absolute;
  inset: 0;
}
 
.p-top-service__card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 25, 45, .75), rgba(15, 25, 45, .1) 60%);
}
 
.p-top-service__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
 
.p-top-service__card:hover .p-top-service__card-img img {
  transform: scale(1.05);
}
 
.p-top-service__card-body {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 1;
}
 
.p-top-service__card-title {
  font-family: var(--font-mincho);
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}
 
.p-top-service__card-text {
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
}
 
.p-top-service__card-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ss-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
 
.p-top-property {
  width: 100%;
  background-color: var(--ss-cream, #ede8de);
}
 
.p-top-property__inner {
  padding: 80px 0 100px var(--inner-pad, 40px);
}
 
.p-top-property__head {
  margin-bottom: 40px;
  margin-left: calc((100% - min(100%, var(--inner-max, 1200px))) / 2 + var(--inner-pad, 40px)) !important;
}

.p-top-property__title {
  font-family: var(--font-mincho);
  font-size: 60px;
  color: var(--ss-navy);
  font-weight: 400;
}
 
.p-top-property__subtitle {
  font-size: 16px;
  color: var(--ss-black);
  margin-top: 6px;
}
 
 
.p-top-voice {
  width: 100%;
  background-color: var(--ss-cream, #ede8de);
}
 
.p-top-voice__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px var(--inner-pad, 40px);
}
 
.p-top-voice__head {
  margin-bottom: 40px;
}
 
.p-top-voice__title {
  font-family: var(--font-mincho);
  font-size: 60px;
  color: var(--ss-navy);
  font-weight: 400;
}
 
.p-top-voice__subtitle {
  font-size: 16px;
  color: var(--ss-black);
  margin-top: 6px;
}
 

 

 

 

 

 

 
.p-top-column {
  width: 100%;
  background-color: var(--ss-cream, #ede8de);
}

.p-top-column__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px var(--inner-pad, 40px);
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 160px;
}

.p-top-column__head {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.p-top-column__title {
  font-family: var(--font-mincho);
  font-size: 60px;
  color: var(--ss-navy);
  font-weight: 400;
}

.p-top-column__subtitle {
  font-size: 16px;
  color: var(--ss-black);
  margin-top: 6px;
}

.p-top-column__more {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin-top: 40px;
}

.p-top-column__more .c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ss-navy);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity .2s ease;
}

.p-top-column__more .c-btn:hover {
  opacity: .8;
}

 
.p-top-faq {
  width: 100%;
  background-color: var(--ss-cream, #ede8de);
}
 
.p-top-faq__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px var(--inner-pad, 40px);
}
 
.p-top-faq__head {
  margin-bottom: 32px;
}
 
.p-top-faq__title {
  font-family: var(--font-mincho);
  font-size: 60px;
  color: var(--ss-navy);
  font-weight: 400;
}
 
.p-top-faq__subtitle {
  font-size: 16px;
  color: var(--ss-black);
  margin-top: 6px;
}
 
.p-top-faq__more {
  text-align: center;
  margin-top: 40px;
}
 
.p-top-instagram {
  width: 100%;
  background-color: var(--ss-cream, #ede8de);
}
 
.p-top-instagram__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px var(--inner-pad, 40px) 160px;
  text-align: center;
}
 
.p-top-instagram__head {
  margin-bottom: 40px;
}
 
.p-top-instagram__title {
  font-family: var(--font-mincho);
  font-size: 60px;
  color: var(--ss-navy);
  font-weight: 400;
}
 
.p-top-instagram__subtitle {
  font-size: 16px;
  color: var(--ss-black);
  margin-top: 6px;
}
 

 

 

 

/* サブページ---company */
.p-company_inner{
  margin-top: 160px;
}

.p-company_greeting-name{
  font-size: 28px;
  font-weight: bold;
  color: #42444C;
  text-align: right;
  line-height: 2.8;
}

.p-company_greeting{
  margin-bottom: 8rem;
}

.p-company_greeting-title{
  font-size: 24px;
  font-weight: bold;
  color: #42444C;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 4rem;
}

.p-company_greeting-name-title{
  font-size: 20px;
  font-weight: bold;
  color: #42444C;
  padding-right: 1rem;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

.p-company_profile-table{
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin: 0 0 24px 0;
}
.p-company_profile{
  margin-bottom: 8rem;
}

.p-company_profile-table-th{
  background: #f7f7f7;
  border: 1px solid #ddd;
  padding: 17px 25px;
  line-height: 2.2;
  border-top: 1px solid #ddd;
  border-right: none;
  border-left: none;
  font-weight: bold;
  color: #42444C;
  vertical-align: middle;
}

.p-company_profile-table-td{
  color: #42444C;
  border-top: 1px solid #ddd;
  border-right: none;
  border-left: none;
  vertical-align: middle;
  border: 1px solid #ddd;
  padding: 17px 25px;
  line-height: 2.2;
  background: #fff;
}

/* サブページ---faq */
.p-faq_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

.p-faq-h2-businesspartner {
  margin-top: 90px !important;
}

.p-faq-h2-businesspartner:first-child {
  margin-top: 0 !important;
}

.p-sub_head {
  font-size: 22px;
  font-family: var(--font-mincho);
  color: var(--color-text);
  padding-bottom: 16px;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 24px;
}

.p-faq_accordion {
  border-radius: 8px;
  margin-bottom: 40px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.09)
}

.p-faq_accordion summary {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 10px;
  list-style: none;
  font-weight: bold;
  font-size: 16px;
  color: var(--color-text);
  position: relative;
}

.p-faq_accordion summary::-webkit-details-marker {
  display: none;
}

.p-faq_accordion-q-head {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  border-radius: 16%;
  width: 50px;
  height: 50px;
  line-height: 45px;
  text-align: center;
  font-size: 26px;
  margin: 20px;
  flex-shrink: 0;
  font-family: var(--font-mincho);
}

.p-faq_accordion summary::before {
  content: "";
  position: absolute;
  right: 39px;
  top: 50%;
  width: 2px;
  height: 20px;
  background: var(--primary-color);
  transform: translateY(-50%);
  transition: transform .3s ease, opacity .3s ease;
}

.p-faq_accordion summary::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--primary-color);
  transform: translateY(-50%);
}

.p-faq_accordion[open] summary::before {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}

.p-faq_accordion-divider {
  display: block;
  margin: 0 65px 0 100px;
  height: 4px;
  background-size: 12px 4px;
  border-bottom: 1px solid #C2C2C2;
  background-repeat: repeat-x;
}

.p-faq_accordion .p-faq_accordion-a {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.p-faq_accordion[open] .p-faq_accordion-a {
  display: flex;
  align-items: center;
  max-height: 500px;
  opacity: 1;
  padding: 36px 36px 36px 110px;
}

.p-faq_accordion-a-text {
  flex: 1;
  display: block;
  line-height: 27px;
  margin-right: 20px;
  color: var(--color-text);
}

.p-faq_accordion-a-text-img {
  width: 40%;
  margin-top: 16px;
}

.p-faq_accordion-a-text-img img {
  width: 100%;
}

/* ── 事業内容ページ ── */
.p-business__section {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 80px var(--inner-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.p-business__section-title {
  font-family: var(--font-mincho);
  font-size: 32px;
  color: var(--ss-navy);
  font-weight: 400;
  margin-bottom: 24px;
}

.p-business__section-body {
  font-family: var(--font-en);
  font-size: 16px;
  color: var(--ss-black);
  line-height: 1.9;
}

.p-business__section-img {
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  margin-right: calc(-1 * (var(--inner-pad, 40px) + (100vw - min(100vw, var(--inner-max, 1200px))) / 2));
  width: calc(100% + var(--inner-pad, 40px) + (100vw - min(100vw, var(--inner-max, 1200px))) / 2);
}

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

.p-business__flow {
  background: radial-gradient(ellipse at top, #2a3f66 0%, var(--ss-navy, #1a2744) 55%, #0f1a30 100%);
  padding: 80px 0;
}

.p-business__flow__head {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 var(--inner-pad);
  text-align: center;
  margin-bottom: 60px;
}

.p-business__flow__title {
  font-family: var(--font-mincho);
  font-size: 32px;
  color: var(--color-text-white);
  font-weight: 400;
}

.p-business__flow__sub {
  font-family: var(--font-en);
  font-size: 16px;
  color: var(--color-text-white);
  margin-top: 10px;
}

.p-business__flow__list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--inner-pad);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.p-business__flow__connector {
  display: flex;
  justify-content: center;
  margin: 8px 0;
}

.p-business__flow__connector::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #bbb;
}

.p-business__flow__step {
  background: #fff;
  border-radius: 10px;
  padding: 28px 40px 28px 170px;
  position: relative;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-business__flow__step-badge {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-color);;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-business__flow__step-badge img {
  width: 40px;
  height: auto;
}

.p-business__flow__step-num {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--ss-black);
  background: var(--secondary-color);
  border-radius: 50px;
  padding: 4px 14px;
  position: absolute;
  left: 27px;
  top: -15px;
}

.p-business__flow__step-title {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 700;
  color: var(--ss-navy);
}

.p-business__flow__step-body {
  font-family: var(--font-en);
  font-size: 16px;
  color: var(--ss-black);
  line-height: 1.8;
  margin-top: 10px;
}

.p-business__property {
  padding: 100px 0;
}
 
.p-business__property__head {
  text-align: center;
  margin-bottom: 60px;
}
 
.p-business__property__title {
  font-family: var(--font-mincho);
  font-size: 32px;
  color: var(--ss-navy);
  font-weight: 400;
  letter-spacing: 0.05em;
}
 
.p-business__property__sub {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--ss-black);
  margin-top: 8px;
}

/* アーカイブページ---property */
.p-property {
  padding: 100px 0;
}
 
.p-property__head {
  text-align: center;
  margin-bottom: 60px;
}
 
.p-property__title {
  font-family: var(--font-mincho);
  font-size: 32px;
  color: var(--ss-navy);
  font-weight: 400;
  letter-spacing: 0.05em;
}
 
.p-property__sub {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--ss-black);
  margin-top: 8px;
}

.p-property-archive-title {
  margin-bottom: 40px;
}
.p-property_inner {
  margin-top: 160px;
}

.p-property_text_wrapper .c-sec_title {
  text-align: center;
}

.p-property_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:80px;
  grid-auto-rows: auto;
}

.p-property_list_item {
  background: #fff;
}

.p-property_list_item a {
  display: block;
}

.p-property_list_item_inner {
  padding: 0;
}

.p-property_list_item:hover {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

.p-property_image_wrapper {
  height: 260px;
  border-radius: 4px;
  overflow: hidden;
}

.p-property_label {
  display: inline-block;
  font-family: var(--font-mincho);
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.p-property_image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-property_card_body {
  padding: 16px 4px 0;
}

.p-property_title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px;
  border-bottom: none;
  padding: 0;
}

.p-property_text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
}

.p-property_view-more_wrapper {
  position: relative;
}

.p-property_view-more_wrapper .c-btn_view-more_wrapper {
  bottom: -120px;
  right: 50%;
  transform: translateX(50%);
}

.p-property_empty {
  text-align: center;
  font-size: 16px;
}

.p-entry__thumbnail{
  width: 100%;
  height: 556px;
  margin-bottom: 0 !important;
}

.p-entry__thumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* サブページ---property--single */
.p-property-single_inner {
  margin-top: 160px;
}

.p-property-single_post_header {
  margin-bottom: 2rem;
}

.p-property-single_post_header_inner {
  display: flex;
  align-items: center;
}

.p-property-single_label {
  display: inline-block;
  font-family: var(--font-mincho);
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.p-property-single_post_title {
  font-size: 36px;
  margin: 0;
  font-weight: bold;
  color: var(--primary-color);
}

.p-property-single_post_header_inner p {
  font-size: 18px;
  padding-left: 2vw;
}

.p-property-single_inner .c-btn_view-more_wrapper {
  bottom: 60px;
  right: 50%;
  transform: translateX(50%);
  height: 66px;
  margin-top: 4rem;
}

.p-property-single_before-after {
  display: flex;
  justify-content: space-between;
  gap: 105px;
  margin: 80px 0 40px 0;
}

.p-property-single_before {
  width: 48%;
}

.p-property-single_after {
  width: 48%;
}

.p-property-single_before img,
.p-property-single_after img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.p-property-single_before-after_label {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.p-property-single_postkv {
  aspect-ratio: 1059 / 383;
  overflow: hidden;
  border-radius: 10px;
}

.p-property_btn-wrap {
  text-align: center;
  justify-items: center;
  margin-top: 4rem;
}

.p-property_btn-wrap .c-btn{
    width: 360px;
}

.p-property-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin: 0 0 24px 0;
}
.p-property_profile {
  margin-bottom: 4rem;
}

.p-property_profile-table-th {
  background: #f7f7f7;
  border: 1px solid #ddd;
  padding: 17px 25px;
  line-height: 2.2;
  border-top: 1px solid #ddd;
  border-right: none;
  border-left: none;
  font-weight: bold;
  color: #42444C;
  vertical-align: middle;
}

.p-property_profile-table-td {
  color: #42444C;
  border-top: 1px solid #ddd;
  border-right: none;
  border-left: none;
  vertical-align: middle;
  border: 1px solid #ddd;
  padding: 17px 25px;
  line-height: 2.2;
  background: #fff;
}

.p-property-single_gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 80px;
  margin-bottom: 40px;
}

.p-property-single_gallery_item {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
}

.p-property-single_gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-property-single_section {
  margin-top: 80px;
}

.p-property-single_section_title {
  font-size: 24px;
  font-weight: 700;
  color: #1a2b4c;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #b8a06a;
}

.p-property-single_section_text {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  margin: 0;
}

/* サブページ---contact */
.p-contact_head_text_wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.p-contact_head_text {
    font-size: 18px;
    font-weight: bold;
    line-height: 2 !important;
}

.p-contact_content {
    width: 760px;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    padding: 3rem 5rem;
    box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 16%);
}

.p-contact_sub_text {
    display: inline-block;
    font-size: 13px;
    border-radius: 2px;
    margin-left: 2rem;
    padding: 0.3rem 0.9rem;
    border-radius: 5px;
}

.p-contact_content_list_item {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8rem;
    margin-bottom: 2rem;
}

.p-contact_content_list{
    width: 850px;
}

.p-contact_text {
    width: 30%;
    display: flex;
    justify-content: flex-start;
    font-size: 18px !important;
    font-weight: bold;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.p-contact_input {
    width: 43%;
}

.wpcf7 input, .wpcf7 textarea, .wpcf7 select {
    font-size: 16px;
    color: #707171 !important;
    background: #F5F5F5 !important;
    padding: 0.5rem 1rem;
    border: solid #E1E1E1 1px;
    border-radius: 5px;
}

.p-contact_bg {
  background: #EBF6FB;
}

#page_content .wpcf7 {
  width: 100%;
  margin: 0 !important;
  padding: 0;
  background: none;
}

.wpcf7 form {
  margin: 0;
}

.p-contact_head_text_wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.p-contact_head_text {
  font-size: 18px;
  font-weight: bold;
  line-height: 2 !important;
}

.p-contact_content {
  background: #F7F8FA;
  border-radius: 30px;
  padding: 3rem 5rem;
  box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 16%);
}

.p-contact_content_list_item {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8rem;
  margin-bottom: 2rem;
}

.p-contact_content_list_item:last-child {
  align-items: flex-start;
}

.p-contact_text {
  width: 30%;
  display: flex;
  justify-content: space-between;
  font-size: 18px !important;
  font-weight: bold;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.p-contact_sub_text {
  display: inline-block;
  font-size: 13px;
  border-radius: 2px;
  margin-left: 2rem;
  padding: 0.3rem 0.9rem;
  border-radius: 5px;
}

.p-contact_sub_text.required {
  background: var(--primary-color);
  color: #fff;
  border-radius: 5px;
}

.p-contact_sub_text.any {
  background: #B4B7BC;
}

.p-contact_input {
  width: 43%;
  font-size: 14px;
}

.p-contact_input textarea {
  resize: none;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  font-size: 16px;
  color: #707171 !important;
  background: #F5F5F5 !important;
  padding: 0.5rem 1rem;
}

.wpcf7 select {
  color: #707171;
}

::placeholder {
  font-size: 16px;
  color: #B8B9BA !important;
  border: none;
}

input:-internal-autofill-selected {
  background: #F5F5F5 !important;
}

.p-contact_text_sub {
  font-size: 15px;
  margin-bottom: 1rem;
}

.p-contact_text_sub a{
  color: var(--primary-color);
}

.p-contact_content_footer {
  margin-top: 8rem;
  text-align: center;
}

.p-contact_content_footer .p-contact_text_sub:not(:last-of-type) {
  margin-bottom: 1rem;
}

.p-contact_content_footer .p-contact_text_sub:last-of-type {
  margin-bottom: 3rem;
}

.wpcf7 .contact_submit {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #fff!important;
  background: #fff !important;
  background-color:  var(--primary-color) !important;
  border-radius: 30px;
  margin: 0 auto;
  padding: 0.8rem 6rem;
  width: auto;
  height: auto;
}

.p-contact_submit {
  position: relative;
  min-height: 60px;
}

.wpcf7 .p-contact_submit .contact_submit,
.wpcf7 .contact_submit {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
}

.p-contact_submit:hover .contact_submit {
  color: var(--primary-color) !important;
  background: #fff !important;
  border:  solid 2px var(--primary-color) !important;
    cursor: pointer;
}

/* サブページ---contact-complete */
.p-contact-complete_text_wrapper{
  text-align: center;
}

.p-contact-complete_head_text{
  font-size: 30px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 40px;
}

.p-contact-complete_body_text{
  margin-bottom: 40px;
}

.p-contact-complete_btn-box{
  width: 230px;
  margin: 0 auto;
}

/* サブページ---column */

.p-sub_column_bg {
  background: var(--color-bg);
}

.p-sub_column_inner {
  display: flex;
  justify-content: space-between;
  padding: 80px 0 160px;
}

.p-sub_column_main_contents {
  width: 65%;
}

.p-sub_column_list {
  position: relative;
  margin: 0 0 2vw 0;
  background: var(--color-bg);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.35);
  border-radius: 4px;
  overflow: hidden;
}

.p-sub_column_list a {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
  padding: 2vw;
}

.p-sub_column_list_img {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
}

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

.p-sub_column_list_img-noimg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #e5e0d5;
  color: #a89f8c;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .05em;
}

.p-sub_column_cat {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  color: #fff;
  background: #b5834a;
  border-radius: 3px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.p-sub_column_cat--news {
  background: #4a7ab5;
}

.p-sub_column_cat--seller {
  background: #b5834a;
}

.p-sub_column_date {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1vw;
}

.p-sub_column_title {
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
  color: var(--primary-color);
}

.p-sub_column_excerpt {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin-top: 8px;
}

.p-sub_column_arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  font-size: 16px;
  color: var(--primary-color);
}

.p-sub_column_side_contents {
  width: 30%;
}

.p-sub_column_side_contents_item {
  position: relative;
  margin: 0 0 3vw 0;
  background: var(--color-bg);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.35);
  border-radius: 4px;
}

.p-sub_column_side_contents_item_inner {
  padding: 2rem;
}

.p-sub_column_side_title {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 2vw
}

.p-sub_column_side_contents_list {
  list-style: none;
  margin: 0 0 1.8rem 0;
}

.p-sub_column_side_contents_list a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 1vh;
}

.p-sub_column_side_date {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
}

.p-sub_column_side_cat {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  color: #fff;
  background: #b5834a;
  border-radius: 3px;
  padding: 2px 8px;
  margin: 0;
}

.p-sub_column_side_cat--news {
  background: #4a7ab5;
}

.p-sub_column_side_cat--seller {
  background: #b5834a;
}

.p-sub_column_side_post_title {
  flex-basis: 100%;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
}

.p-sub_column_list:hover {
  background: var(--primary-color);
  transition: all .5s cubic-bezier(0, 0, 0, 1);
}

.p-sub_column_list:hover .p-sub_column_date,
.p-sub_column_list:hover .p-sub_column_title,
.p-sub_column_list:hover .p-sub_column_excerpt,
.p-sub_column_list:hover .p-sub_column_arrow {
  color: var(--color-bg) !important;
}

.p-sub_column_list:hover .p-sub_column_list_img-noimg {
  background: rgba(255, 255, 255, .15);
  color: var(--color-bg);
}

.p-sub_column_side_contents_list:hover .p-sub_column_side_date,
.p-sub_column_side_contents_list:hover .p-sub_column_side_post_title {
  color: var(--primary-color) !important;
}

.p-sub_column_side_contents_list:hover a {
  color: var(--primary-color);
}

/* サブページ---news-single */
.p-single-column_post_wrapper {
  position: relative;
  background: var(--color-bg);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.35);
  padding: 4rem;
  border-radius: 10px;
}

.p-single-column_meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1vw;
}

.p-single-column_date {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
}

.p-single-column_cat {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  color: #fff;
  background: #b5834a;
  border-radius: 3px;
  padding: 3px 10px;
}

.p-single-column_cat--news {
  background: #4a7ab5;
}

.p-single-column_cat--seller {
  background: #b5834a;
}

.p-column_btn-wrap {
  text-align: center;
  margin-top: 4rem;
}

.p-single-column_post_title {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #707070;
  margin: 0;
  padding-bottom: 1vw;
  line-height: 2;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.p-single-column_post p {
  font-size: 16px;
  padding: 2vw 0;
  line-height: 2;
}

.p-single-column_post p a {
  display: inline;
  color: var(--primary-color);
  text-decoration: underline;
  white-space: nowrap;
}

.p-sub_column_main_contents .c-btn_view-more_wrapper {
  position: static;
  margin: 4vw 0;
  text-align: center;
}

.p-sub_column_main_contents .c-btn_view-more_wrapper a {
  display: inline-block;
}

body.column.admin-bar {
  padding-top: 0 !important;
}

/* サブページ---privacy-policy */

.p-privacy-policy_head_text_wrapper {
  margin-bottom: 80px;
}

.p-privacy-policy_head_text {
  font-size: 16px;
}

.p-privacy-policy_body_text_wrapper {
  background: #fff;
}

.p-privacy-policy_text_wrapper {
  margin-bottom: 3rem;
}

.p-privacy-policy_text_wrapper:last-child {
  margin-bottom: 0;
}

.post_content h3 {
  margin: 0;
  line-height: 1.5;
}

.p-privacy-policy_title {
  font-size: 24px !important;
  color: var(--primary-color);
  padding-bottom: 0.5rem !important;
  margin-bottom: 1rem !important;
  font-weight: bold !important;
}

.p-privacy-policy_text {
  font-size: 16px;
}

.p-privacy-policy_text a {
  display: inline;
  color: var(--primary-color);
  text-decoration: underline;
  white-space: nowrap;
}

/* サブページ---flow */
.p-flow_inner{
  margin-top: 160px;
}

.p-flow_item{
  line-height: 2.2;
}

.p-flow_item-head{
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.p-flow_item-head-step{
    font-size: 24px;
    color: #fff;
    background-color: var(--primary-color);
    font-weight: bold;
    width: 17%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-flow_item-head-title{
  margin-bottom: 0 !important;
  width: 72%;
  font-size: 24px;
  font-weight: bold;
  color:  var(--color-text);
}

.p-flow_item-content{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #707070;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
}

.p-flow_item-content-img{
  width: 20%;
}

.p-flow_item-content-img img{
  width: 100%;
  height: auto;
  display: block;
}

.p-flow_item-content-text{
  margin-bottom: 0 !important;
  width: 72%;
  font-size: 16px;
}

/* サブページ---404 */
.p-404_text{
  color: var(--color-text);
  text-align: center;
}

.p-404_btn-wrap{
  width: 230px;
  margin: 40px auto;
}

/* ── 会社案内ページ ── */

/* 代表挨拶 ヒーロー */
.p-company-hero {
  position: relative;
  height: 620px;
  overflow: hidden;
}
.p-company-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-company-hero__card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(var(--ss-inner), calc(100% - 48px));
  background: var(--ss-card-bg);
  border-radius: 10px;
  box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.25);
  padding: 40px 60px;
  box-sizing: border-box;
}
.p-company-hero__card-title {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 700;
  color: #1d1d1f;
  text-align: center;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.p-company-hero__card-body {
  font-size: 15px;
  color: #343434;
  line-height: 2.25;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.p-company-hero__card-name {
  text-align: right;
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: 0.12em;
}
.p-company-hero__card-name-role {
  font-size: 16px;
  margin-right: 16px;
}

/* セクション共通 */
.p-company-section {
  padding: 80px 0;
  background: var(--color-bg);
}
.p-company-section__head {
  text-align: center;
  margin-bottom: 40px;
}
.p-company-section__en {
  font-family: var(--font-mincho);
  font-size: 32px;
  color: var(--ss-navy);
  letter-spacing: 0.12em;
  line-height: 1.25;
  margin-bottom: 8px;
}
.p-company-section__ja {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ss-navy);
}
.p-company-section__body {
  max-width: var(--ss-inner);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* 会社概要テーブル */
.p-company-table {
  width: 100%;
  border-collapse: collapse;
}
.p-company-table__th,
.p-company-table__td {
  border: 1px solid var(--ss-border);
  padding: 28px 30px;
  font-size: 16px;
  vertical-align: middle;
  line-height: 1.75;
}
.p-company-table__th {
  width: 30%;
  background: var(--ss-table-th);
  font-weight: 700;
  color: var(--ss-text-th);
}
.p-company-table__td {
  background: var(--color-bg);
  color: var(--ss-text-td);
}
.p-company-table__td a {
  display: inline;
  color: var(--ss-text-td);
  text-decoration: underline;
}

/* アクセスマップ */
.p-company-section--access {
  background: var(--color-bg);
}
.p-company-map {
  border-radius: 8px;
  overflow: hidden;
}
.p-company-map iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}


/* ══════════════════════════════════════
   再利用コンポーネント（.c-）
══════════════════════════════════════ */

.c-voice-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.c-voice-list__item {
  background: #fff;
  border-radius: 8px;
  padding: 20px 24px;
}

.c-voice-list__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.c-voice-list__avatar {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.c-voice-list__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ss-navy);
}

.c-voice-list__text {
  font-size: 16px;
  color: var(--ss-black);
  line-height: 1.8;
}

.c-column-list {
  grid-column: 2;
  grid-row: 1 / -1;
  list-style: none;
}

.c-column-list__item {
  border-top: 1px solid #ddd6c8;
}

.c-column-list__item:last-child {
  border-bottom: 1px solid #ddd6c8;
}

.c-column-list__link {
  display: block;
  position: relative;
  padding: 20px 40px 20px 0;
  text-decoration: none;
}

.c-column-list__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.c-column-list__date {
  font-size: 14px;
  color: #999;
}

.c-column-list__cat {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: #fff;
  background: #b5834a;
  border-radius: 3px;
  padding: 3px 10px;
}

.c-column-list__cat--news {
  background: #4a7ab5;
}

.c-column-list__cat--seller {
  background: #b5834a;
}

.c-column-list__title {
  font-size: 16px;
  color: var(--ss-black);
}

.c-column-list__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--ss-navy);
}

.c-instagram-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.c-instagram-list__item a {
  display: block;
  aspect-ratio: 1 / 1;
}

.c-instagram-list__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .2s ease;
}

.c-instagram-list__item a:hover img {
  opacity: .85;
}

.c-btn_view-more:hover .c-btn_view-more_arrow.column circle {
  fill: #E5EEFA;
}