.pc-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.pc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.pc-reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.pc-reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  background-color: #fbfbfd;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1d1d1f;
  overflow-x: hidden;
}
.pc-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  height: 44px;
  padding: 0 48px;
  border-radius: 0;
  box-sizing: border-box;
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: transform 0.38s cubic-bezier(0.25, 0.1, 0.25, 1), background 0.38s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.pc-nav.nav-hidden {
  transform: translateY(-100%);
}
.pc-nav .pc-nav-logo {
  height: 22px;
}
.pc-nav .pc-nav-logo img {
  height: 100%;
  display: block;
}
.pc-nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}
.pc-nav-links a {
  color: #86868b;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.pc-nav-links a:hover,
.pc-nav-links a.active {
  color: #1d1d1f;
}
.pc-nav-links .pc-nav-switch {
  color: #1d1d1f;
  font-weight: 500;
}
.pc-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  height: 100vh;
  padding: 0;
  border-radius: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.pc-hero .pc-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 0;
  box-sizing: border-box;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 40%;
     object-position: center 40%;
  will-change: transform;
}
.pc-hero .pc-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 0;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.42) 100%);
  z-index: 1;
}
.pc-hero .pc-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1.2s 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
.pc-hero-page {
  height: var(--pc-hero-height, clamp(320px, 42vw, 420px));
  min-height: 320px;
  max-height: 460px;
}
.pc-hero-page .pc-hero-content {
  padding-top: 24px;
}
.pc-hero-page .pc-hero-title {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 12px;
}
.pc-hero-page .pc-hero-sub {
  max-width: 620px;
  font-size: 15px;
}
@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pc-hero-title {
  color: #ffffff;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.pc-hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  max-width: 480px;
  margin: 0 auto;
}
.pc-hero-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  animation: bounceDown 2s ease infinite;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.pc-hero-down:hover {
  opacity: 1;
}
.pc-hero-down svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.5;
}
@keyframes bounceDown {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
.pc-section {
  padding: 96px 0;
}
.pc-section-dark {
  background: #0d0d0d;
  color: #ffffff;
}
.pc-section-alt {
  background: #f5f5f7;
}
.pc-section-label {
  color: #BD1A21;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pc-section-headline {
  color: #1d1d1f;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
.pc-section-dark .pc-section-headline {
  color: #ffffff;
}
.pc-section-subhead {
  color: #86868b;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  max-width: 560px;
}
.pc-section-dark .pc-section-subhead {
  color: rgba(255, 255, 255, 0.6);
}
.pc-section-center {
  text-align: center;
}
.pc-section-center .pc-section-subhead {
  margin: 0 auto;
}
.pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 980px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  border: none;
  background: none;
}
.pc-btn-primary {
  background: #0d0d0d;
  color: #ffffff;
}
.pc-btn-primary:hover {
  background: #272727;
}
.pc-btn-outline {
  color: #0d0d0d;
  border: 1px solid #0d0d0d;
  background: transparent;
}
.pc-btn-outline:hover {
  background: #0d0d0d;
  color: #ffffff;
}
.pc-btn-text {
  color: #BD1A21;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.2s;
}
.pc-btn-text::after {
  content: ' →';
  display: inline;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
}
.pc-btn-text:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.pc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.pc-list-page {
  padding-top: 48px;
  padding-bottom: 64px;
}
.pc-stagger > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.pc-stagger > *.visible {
  opacity: 1;
  transform: translateY(0);
}
.pc-stagger > *:nth-child(1) {
  transition-delay: 0s;
}
.pc-stagger > *:nth-child(2) {
  transition-delay: 0.08s;
}
.pc-stagger > *:nth-child(3) {
  transition-delay: 0.16s;
}
.pc-stagger > *:nth-child(4) {
  transition-delay: 0.24s;
}
.pc-stagger > *:nth-child(5) {
  transition-delay: 0.32s;
}
.pc-stagger > *:nth-child(6) {
  transition-delay: 0.4s;
}
.pc-stagger > *:nth-child(7) {
  transition-delay: 0.48s;
}
.pc-stagger > *:nth-child(8) {
  transition-delay: 0.56s;
}
.pc-stagger > *:nth-child(9) {
  transition-delay: 0.64s;
}
.pc-stagger > *:nth-child(10) {
  transition-delay: 0.72s;
}
.pc-stagger > *:nth-child(11) {
  transition-delay: 0.8s;
}
.pc-stagger > *:nth-child(12) {
  transition-delay: 0.88s;
}
.pc-house-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.pc-house-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}
.pc-house-card:hover .pc-house-card-img {
  transform: scale(1.04);
}
.pc-house-card .pc-house-card-img-wrap {
  overflow: hidden;
}
.pc-house-card .pc-house-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.pc-house-card .pc-house-card-body {
  padding: 20px 24px 24px;
}
.pc-house-card .pc-house-card-name {
  color: #1d1d1f;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.pc-house-card .pc-house-card-addr {
  color: #86868b;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 14px;
}
.pc-house-card .pc-house-card-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0;
}
.pc-house-card .pc-house-card-price {
  color: #1d1d1f;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.01em;
}
.pc-house-card .pc-house-card-note {
  color: #86868b;
  font-size: 11px;
  font-weight: normal;
  line-height: normal;
}
.pc-article-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.pc-article-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}
.pc-article-card:hover .pc-article-card-img {
  transform: scale(1.04);
}
.pc-article-card .pc-article-card-img-wrap {
  overflow: hidden;
}
.pc-article-card .pc-article-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.pc-article-card .pc-article-card-body {
  padding: 20px 24px 24px;
}
.pc-article-card .pc-article-card-date {
  color: #86868b;
  font-size: 11px;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.pc-article-card .pc-article-card-name {
  color: #1d1d1f;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.pc-article-card .pc-article-card-desc {
  color: #86868b;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.pc-footer {
  background: #f5f5f7;
  padding: 80px 0 32px;
}
.pc-footer .pc-footer-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 48px;
  border-bottom: 1px solid #d2d2d7;
}
.pc-footer .pc-footer-brand {
  max-width: 280px;
}
.pc-footer .pc-footer-brand img {
  height: 20px;
  margin-bottom: 16px;
}
.pc-footer .pc-footer-brand p {
  color: #86868b;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}
.pc-footer .pc-footer-col h4 {
  color: #1d1d1f;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}
.pc-footer .pc-footer-col a,
.pc-footer .pc-footer-col .pc-footer-text {
  display: block;
  color: #86868b;
  font-size: 12px;
  font-weight: 400;
  line-height: 2.2;
  text-decoration: none;
  transition: color 0.2s;
}
.pc-footer .pc-footer-col a:hover {
  color: #1d1d1f;
}
.pc-footer .pc-footer-col .pc-footer-switch {
  margin-top: 8px;
  color: #BD1A21;
}
.pc-footer .pc-footer-qrs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
}
.pc-footer .pc-footer-qrs .pc-footer-qr {
  text-align: center;
}
.pc-footer .pc-footer-qrs .pc-footer-qr img {
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 10px;
  box-sizing: border-box;
  border: 1px solid #d2d2d7;
}
.pc-footer .pc-footer-qrs .pc-footer-qr .pc-footer-qr-text {
  color: #86868b;
  font-size: 10px;
  font-weight: normal;
  line-height: normal;
  margin-top: 6px;
}
.pc-footer .pc-footer-bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 48px;
}
.pc-footer .pc-footer-bottom .pc-footer-copy {
  color: #86868b;
  font-size: 11px;
  font-weight: normal;
  line-height: normal;
}
.pc-footer .pc-footer-bottom .pc-footer-slogan {
  color: #86868b;
  font-size: 11px;
  font-weight: normal;
  line-height: normal;
  font-style: italic;
}
.pc-breadcrumb {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 24px 0;
}
.pc-breadcrumb a {
  color: #86868b;
  font-size: 12px;
  font-weight: normal;
  line-height: normal;
  text-decoration: none;
}
.pc-breadcrumb a:hover {
  color: #1d1d1f;
}
.pc-breadcrumb span {
  color: #86868b;
  font-size: 12px;
  font-weight: normal;
  line-height: normal;
}
.pc-page-header {
  padding: 60px 0 80px;
  text-align: center;
}
.pc-page-title {
  color: #1d1d1f;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pc-page-desc {
  color: #86868b;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 520px;
  margin: 0 auto;
}
.pc-detail-section-heading {
  color: #1d1d1f;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid #d2d2d7;
}
.pc-about-section {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.pc-section-title {
  padding-top: 0;
  text-align: center;
}
.pc-section-title-main {
  color: #1d1d1f;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.pc-section-title-line {
  width: 72px;
  height: 3px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(189, 26, 33, 0), #BD1A21 50%, rgba(189, 26, 33, 0));
}
.pc-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pc-about-intro .pc-about-intro-img {
  width: 100%;
  height: auto;
  padding: 0;
  border-radius: 20px;
  box-sizing: border-box;
  overflow: hidden;
}
.pc-about-intro .pc-about-intro-img img {
  width: 100%;
  display: block;
  border-radius: 20px;
}
.pc-about-intro .pc-about-intro-text h3 {
  color: #1d1d1f;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.pc-about-intro .pc-about-intro-text h3 span {
  color: #BD1A21;
}
.pc-about-intro .pc-about-intro-text p {
  color: #86868b;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}
.pc-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #d2d2d7;
  border-radius: 20px;
  overflow: hidden;
}
.pc-values-grid .pc-value-card {
  background: #ffffff;
  padding: 48px 36px;
  text-align: center;
  transition: background 0.4s;
}
.pc-values-grid .pc-value-card:hover {
  background: #f5f5f7;
}
.pc-values-grid .pc-value-card-num {
  color: #BD1A21;
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  opacity: 0.18;
  margin-bottom: 10px;
}
.pc-values-grid .pc-value-card-title {
  color: #1d1d1f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
}
.pc-values-grid .pc-value-card-desc {
  color: #86868b;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}
.pc-leaders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.pc-leader-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}
.pc-leader-avatar {
  width: 112px;
  height: 112px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}
.pc-leader-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.pc-leader-info {
  min-width: 0;
}
.pc-leader-name {
  color: #1d1d1f;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.pc-leader-line {
  width: 56px;
  height: 2px;
  margin: 18px 0 20px;
  border-radius: 999px;
  background: rgba(189, 26, 33, 0.55);
}
.pc-leader-desc p {
  color: #86868b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}
.pc-leader-desc p + p {
  margin-top: 6px;
}
.pc-about-contact-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
  background: #0d0d0d;
  border-radius: 24px;
}
.pc-about-contact-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
}
.pc-about-contact-card .pc-btn-primary {
  background: #ffffff;
  color: #0d0d0d;
}
.pc-about-contact-card .pc-btn-primary:hover {
  background: #ebebeb;
}
@media (max-width: 1199px) {
  .pc-about-section {
    gap: 72px;
  }
  .pc-about-intro {
    gap: 48px;
  }
  .pc-leaders-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .pc-about-section {
    gap: 56px;
  }
  .pc-about-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pc-values-grid {
    grid-template-columns: 1fr;
  }
  .pc-leader-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px;
    text-align: center;
  }
  .pc-leader-avatar {
    margin: 0 auto;
  }
  .pc-leader-line {
    margin-left: auto;
    margin-right: auto;
  }
  .pc-about-contact-card {
    padding: 48px 24px;
  }
}

