@charset "UTF-8";

/* =============================================
   Plus Sanken Home Page Styles
   ============================================= */
html:has(.renew) {
  font-size: clamp(10px, 1vw, 16px);
}

:root {
  --ps-red: #c82536;
  --ps-gold: #c5a683;
  --ps-bg-red: #f52336;
  --ps-white: #fff;
  --ps-black: #222;
  --ps-beige: #c5a683;
  --ps-brown-bg: #b8a68c;
  --ps-light-gray: #f6f0eb;
  --ps-content-width: 1680px;
}

/* Base font */
.renew {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: .06em;
}

@media only screen and (max-width: 767px) {
  html:has(.renew) {
    font-size: 16px;
  }
}


/* =============================================
   Section Titles - Helvetica Neue font
   ============================================= */
.c-title {
  font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.02em;
}

/* =============================================
   Section Header (Title + Subtitle inline)
   ============================================= */
.renew .section-header {
  display: flex !important;
  align-items: center;
  gap: 64px;
  margin-bottom: 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.renew .section-header h2,
.renew .section-header .home-title,
.renew .section-header .column-title,
.renew .section-header .estate-title,
.renew .section-header .about-title {
  margin-bottom: 0;
}

.renew .section-header p {
  margin-bottom: 0;
  font-size: 2.4rem;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .renew .section-header {
    gap: 20px;
    margin-bottom: 30px;
  }
}

/* =============================================
   共通パーツ (Shared Components)
   ============================================= */

/* --- セクション内 .home-title 基本スタイル ---
   text-align / font-size / font-weight / margin-bottom / color / ::after を一括定義。
   例外: .home-customervoice .home-title のみ margin-bottom: 0
   ------------------------------------------- */
.renew .home-plans .home-title,
.renew .home-bunjouchi .home-title,
.renew .home-modelhouse .home-title,
.renew .home-sekou .home-title,
.renew .home-customervoice .home-title,
.renew .home-news .home-title {
  text-align: left;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--ps-red);
}

.renew .home-customervoice .home-title {
  margin-bottom: 0;
}

.renew .home-plans .home-title::after,
.renew .home-bunjouchi .home-title::after,
.renew .home-modelhouse .home-title::after,
.renew .home-sekou .home-title::after,
.renew .home-customervoice .home-title::after,
.renew .home-news .home-title::after {
  display: none;
}

/* --- .inner コンテナ 共通 ---
   max-width / margin / padding を各セクションで個別記述していたものをまとめた。
   ------------------------------------------- */
.hero-content .inner,
.home-about-section .inner,
.home-column-section .inner,
.home-footer-links .inner {
  max-width: var(--ps-content-width);
  margin: 0 auto;
  padding: 0 40px;
}

@media only screen and (max-width: 767px) {

  .hero-content .inner,
  .home-about-section .inner,
  .home-column-section .inner,
  .home-footer-links .inner {
    padding: 0 20px;
  }
}

/* --- .main-block を 1680px でオーバーライドするセクション群 ---
   各セクションで二重に max-width を書いていたものをまとめた。
   ------------------------------------------- */
/* .renew .home-plans .main-block,
.renew .home-bunjouchi .main-block,
.renew .home-sekou .main-block,
.renew .home-customervoice .main-block {
  max-width: 1680px;
} */

/* --- info-table の dt 共通スタイル ---
   .lot-info-table dt / .works-info-table dt で同一だった記述をまとめた。
   ------------------------------------------- */
.lot-info-table dt,
.works-info-table dt {
  font-weight: 700;
  color: var(--ps-gold);
  display: block;
  min-width: 4.5em;
  flex-shrink: 0;
  font-size: 1.6rem;
  border-bottom: 2px solid var(--ps-gold);
  padding-bottom: 10px;
  padding-top: 10px;
}

/* --- ゴールドボーダー タグ 共通 ---
   .lot-tags a / .works-tags span で同一のボーダースタイルをまとめた。
   ------------------------------------------- */
.lot-tags a,
.works-tags span {
  border: 2px solid var(--ps-gold);
  color: var(--ps-gold);
  transition: .3s;
}

.lot-tags a:hover,
.works-tags span:hover {
  background-color: var(--ps-bg-red);
  border-color: var(--ps-bg-red);
  color: #fff;
}

/* --- .c-home-link-btn 共通ボタン ---
   home-sekou / home-customervoice / home-column-section の一覧リンクボタン共通クラス。
   ------------------------------------------- */
.c-home-link-btn {
  background-color: var(--ps-red);
  color: #fff;
  border: none;
  border-radius: 0;
  justify-content: space-between;
  font-weight: 700;
  margin-top: 123px;
  width: 512px;
  max-width: 90%;
  font-size: 1.9rem;
  height: 68px;
}

.c-home-link-btn span::before {
  display: none;
}

.c-home-link-btn:hover {
  background-color: var(--ps-gold);
  color: #fff;
}

.c-home-link-btn .btn-plus-icon {
  svg {
    transition: all 0.4s ease;
    width: 22px;
    height: auto;
  }
}

.c-home-link-btn:hover .btn-plus-icon {
  svg {
    transform: rotate(180deg);

    line {
      stroke: var(--ps-red);
    }

  }
}

@media only screen and (max-width: 767px) {
  .c-home-link-btn {
    width: 80%;
    font-size: 1rem;
    height: 50px;
    margin-top: 30px;
  }

  .c-home-link-btn .btn-plus-icon {
    svg {
      width: 11px;
      height: auto;
    }
  }
}

/* =============================================
   Section 01: Header Override
   ============================================= */
.header {
  position: fixed;
  background: url(../renew_img/gradation_bg1.webp) no-repeat left top/cover;
  box-shadow: none;
}

.header-block {
  max-width: var(--ps-content-width);
  height: auto;
  display: flex;
  align-items: center;
  padding: 50px 30px 10px;
  overflow: hidden;
}

.header-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0;
}

/* Text-based Logo */
.header-main .logo {
  flex-shrink: 0;
  margin-right: 30px;
  max-width: 300px;
}

.header-main .logo img {
  width: 300px;
  height: auto;
}

.header-main .logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  line-height: 1.3;
}

.header-main .logo .logo-main {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.header-main .logo .logo-main strong {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.header-main .logo .logo-main .logo-e {
  /* Stylized E with horizontal lines, matching SANKEN branding */
}

.header-main .logo .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  opacity: 0.85;
}

.header-main .gnav {
  display: none;
}

.header-main .gnav .gnav-list>li>a::after {
  background-color: #fff;
}

.header-main .gnav .gnav-list>li>a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Header CTA Buttons */
.header-cta {
  display: flex;
  gap: 10px;
  margin-left: auto;
  margin-right: 55px;
}

.header-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  border: 2px solid #fff;
  border-radius: 4px;
  width: 200px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  transition: .3s;
}

.header-cta a:hover {
  background-color: #fff;
  color: var(--ps-bg-red);
}

/* SP Menu - enable on PC with slide-in from right */
.sp-menu {
  display: block;
  right: -100%;
  background: var(--ps-bg-red);
}

.sp-menu-list {
  background: var(--ps-bg-red);
  color: #fff;
}

.sp-menu-list ul li {
  border-bottom-color: #fff;
}

.sp-menu-list a {
  color: #fff;
}

.sp-menu-list a.sp-menu-logo {
  width: 300px;
}

.sp-menu-list ul .tit {
  font-weight: 500;
}

.sp-menu.panelactive {
  right: 0;
}

.openbtn.active {
  display: block;

  img {
    display: none;
  }
}

/* SP Menu button on red header */
.openbtn span {
  background-color: #fff;
}

/* When menu is open, revert to dark color for visibility on green bg */
.openbtn.active span {
  background-color: #fff;
}

/* PC Header Menu Trigger */
.header-menu-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.header-menu-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  line-height: 1;
  transition: .3s;
}

/* .header-menu-trigger:hover .header-menu-plus {
  background-color: rgba(255, 255, 255, 0.3);
} */

.header-menu-label {
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* MENU text for SP */
.menu-text {
  display: none;
}

.header-menu-trigger {
  position: relative;
  width: 177px;
  height: 169px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.header-menu-circle {
  position: absolute;
  inset: 0;
  animation: menuRotate 12s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.header-menu-circle svg {
  width: 100%;
  height: 100%;
}

.header-menu-plus {
  position: relative;
  z-index: 1;
}

.header-menu-label {
  display: none;
}

@media only screen and (max-width: 1300px) {
  .header-cta a {
    width: 150px;
  }
}

@media only screen and (max-width: 1200px) {
  .header-menu-trigger {
    display: none;
  }

  .openbtn {
    width: 26px;
    height: 26px;
    top: 52px;
    right: 28px;
  }

  .openbtn.active {
    width: 50px;
    height: 50px;
    top: 17px;
    right: 10px;
  }

  .openbtn span {
    display: none;
  }

  .openbtn.active span {
    display: inline-block;
  }

  .openbtn.active+.menu-text {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-text {
    display: block;
    color: #fff;
    font-size: 10px;
    position: fixed;
    top: 52px;
    right: 16px;
    z-index: 99999;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .menu-text {
    width: 66px;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: menuRotate 8s linear infinite;
    pointer-events: none;
    top: 34px;
    right: 8px;
    font-size: 0;
  }

  .menu-text svg {
    width: 100%;
    height: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .header {
    background-image: url(../renew_img/gradation_bg1_sp.jpg);
  }

  .header-block {
    padding: 10px 15px;
    height: 80px;
  }

  .header-main .logo {
    max-width: 200px;
  }



  .header-menu-plus {
    width: 26px;
    height: 26px;
  }

  .openbtn {
    top: 22px;
  }

  .menu-text {
    top: 8px;
  }




  .sp-menu-list a.sp-menu-logo {
    width: 60%;
    max-width: 300px;
  }
}

/* =============================================
   Section 02: Hero / MV
   ============================================= */
.gradation-one {
  background: url(../renew_img/gradation_bg1.webp) no-repeat left top/cover;
}

.renew .home-slide {
  height: auto;
  position: relative;
  overflow: hidden;
}

.renew .home-slide .swiper {
  display: none;
}

.renew .home-slide .txt {
  display: none;
}

/* Hero Content Area */
.hero-content {
  padding: 66px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-catch {
  text-align: center;
  color: #fff;
  margin-bottom: 72px;
}

.hero-txt {
  max-width: 1066px;
  margin: 0 auto;
  text-align: center;
}

.hero-catch h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.hero-catch p {
  font-size: clamp(1rem, 1.8vw, 1.75rem);
  font-weight: 700;
  margin-top: 60px;
  line-height: 1.8;
}

/* Photo Grid - full device width */
.hero-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.hero-photo-grid .photo-item {
  overflow: hidden;
  border-radius: 0;
}

.hero-photo-grid .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-grid .photo-item.large {
  grid-row: span 2;
}

/* Concept Section (inside hero area) */
.hero-concept {
  padding: 100px 0 175px;
  position: relative;
}

.hero-concept::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: -780px;
  width: 2000px;
  height: 631px;
  background: url(../renew_img/pickup_bg.svg) no-repeat right bottom/cover;
  pointer-events: none;
}

.hero-concept .inner {
  max-width: var(--ps-content-width);
  margin: 0 auto;
  padding: 0 40px;
}

.hero-concept_col {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 170px;
  align-items: start;
}

/* 3 Pillars */
.hero-pillars {
  display: flex;
  gap: 5px;
  color: #fff;
}

.hero-pillars .pillar {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 3rem;
  font-weight: 900;
  white-space: nowrap;
}

.hero-pillars .pillar-num {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 5px;
  writing-mode: horizontal-tb;
  letter-spacing: 0;
}

/* Concept Text */
.hero-concept-text {
  color: #fff;
}

.hero-concept-text h3 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-concept-text p {
  line-height: 2.5;
  font-size: 1.5rem;
  font-weight: 700;
}

.hero-concept-text p+p {
  margin-top: 50px;
}

/* Pickup Circle */
.hero-pickup {
  width: 630px;
  height: 630px;
  position: absolute;
  top: 45px;
  right: -55px;
  flex-shrink: 0;
}

.hero-pickup a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-pickup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1/1;

  .hero-info {
    position: absolute;
    bottom: 13.81%;
    left: 0;
    color: #fff;

    .hero-head {
      width: fit-content;
      background-color: var(--ps-gold);
      padding: 5px 20px 5px 40px;
      margin-bottom: 10px;
      font-size: 1.125rem;
      font-weight: 700;
    }

    .hero-ttl {
      width: fit-content;
      background-color: var(--ps-gold);
      padding: 0 20px 0 90px;
      font-size: 3rem;
      font-weight: 700;
    }
  }
}

/* ⑥ Hero フォトマーキー (右→左) */
.hero-photo-grid {
  display: none;
}

/* 旧グリッドを非表示 */

.hero-photo-marquee {
  overflow: hidden;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  margin-top: 40px;
}

.hero-photo-track {
  display: flex;
  gap: 47px;
  width: max-content;
  animation: photoMarquee 28s linear infinite;
}

.hero-photo-track .photo-item {
  flex-shrink: 0;
  width: 736px;
  height: 567px;
  overflow: hidden;
  position: relative;

  &.imgtwo {
    width: 412px;
  }

  &.imgthree {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 370px;

    .img {
      height: 258px;
    }
  }
}

.hero-photo-track .photo-item .img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

/* ⑤ ホバー時ゴールドベタ塗り */
.hero-photo-track .photo-item .img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--ps-gold);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
  border-radius: 10px;
}

.hero-photo-track .photo-item .img:hover::after {
  opacity: 0.55;
}

/* Rotating PICK UP text */
.pickup-rotating-text {
  position: absolute;
  top: -55px;
  left: -65px;
  width: 742px;
  height: 742px;
  animation: pickupRotate 15s linear infinite;
  z-index: 3;
  pointer-events: none;
}

.pickup-rotating-text svg {
  width: 100%;
  height: 100%;
}

@keyframes pickupRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Red cross icon */
.pickup-cross-icon {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 166px;
  height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  line-height: 1;

  svg {
    width: 100%;
    height: 100%;
    fill: var(--ps-gold);
    transition: fill 0.4s ease, transform 0.6s ease;
    transform-origin: center;
  }
}

/* Inner text overlay */
.pickup-inner-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

@media only screen and (max-width: 1500px) {
  .hero-concept_col {
    gap: 80px;
  }
}

@media only screen and (max-width: 1400px) {
  .hero-pickup {
    width: 469px;
    height: 469px;
  }

  .pickup-rotating-text {
    width: 550px;
    height: 550px;
    top: -40px;
    left: -45px;
  }

  .pickup-cross-icon {
    width: 116px;
    height: 108px;
  }

  .hero-img {
    .hero-info {

      .hero-head {
        padding: 5px 20px 5px 30px;
      }

      .hero-ttl {
        padding: 0 20px 0 60px;
        font-size: 2.5rem;
      }
    }
  }
}

@media only screen and (max-width: 1200px) {

  .hero-pickup {
    position: static;
    margin: 70px auto 0;
  }
}

@media only screen and (max-width: 767px) {
  .gradation-one {
    background-image: url(../renew_img/gradation_bg1_sp.jpg);
  }

  .renew .home-slide .swiper {
    aspect-ratio: 1 / 1;
  }

  .hero-concept {
    padding: 40px 0 40px;
  }

  .hero-concept::before {
    bottom: 0;
    right: -570px;
    width: 818px;
    height: 696px;
    background-image: url(../renew_img/pickup_bg_sp.svg);
  }

  .hero-content {
    padding: 40px 0 50px;
  }

  .hero-catch h2 {
    font-size: 1.75rem;
  }

  .hero-catch p {
    font-size: clamp(1rem, 3.5vw, 1.75rem);
    margin-top: 30px;
    text-align: left;

  }

  .hero-photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-photo-grid .photo-item.large {
    grid-row: span 1;
  }

  .hero-photo-track {
    gap: 25px;
  }

  .hero-photo-track .photo-item {
    width: 354px;
    height: 273px;

    &.imgtwo {
      width: 199px;
    }

    &.imgthree {
      width: 178px;

      img {
        height: auto;
      }
    }
  }

  .hero-photo-marquee {
    margin-top: 25px;
  }

  .hero-concept .inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .hero-concept_col {
    gap: 40px;
  }

  .hero-pillars {
    flex-direction: row;
    justify-content: center;
  }

  .hero-pillars .pillar {
    font-size: 1.0625rem;
  }

  .hero-pillars .pillar-num {
    font-size: .6875rem;
  }

  .hero-concept-text {
    margin-top: 45px;
  }

  .hero-concept-text h3 {
    font-size: 1.25rem;
  }

  .hero-concept-text p {
    font-size: 0.625rem;
  }

  .hero-concept-text p+p {
    margin-top: 20px;
  }

  .hero-pickup {
    width: 280px;
    height: 280px;
    margin: 70px auto 0;
  }

  .pickup-rotating-text {
    width: 320px;
    height: 320px;
    top: -20px;
    left: -20px;
  }

  .pickup-cross-icon {
    width: 80px;
    height: 80px;
    top: 0;
  }

  .hero-img {
    .hero-info {

      .hero-head {
        padding: 5px 20px 5px 20px;
        font-size: .625rem;
      }

      .hero-ttl {
        padding: 0 20px 0 40px;
        font-size: 1.3rem;
      }
    }
  }
}

/* =============================================
   Section 03: Event
   ============================================= */
.renew .home-event {
  margin-top: 0;
  padding: 0 0 280px;
  position: relative;
  overflow: hidden;
}

.renew .home-event .main-block {
  position: relative;
  z-index: 1;
}

.renew .home-event .home-title {
  padding-left: 40px;
  color: #fff;
  text-align: left;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

.renew .home-event .home-title::after {
  display: none;
}

.event-subtitle {
  color: #f52336;
  font-size: 2.4rem;
  font-weight: 700;
}

/* Event Header - stacked vertically */
.renew .event-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
}

/* Event 3-column Layout */
.event-layout {
  /* display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 30px;
  align-items: start; */
  width: 88.75%;
  max-width: 1420px;
}

.home-event .event-header {
  margin: 0;
}

.home-event .home-title {
  img {
    width: 453px;
    max-width: 453px;
    height: auto;
  }
}

.event-block {
  display: flex;
  gap: 72px;
  padding: 40px;
  background: linear-gradient(90deg, rgba(198, 167, 131, 1) 0%, rgba(198, 167, 131, 0) 100%);
}

.event-block .c-home-link-btn {
  background: #f52336;
  margin: 50px 0 0;

  &:hover {
    background: var(--ps-gold);

    svg line {
      stroke: #f52336;
    }
  }
}

.event-subtitle {
  margin-bottom: 0;
  font-size: 2.4rem;
  font-weight: 700;
}

.event-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

/* Event Pill Button */
.event-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  transition: .3s;
}

.event-btn-pill:hover {
  background-color: #fff;
  color: var(--ps-bg-red);
}

.event-btn-pill .plus {
  font-size: 1.25rem;
  line-height: 1;
}

/* Event Main Card */
.event-main {
  display: block;
  background: #fff;
  padding: 45px;
  position: relative;
  top: -170px;
  width: 636px;
  margin-bottom: -170px;
}

.event-main .event-label {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  background-color: var(--ps-bg-red);
  color: #fff;
  padding: 2px 30px;
  font-size: 1.5625rem;
  font-weight: 700;
}

.event-main .event-label.event-label-closed {
  background-color: var(--ps-gold)
}

.event-main .event-img {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  aspect-ratio: 1/1;
}

.event-main .event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-main .event-title {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.event-main .event-date {
  color: var(--ps-red);
  font-size: 1.5625rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.event-main .event-desc {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Event Side Cards */
.event-side {
  position: absolute;
  top: 0;
  right: -50px;
  width: 413px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}

.event-side-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #fff;
  padding: 30px;
}

.event-side-item .event-side-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;

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

.event-side-item .event-side-content {
  flex: 1;
}

.event-side-item .event-side-img .event-label {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  background-color: var(--ps-bg-red);
  color: #fff;
  padding: 2px 30px;
  font-size: 1.5625rem;
  font-weight: 700;
}

.event-side-item .event-side-img .event-label-closed {
  background-color: var(--ps-gold)
}

.event-side-item .event-side-content .event-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 5px;
}

.event-side-item .event-side-content .event-date {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ps-red);
}

/* SP button (hidden on PC, shown on SP) */
.event-btn-sp {
  display: none;
}

.event-sptitle {
  display: none;
}

.event-splink-btn2 {
  display: none;
}

@media only screen and (max-width: 1600px) {
  .event-block {
    gap: 30px;
  }

  .event-main {
    width: 413px;
    padding: 30px;
  }

  .event-side {
    right: 10px;
    width: 25%;
  }
}

@media only screen and (max-width: 1400px) {
  .event-block {
    flex-direction: column;
  }

  .event-main {
    position: static;
    top: 0;
    margin-bottom: 0;
  }

  .event-side {
    margin-top: 130px;
  }

  .event-left .c-home-link-btn {
    display: none;
  }

  .event-block .event-btn-sp {
    display: flex;
  }

  .event-side {
    right: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .home-event .home-title {
    img {
      width: 45vw;
    }
  }

  .event-side {
    max-width: 230px;
  }

  .event-side-item {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .event-sptitle {
    display: block;
  }

  .renew .home-event .home-title {
    margin-bottom: 0;
    padding-left: 15px;
  }

  .home-event .event-layout .home-title {
    display: none;
  }

  .renew .home-event {
    padding: 50px 20px;
  }

  .renew .home-event .main-block {
    padding: 0 0 60px;
    background: linear-gradient(90deg, rgba(198, 167, 131, 1) 0%, rgba(198, 167, 131, 0) 100%);
  }

  .event-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .event-block {
    background: none;
    padding: 15px;
  }

  .event-block .event-btn-sp {
    display: none;
  }

  .event-main {
    width: 100%;
    padding: 20px;
  }

  .renew .event-header {
    flex-direction: row;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 0;
  }

  .home-event .home-title {
    img {
      width: 45vw;
    }
  }

  .event-subtitle {
    font-size: .875rem;
  }

  .event-side {
    margin-top: 0;
    padding-inline: 15px;
    position: static;
    max-width: none;
    width: 100%;
  }

  .event-side-item {
    width: 100%;
  }

  .event-left .event-btn-pill:not(.event-btn-sp) {
    display: none;
  }

  .event-main .event-label {
    padding: 2px 20px;
    font-size: .75rem;
  }

  .event-main .event-title {
    font-size: .875rem;
  }

  .event-main .event-date {
    font-size: .75rem;
  }

  .event-main .event-desc {
    font-size: .6875rem;
  }

  .event-side-item .event-side-img .event-label {
    padding: 2px 20px;
    font-size: .75rem;
  }

  .event-side-item .event-side-content .event-title {
    font-size: .625rem;
  }

  .event-side-item .event-side-content .event-date {
    font-size: .625rem;
  }

  .event-btn-sp {
    display: flex;
    width: fit-content;
    margin: 30px auto 0;
  }

  .event-splink-btn2 {
    display: flex;
    margin: 40px auto 0;
    background: #f52336;

    &:hover {
      background: var(--ps-gold);

      svg line {
        stroke: #f52336;
      }
    }
  }
}

/* =============================================
   Section 04: Line Up
   ============================================= */
.renew .home-plans {
  padding: 158px 0 60px;
  background-color: #fff;
  overflow: hidden;
}

.home-plans .c-title {
  img {
    width: 521px;
    max-width: 521px;
    height: auto;
  }
}

.renew .home-plans .lineup-grid {
  margin-top: 52px;
}



.renew .home-plans .swiper-container {
  display: none;
}

.renew .home-plans .home-link-btn {
  display: none;
}

.lineup-subtitle {
  font-size: 2.8rem;
  color: var(--ps-red);
  font-weight: 700;
}

/* Lineup Grid */
.lineup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}

.lineup-item {
  position: relative;
  overflow: hidden;
  display: block;
}

.lineup-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.lineup-item:hover img {
  transform: scale(1.05);
}

.lineup-item:hover img.plus-icon {
  transform: scale(1) rotate(90deg);
}

.lineup-item .lineup-label {
  position: absolute;
  bottom: 63px;
  left: 51px;
  width: 250px;
  color: #fff;
  font-weight: 700;
  font-size: 2.40rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}


.lineup-bottom .lineup-item .lineup-label {
  bottom: 20px;
  left: 15px;
}



.lineup-item .lineup-label .plus-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  background-color: var(--ps-bg-red);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.lineup-item .lineup-desc {
  position: absolute;
  bottom: 31px;
  left: 48px;
  color: #fff;
  font-size: 1.2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Bottom row: 4 columns */
.lineup-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 4px;
}

.lineup-bottom .lineup-item {
  aspect-ratio: 4 / 4;
}

@media only screen and (max-width: 1200px) {
  .lineup-item .lineup-label {
    width: fit-content;
    font-size: 2rem;
    /* font-size: 1.2rem; */
  }

  .lineup-item .lineup-label .plus-icon {
    width: 26px;
    height: 26px;
    margin-top: 0;
  }

  /* .lineup-item .lineup-desc {
    font-size: 1rem;
  } */
}

@media only screen and (max-width: 992px) {
  .home-plans .c-title {
    img {
      width: 50vw;
    }
  }
}

@media only screen and (max-width: 767px) {
  .renew .home-plans {
    padding: 153px 0 40px;
  }

  /* .home-plans .c-title {
    img {
      width: 173px;
    }
  } */

  .renew .home-plans .lineup-grid {
    grid-template-columns: 1fr;
    margin-top: 15px;
  }

  .renew .lineup-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }

  .lineup-item .lineup-label {
    font-size: 1rem;
    width: fit-content;
    left: 7vw;
    bottom: 9vw;
  }

  .renew .home-plans .section-header {
    margin-bottom: 0px;
  }

  .renew .lineup-item .lineup-desc {
    bottom: 5vw;
    font-size: 0.6rem;
    left: 7vw;
  }
}

/* =============================================
   Section 05: Lot for Sale
   ============================================= */
.renew .home-bunjouchi {
  padding: 122px 0;
  background-color: #fff;
  overflow: hidden;
}

.renew .home-bunjouchi .inner {
  max-width: 1680px;
  margin: 0 auto;
}


.home-bunjouchi .c-title {
  img {
    width: 955px;
    height: auto;
  }
}

.lot-subtitle {
  font-size: 2.45rem;
  color: var(--ps-red);
  font-weight: 700;
}

.renew .home-bunjouchi .inner .list {
  margin-top: 64px;
}

.renew .home-bunjouchi .inner .list li .tit {
  font-weight: 700;
  font-size: 2.25rem;
  margin-top: 27px;
}

/* Override style.css pill badges */
.renew .home-bunjouchi .inner .list li .sec1 {
  display: none;
}

.renew .home-bunjouchi .inner .list li .sec1 p {
  padding: 0;
  border-radius: 0;
}

.renew .home-bunjouchi .inner .list li .sec1 p.kukaku {
  background-color: transparent;
  color: inherit;
}

.renew .home-bunjouchi .inner .list li .sec1 p.location {
  border: none;
}

.lot-info-table {
  width: 100%;
  margin-top: 7px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.lot-info-row {
  display: flex;
  gap: 0;
  width: 100%;
  /* padding: 10px 0; */
  /* border-bottom: 1px solid var(--ps-gold); */
}

.lot-info-table dt {
  padding-left: 0;
}

.lot-info-table dd {
  display: block;
  margin-left: 0;
  font-weight: bold;
  font-size: 1.6rem;
  border-bottom: 1px solid var(--ps-gold);
  padding-bottom: 10px;
  padding-top: 10px;
  flex-grow: 1;
  padding-left: 48px;
}

.lot-info-table dd small {
  font-size: 1.25rem;
  margin-left: 0.5em;
  color: #555;
}

.lot-tags {
  display: flex;
  gap: 15px;
  margin-top: 28px;
}

.lot-tags a {
  display: inline-block;
  padding: 1px 22px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 1300px) {
  .home-bunjouchi .c-title {
    img {
      width: 700px;
      max-width: 700px;
    }
  }
}

@media only screen and (max-width: 992px) {
  .home-bunjouchi .c-title {
    img {
      width: 70vw
    }
  }

  .renew .home-bunjouchi .inner .list li .tit {
    font-size: 1.75rem;
  }

  .lot-info-table dt,
  .lot-info-table dd {
    font-size: 1.3rem;
  }

  .lot-tags a {
    padding-inline: 11px;
    font-size: 1.3rem;
  }

}

@media only screen and (max-width: 767px) {
  .renew .home-bunjouchi {
    display: none;
  }
}

/* =============================================
   Section 06: Model House
   ============================================= */
.renew .home-modelhouse {
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
}

/* .renew .home-modelhouse .main-block {
  max-width: 100%;
  padding: 0;
} */

.home-modelhouse .c-title {
  img {
    width: 940px;
    height: auto;
  }
}

.modelhouse-subtitle {
  font-size: 1rem;
  color: var(--ps-red);
  font-weight: 700;
}

.renew .home-modelhouse .list {
  margin-top: 62px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.renew .home-modelhouse .list li {
  width: 100%;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.renew .home-modelhouse .list li .img img {
  aspect-ratio: 957/696;
}

.renew .home-modelhouse .list li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.renew .home-modelhouse .list li .inner img {
  height: 53.86%;
  object-fit: contain;
  width: auto;
}

.renew .home-modelhouse .list li:nth-child(2n) .inner img {
  height: 36.35%;
}

.renew .home-modelhouse .list li .title-box {
  width: auto;
  height: auto;
  padding: 20px 15px;
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: 0;
  writing-mode: horizontal-tb;
  display: flex;
  align-items: stretch;
}

.renew .home-modelhouse .list li .title-box .inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

/* 日本語（右列） */
.renew .home-modelhouse .list li .title-box .tit1 {
  order: 2;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: #fff;
  text-shadow: 0 1px 6px rgb(197 166 131), 0 0 12px rgba(0, 0, 0, 0.4);
}

.renew .home-modelhouse .list li .title-box .tit2 span {
  transform: rotate(90deg);
  letter-spacing: -10px;
}


/* 英語（左列）：文字列を逆順にしてwriting-mode: vertical-rlで下から上読み */
.renew .home-modelhouse .list li .title-box .tit2 {
  order: 1;
  writing-mode: vertical-rl;
  font-size: clamp(2rem, 4.2vh, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 6px rgb(197 166 131), 0 0 12px rgba(0, 0, 0, 0.4);
  margin-right: 0;
  overflow: hidden;
}

/* Plus icon on model house */
.modelhouse-plus {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* ㉗ モデルハウス title-box ホバー：赤→ゴールド */
.home-modelhouse .list li a .img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: background-color 0.3s;
}

.home-modelhouse .list li a:hover .img::before {
  background-color: rgba(197, 166, 131, 0.35) !important;
}

/* ㉝/㊴ モデルハウス .plus ホバー回転 + 赤 */
.modelhouse-plus {
  transition: transform 0.4s ease;
}

.home-modelhouse .list li a:hover .modelhouse-plus {
  transform: rotate(90deg);

  svg {
    path {
      fill: var(--ps-red);
    }
  }
}

@media only screen and (max-width: 1300px) {
  .renew .home-modelhouse .section-header {
    align-items: baseline;
  }

  .home-modelhouse .c-title {
    img {
      width: 470px;
      max-width: 470px;
    }
  }
}

@media only screen and (max-width: 992px) {

  .home-modelhouse .c-title {
    img {
      width: 49.7vw;
    }
  }
}

@media only screen and (max-width: 767px) {
  .renew .home-modelhouse {
    padding: 40px 0 0;
  }

  .renew .home-modelhouse .section-header {
    flex-wrap: nowrap;
    padding: 0;
    margin-bottom: 0;
  }

  .renew .home-modelhouse .home-title {
    font-size: 1.75rem;
    white-space: nowrap;
  }

  .modelhouse-subtitle {
    white-space: nowrap;
    font-size: 0.875rem;
  }

  .renew .home-modelhouse .list {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 12px;
  }

  .renew .home-modelhouse .list li {
    max-width: 100%;
  }

  .renew .home-modelhouse .list li img {
    height: 250px;
  }
}

/* =============================================
   Section 07: Works
   ============================================= */
.renew .home-sekou {
  padding: 103px 0;
  background: var(--ps-light-gray);
  overflow: hidden;
}

.home-sekou .c-title {
  img {
    width: 484px;
    max-width: 484px;
    height: auto;
  }
}


.works-subtitle {
  font-size: 2.45rem;
  color: var(--ps-red);
  font-weight: 700;
}

.renew .home-sekou .list {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.renew .home-sekou .list li:nth-child(n+4) {
  display: none;
}

.renew .home-sekou .list li {
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  /* background-color: #fff; */
}

.renew .home-sekou .list li a .txt {
  position: relative;
  height: auto;
  /* background-color: #fff; */
  display: flex;
  align-items: flex-start;
  padding: 40px 0px;
  font-size: 2.2rem;
  text-align: left;
}

/* Works Info Table (same approach as LOT FOR SALE) */
.works-info-table {
  width: 100%;
  padding: 0 15px;
  /* background-color: #fff; */
  font-size: 0.875rem;
  line-height: 1.6;
}

.works-info-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 0;
  border-bottom: 1px solid var(--ps-gold);
}

.works-info-table dt {
  padding-left: 0;
}

.works-info-table dd {
  display: block;
  margin-left: 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.works-tags {
  display: flex;
  gap: 10px;
  padding: 38px 15px 15px;
  /* background-color: #fff; */
  flex-wrap: wrap;
}

.works-tags span {
  display: inline-block;
  padding: 6px 20px;
  font-size: 1.6rem;
  font-weight: 600;
}

@media only screen and (max-width: 992px) {
  .home-sekou .c-title {
    img {
      width: 44vw;
    }
  }
}

@media only screen and (max-width: 767px) {
  .renew .home-sekou {
    padding: 50px 0 11px;
  }

  .renew .home-sekou .section-header {
    margin-bottom: 0;
  }



  .renew .home-sekou .list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    place-items: initial;
  }

  .renew .home-sekou .list li {
    max-width: 100%;
  }

  .renew .home-sekou .list li:nth-child(n+4) {
    display: block;
  }

  .renew .home-sekou .list li a .img {
    aspect-ratio: 518/368;
  }

  .renew .home-sekou .list li a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .renew .home-sekou .list li a .txt {
    font-size: 0.6875rem;
    padding: 10px 5px;
  }

  .home-sekou .c-home-link-btn {
    width: 80%;
    font-size: 1rem;
    height: 50px;
  }

  .home-sekou .c-home-link-btn .btn-plus-icon {
    height: 16px;
  }

  .works-info-row {
    flex-wrap: wrap;
    gap: 5px;
  }

  .works-info-table {
    padding: 0 0px;
    font-size: 0.75rem;
  }

  .works-info-table dt {
    min-width: auto;
    font-size: 0.625rem;
    padding: 0 10px 0 0;
  }

  .works-info-table dd {
    font-size: 0.625rem;
  }

  .works-tags {
    padding: 10px 0;
  }

  .works-tags span {
    padding: 0px 5px;
    font-size: 0.625rem;
    border: 1px solid var(--ps-gold);
  }
}

/* =============================================
   Section 08: Voice
   ============================================= */
.renew .home-customervoice {
  padding: 80px 0;
  background: var(--ps-light-gray);
  overflow: hidden;
}


.home-customervoice .c-title {
  img {
    width: 388px;
    max-width: 388px;
    height: auto;
  }
}


.voice-subtitle {
  font-size: 1.125rem;
  color: var(--ps-red);
  font-weight: 700;
}

.renew .home-customervoice .list {
  margin-top: 59px;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.renew .home-customervoice .list li a {
  display: block;
}

.renew .home-customervoice .list li a .img {
  aspect-ratio: 788/368;
  overflow: hidden;
}

.renew .home-customervoice .list li a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-text-area {
  padding-top: 37px;
}

.voice-text-area .voice-title {
  font-weight: 700;
  font-size: 2.23rem;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 110px;
}

.voice-text-area .voice-point {
  color: var(--ps-black);
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.voice-text-area .voice-point::before {
  display: none;
}

.voice-text-area .voice-point .voice-point-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media only screen and (max-width: 992px) {
  .home-customervoice .c-title {
    img {
      width: 40vw;
    }
  }
}

@media only screen and (max-width: 767px) {
  .renew .home-customervoice {
    padding: 50px 0;
  }

  .renew .home-customervoice .section-header {
    flex-wrap: wrap;
    gap: 5px 15px;
  }

  .renew .home-customervoice .list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .renew .home-customervoice .list li {
    max-width: 100%;
  }

  /* .renew .home-customervoice .list li a .img img {
    height: 50vw;
  } */

  .voice-text-area .voice-title {
    font-size: .875rem;
    min-height: auto;
  }

  .voice-text-area .voice-point {
    font-size: 0.6875rem;
  }

  .voice-text-area .voice-point .voice-point-icon {
    width: 18px;
    height: 18px;
  }

  .lot-info-table dt {
    font-size: 0.6875rem;
    padding: 2px;
  }

  .lot-info-table dd {
    font-size: 0.6875rem;
    padding: 3px;
  }

  .voice-text-area {
    padding-top: 10px;
  }
}

/* =============================================
   Section 09: About
   ============================================= */
.gradiation-two {
  background: url(../renew_img/gradation_bg2.jpg) no-repeat left top;
  background-size: cover;
  overflow: hidden;
}

.renew .home-company {
  padding: 0;
}

.home-about-section {
  padding: 265px 0 230px;
  position: relative;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1321px;
    height: 2618px;
    background: url(../renew_img/about_bg.svg) no-repeat left top / cover;
    pointer-events: none;
  }
}

.home-about-section .inner {
  position: relative;
  z-index: 1;
}

.about-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 10px;

  img {
    width: 446px;
    max-width: 446px;
    height: auto;
  }
}

.about-subtitle {
  color: #fff;
  font-size: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: stretch;
  margin-top: 120px;
}

.about-main-photo {
  width: 100%;
  overflow: hidden;
}

.about-main-photo a {
  display: block;
  height: 100%;
}

.about-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-right-photo {
  width: 100%;
  position: relative;
}

.about-right-photo a {
  display: block;
  height: 100%;
  overflow: hidden;
}

.about-right-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-staff-label {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 4px;
  pointer-events: none;
}

.about-staff-en {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.about-staff-ja {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
}

.about-plus-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  pointer-events: none;
}

.about-plus-icon svg {
  width: 100%;
  height: 100%;
  fill: #f52336;
  transition: fill 0.4s ease, transform 0.6s ease;
  transform-origin: center;
}

.about-right-photo:hover .about-plus-icon svg {
  fill: #c5a683;
  transform: rotate(360deg);
}

@media only screen and (max-width: 1200px) {
  .home-about-section {
    &::before {
      width: 800px;
      height: 1585px;
    }
  }
}

@media only screen and (max-width: 992px) {
  .renew .home-about-section .section-header {
    gap: 40px;
  }

  .about-title {
    img {
      width: 42vw;
    }
  }
}

@media only screen and (max-width: 767px) {
  .home-about-section {
    padding: 70px 0 45px;

    &::before {
      background-image: url(../renew_img/about_bg_sp.svg);
      width: 252px;
      height: 1175px;
    }
  }

  .gradiation-two {
    background-image: url(../renew_img/gradation_bg2_sp.jpg)
  }

  .about-title {
    display: flex;
    align-items: center;
    width: fit-content;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
  }

  .about-plus-icon {
    width: 40px;
    height: 40px;
  }
}

/* =============================================
   Section 10: Column
   ============================================= */
.home-column-section {
  padding: 0 0 115px;
  position: relative;
  overflow: hidden;
}

.home-column-section .inner {
  position: relative;
  z-index: 1;
}

.column-title {
  img {
    width: 555px;
    max-width: 555px;
    height: auto;
  }
}

.column-subtitle {
  color: #fff;
  font-size: 1rem;
}

.column-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 55px;
}

.column-text {
  color: #fff;
}

.column-link {
  display: block;
  color: #fff;
}

.column-pickup-label {
  display: inline-block;
  border: 2px solid #fff;
  padding: 0 30px;
  font-size: 1.8125rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

.column-text h3 {
  font-size: 2.6875rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

.column-text p {
  line-height: 2;
  font-size: 1.5625rem;
  font-weight: 700;
}

.column-image {
  width: 100%;
  aspect-ratio: 375/237;
}

.column-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home-column-section .c-home-link-btn {
  margin: 120px 0 0;
  background-color: #f52336;
}

.home-column-section .c-home-link-btn:hover {
  background-color: var(--ps-gold);

  svg {
    line {
      stroke: #f52336;
    }
  }
}

@media only screen and (max-width: 991px) {
  .column-title {
    img {
      width: 54vw;
    }
  }

  .column-content {
    gap: 40px;
  }

  .column-text,
  .column-image {
    min-width: 0;
  }
}

@media only screen and (max-width: 767px) {
  .home-column-section {
    padding: 45px 0 80px;
  }



  .column-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .column-image {
    order: 1;
  }

  .column-text {
    order: 2;
  }

  .column-text h3 {
    font-size: 1.25rem;
  }

  .column-text p {
    font-size: .75rem;
  }

  .column-pickup-label {
    padding: 0 20px;
    margin-bottom: 15px;
    font-size: .875rem;
  }

  .home-column-section .c-home-link-btn {
    margin: 80px auto 0;

    &:hover {
      background-color: var(--ps-gold);

      svg {
        line {
          stroke: #f52336;
        }
      }
    }
  }
}

/* =============================================
   Section 11: Estate
   ============================================= */
.renew .home-estate {
  padding: 115px 0 300px;
}

.estate-title {
  img {
    width: 488px;
    max-width: 488px;
    height: auto;
  }
}

.estate-subtitle {
  color: #fff;
  font-size: 1rem;
}

.estate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 64px;
}

.estate-grid .estate-item:nth-child(n+4) {
  display: none;
}

.estate-item {
  color: #fff;
}

.estate-item .estate-img {
  width: 100%;
  margin-bottom: 15px;
}

.estate-item .estate-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.estate-item .estate-name {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 15px;
}


.estate-item .estate-info {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.8;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  margin-bottom: 3px;
}

.estate-item .estate-info .icon {
  display: flex;
  align-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.estate-item .estate-price {
  font-weight: 700;
  font-size: 1.5625rem;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.estate-item .estate-price .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.estate-new-badge {
  display: inline-block;
  border: 2px solid #fff;
  width: 106px;
  padding: 2px 10px;
  font-size: 1.5625rem;
  text-align: center;
  font-weight: 700;
  margin-top: 30px;
}

.home-estate .c-home-link-btn {
  margin-top: 112px;
}

@media only screen and (max-width: 992px) {
  .estate-title {
    img {
      width: 54vw;
    }
  }
}

@media only screen and (max-width: 767px) {
  .renew .home-estate {
    padding: 50px 0;
  }



  .estate-grid .estate-item:nth-child(n+4) {
    display: block;
  }

  .estate-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .estate-item .estate-name {
    font-size: 0.875rem;
  }

  .estate-item .estate-info {
    gap: 8px;
    font-size: 0.75rem;
  }

  .estate-item .estate-info .icon,
  .estate-item .estate-price .icon {
    width: 24px;
    height: 24px;
  }

  .estate-item .estate-price {
    gap: 8px;
    font-size: 1rem;
  }

  .estate-new-badge {
    width: auto;
    margin-top: 10px;
    font-size: .625rem;
  }

  .home-estate .c-home-link-btn {
    margin-top: 40px;
  }
}

/* =============================================
   Section 12: News
   ============================================= */
.renew .home-news {
  position: relative;
  padding: 80px 0;
  background-color: var(--ps-light-gray);
}

.renew .home-news .main-block {
  position: relative;
}



.news-head {
  img {
    width: 377px;
    max-width: 377px;
    height: auto;
  }
}

.news-subtitle {
  font-size: 1rem;
  color: var(--ps-red);
  font-weight: 700;
}

.news-list-new {
  max-width: 1480px;
  width: 92.5%;
  margin: 80px auto 0;
  border-top: 1px solid var(--ps-gold);
}

.news-list-new li {
  border-bottom: 1px solid var(--ps-gold);
  padding: 20px 10px;
}

.news-list-new li a {
  display: flex;
  align-items: center;
  gap: 60px;
  text-decoration: none;
  color: var(--ps-red);
}

.news-list-new li .news-date {
  white-space: nowrap;
  font-size: 1.5625rem;
  color: var(--ps-red);
  font-weight: 700;
}

.news-list-new li .news-cat {
  display: inline-block;
  padding: 3px 30px;
  background-color: var(--ps-red);
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  white-space: nowrap;
}

.news-list-new li .news-title {
  flex: 1;
  font-size: 1.5625rem;
  font-weight: 700;
}

.news-list-new li .news-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 35px;
  flex-shrink: 0;
  line-height: 1;

  svg {
    width: 100%;
    height: 100%;
    fill: #c82536;
    transition: fill 0.4s ease, transform 0.6s ease;
    transform-origin: center;
  }
}

.renew .home-news .c-home-link-btn {
  margin-top: 90px;
}


@media only screen and (max-width: 1200px) {
  .news-list-new li a {
    gap: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .news-head {
    img {
      width: 46vw;
    }
  }
}

@media only screen and (max-width: 767px) {
  .renew .home-news {
    padding: 60px 0 50px;
  }

  .renew .home-news .main-block {
    top: 0;
    margin-bottom: 0;
  }



  .news-list-new {
    margin-top: 40px;
  }

  .news-list-new li {
    position: relative;
    padding: 15px 40px 10px 0;
  }

  .news-list-new li a {
    flex-wrap: wrap;
    gap: 10px;
  }

  .news-list-new li .news-date {
    font-size: .625rem;
  }

  .news-list-new li .news-cat {
    padding: 0 20px;
    font-size: .625rem;
  }

  .news-list-new li .news-title {
    width: 100%;
    flex: none;
    font-size: .625rem;
  }

  .news-list-new li .news-plus {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 24px;
    height: 24px;
  }

  .renew .home-news .c-home-link-btn {
    margin-top: 45px;
  }
}

/* =============================================
   Section 13: Footer Links
   ============================================= */
.home-footer-links {
  padding: 48px 0 65px;
  background-color: #fff;
  overflow: hidden;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-link-item {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 215px;
}

.footer-link-item img {
  order: 2;
  width: calc(100% - 200px);
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.footer-link-item:hover img {
  transform: scale(1.05);
}

.footer-link-item .footer-link-overlay {
  /* position: absolute;
  top: 0;
  left: 0; */
  width: 200px;
  height: 100%;
  background-color: var(--ps-red);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  padding-bottom: 55px;
  color: #fff;
  z-index: 2;
  order: 1;
}

.footer-link-item .footer-link-overlay .footer-link-en {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.footer-link-item .footer-link-overlay .footer-link-ja {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.footer-link-item .footer-link-overlay .footer-link-plus {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 45px;
  height: 42px;
  /* background-color: var(--ps-red);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;

  /* color: #fff;
  font-size: 1.25rem; */
  svg {
    width: 100%;
    height: 100%;
    fill: var(--ps-gold);
    transition: fill 0.4s ease, transform 0.6s ease;
    transform-origin: center;
  }
}

@media only screen and (max-width: 992px) {
  .footer-link-item {
    height: 160px;
  }

  .footer-link-item .footer-link-overlay {
    width: 120px;
    padding: 25px 15px 15px;
    justify-content: flex-start;
  }

  .footer-link-item img {
    width: calc(100% - 120px);
  }
}

@media only screen and (max-width: 767px) {
  .home-footer-links {
    padding: 43px 0 30px;
  }

  .footer-links-grid {
    width: 83.64%;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-link-item {
    height: 160px;
  }

  .footer-link-item .footer-link-overlay {
    width: 150px;
    justify-content: flex-start;
    padding: 25px 15px 15px;
  }

  .footer-link-item img {
    width: calc(100% - 150px);
  }

  .footer-link-item .footer-link-overlay .footer-link-ja {
    font-size: 1rem;
  }

  .footer-link-item .footer-link-overlay .footer-link-plus {
    width: 24px;
    height: 22px;
  }
}

/* =============================================
   Section 14: Footer Override
   ============================================= */
.footer {
  background-color: #c82536;
  margin-top: 0;
  padding: 80px 0 300px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  bottom: -344px;
  left: 110px;
  width: 2000px;
  height: 631px;
  background: url(../renew_img/footer_bg.svg) no-repeat right bottom;
  pointer-events: none;
}

.footer .footer-main-link {
  position: relative;
  z-index: 1;
}

.footer .footer-main-link .footer-logo {
  text-align: center;
  margin-bottom: 30px;
}

.footer .footer-main-link .footer-logo img {
  max-width: 400px;
}

.footer-tagline {
  width: 70%;
  max-width: 300px;
  margin: 0 auto 75px;
}

.footer .footer-main-link .location {
  display: none;
}

/* Footer Navigation Grid */
.footer .footer-main-link .links-block {
  margin-top: 0;
}

.footer .footer-main-link .links-block .links-line {
  gap: 0;
}

.footer .footer-main-link .links-block .links-line .links {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px 0;
}

.footer .footer-main-link .links-block .links-line .links a {
  color: #fff;
  font-size: 0.95rem;
}

.footer .footer-main-link .links-block .links-line .links .first a {
  font-weight: 400;
}

.footer .footer-main-link .links-block .links-line .links li.second {
  display: none;
}

/* Footer content layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.footer-left {
  color: #fff;
}

.footer-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 140px);
}

.footer-right .footer-nav-col {
  display: flex;
  flex-direction: column;
}

.footer-right .footer-nav-col a {
  color: #fff;
  padding: 15px 0 15px 20px;
  border-bottom: 1px solid #c6a783;
  transition: .3s;
  font-size: clamp(0.9375rem, 1.25vw, 1.25rem);
  font-weight: 500;
}

.footer-right .footer-nav-col a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Footer Text Logo */
.footer-logo-text {
  display: flex;
  flex-direction: column;
  color: #fff;
  line-height: 1.2;
}

.footer-logo-sub {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.footer-logo-main {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

/* Footer SNS */
.footer .footer-sns {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

.sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  /* border-radius: 50%;
  border: 2px solid #fff; */
  color: #fff;
  transition: .3s;

  svg {
    width: 100%;

    path {
      transition: fill 0.3s ease, stroke 0.3s ease;
    }

    rect {
      transition: fill 0.3s ease, stroke 0.3s ease;
    }
  }
}

/* .sns-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
} */

/* .sns-icon svg {
  width: 24px;
  height: 24px;
} */
.sns-icon:hover {
  svg {
    path {
      fill: var(--ps-gold);
      stroke: var(--ps-gold);
    }

    rect {
      fill: var(--ps-gold);
      stroke: var(--ps-gold);
    }
  }
}

/* Copyright */
.footer .copyright {
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

@media only screen and (max-width: 1200px) {
  .footer::before {
    bottom: -180px;
    width: 1400px;
  }

  .footer .footer-sns {
    gap: 20px;
  }

  .footer-right {
    gap: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .sns-icon {
    width: 48px;
    height: 48px;
  }
}

@media only screen and (max-width: 767px) {
  .footer {
    padding: 80px 0 170px;
  }

  .footer::before {
    left: 0;
    right: 0;
    bottom: -12%;
    margin: auto;
    width: 230%;
    height: 265px;
    background-position: left bottom;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-left {
    order: 2;
    text-align: center;
  }

  .footer-right {
    order: 1;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-right .footer-nav-col {
    display: flex;
    flex-direction: column;
  }

  .footer-tagline {
    margin-bottom: 35px;
  }

  /* Hide 分譲地情報 link on SP (not in SP design) */
  .footer-right .footer-nav-col a[href="land/"] {
    display: none;
  }

  .footer .footer-sns {
    justify-content: center;
  }

  .footer .footer-main-link .footer-logo {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}

/* =============================================
   Under Block Override
   ============================================= */
.renew .under-block {
  display: none;
}

/* =============================================
   General Overrides for .home
   ============================================= */
.renew .main-block {
  max-width: var(--ps-content-width);
  padding-left: 40px;
  padding-right: 40px;
}

/* Remove existing home sections that are replaced */
.renew .home-information,
.renew .home-concept,
.renew .home_sponsorship,
.renew .home-bn {
  display: none;
}

/* Hide old elements replaced by new design */
.renew .home-event .list {
  display: none;
}

.renew .home-news .news-list2 {
  display: none;
}

.renew .home-estate .list2 {
  display: none;
}

.renew .home-estate .home-title {
  display: none;
}

.renew .home-company .main-block>.home-title,
.renew .home-company .main-block>.list {
  display: none;
}

/* Geometric pattern mixin - used as background for red sections */
.geo-pattern {
  position: relative;
}

.geo-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  opacity: 0.08;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .renew .main-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Hide side-nav on SP */
  .renew .side-nav {
    display: none;
  }
}

/* =============================================
   SP Fixed Bottom Menu
   ============================================= */
.sp-fixed-menu {
  display: none;
}

@media only screen and (max-width: 767px) {
  .sp-fixed-menu {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  }

  .sp-fixed-menu a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 0 6px;
    color: var(--ps-red);
    font-size: 0.6rem;
    font-weight: 700;
    text-decoration: none;
    gap: 3px;
    border-right: 1px solid #eee;

    &:hover {
      background: var(--ps-beige);
      color: #fff;

      svg {

        path,
        rect,
        circle,
        polyline {
          stroke: #fff;
        }

        path {
          fill: #fff;
        }
      }
    }

    &.non_path_fill svg path {
      fill: none;
    }
  }

  .sp-fixed-menu a:last-child {
    border-right: none;
  }

  .sp-fixed-menu a svg {
    width: 20px;
    height: 20px;
  }

  /* Add bottom padding to body so content isn't hidden behind fixed menu */
  body.renew {
    padding-bottom: 60px;
  }
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* =============================================
   ANIMATIONS
   ============================================= */

/* ① ⑩ MENU 円形回転テキスト (PC) */


@keyframes menuRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}




@keyframes photoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ⑨ Pickup クロスアイコン ホバー回転 */
.pickup-cross-icon {
  transition: transform 0.5s ease;
}

.hero-pickup a:hover .pickup-cross-icon {
  transform: rotate(90deg);
}

/* ⑮ イベントボタン ホバー：赤→ゴールド */
.event-btn-pill {
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.event-btn-pill:hover {
  background-color: var(--ps-gold) !important;
  border-color: var(--ps-gold) !important;
  color: #fff !important;
}

/* ⑯ イベントボタン .plus 回転 */
.event-btn-pill .plus {
  display: inline-flex;
  transition: transform 0.4s ease;
  line-height: 1;
}

.event-btn-pill:hover .plus {
  transform: rotate(90deg);
}

/* ㉑ ラインナップ ホバー：赤べた+白文字 */
.lineup-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--ps-gold);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 1;
  pointer-events: none;
}

.lineup-item:hover::before {
  opacity: 0.45;
}

.lineup-item .lineup-label {
  z-index: 2;
  position: absolute;
}

.lineup-item .lineup-desc {
  z-index: 2;
}




/* ㉔ 施工事例 写真 ホバーゴールドオーバーレイ */
.home-sekou .list li a {
  position: relative;
  display: block;
  overflow: hidden;
}

.home-sekou .list li a .img {
  position: relative;
  overflow: hidden;
}

.home-sekou .list li a .img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 画像部分のみ */
  background-color: var(--ps-gold);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.home-sekou .list li a:hover .img::after {
  opacity: 0.5;
}

/* 施工事例 一覧ボタン ホバー */
.home-sekou .c-home-link-btn {
  transition: background-color 0.3s, color 0.3s;
}

/* news-plus ホバー回転 */
.news-list-new li .news-plus {
  transition: transform 0.4s ease;
}

.news-list-new li a:hover .news-plus {
  transform: rotate(90deg);

  svg {
    fill: var(--ps-gold);
  }
}

/* news-btn .plus 回転 */
.news-btn .plus {
  transition: transform 0.4s ease;
  display: inline-flex;
}

.news-btn:hover .plus {
  transform: rotate(90deg);
}

/* estate-btn ホバー：ゴールド + plus回転 */
.estate-btn {
  transition: background-color 0.3s, opacity 0.3s;
}

.estate-btn:hover {
  background-color: var(--ps-gold) !important;
  opacity: 1 !important;
  color: #fff !important;
}

.estate-btn .plus {
  transition: transform 0.4s ease;
  display: inline-flex;
}

.estate-btn:hover .plus {
  transform: rotate(90deg);
}

/* column-btn .plus 回転 */
.column-btn .plus {
  transition: transform 0.4s ease;
  display: inline-flex;
}

.column-btn:hover .plus {
  transform: rotate(90deg);
}

/* ㊶ フッターリンク ホバー：赤→ゴールド + plus回転 */
.footer-link-item .footer-link-overlay {
  transition: background-color 0.35s;
}

.footer-link-item:hover .footer-link-overlay {
  background-color: var(--ps-gold) !important;
}

.footer-link-item .footer-link-plus {
  transition: transform 0.4s ease, background-color 0.3s, border-color 0.3s;
}

.footer-link-item:hover .footer-link-plus {
  transform: rotate(90deg);

  svg {
    fill: var(--ps-red);
    transform: rotate(360deg);
  }

  /* background-color: var(--ps-gold);
  border-color: var(--ps-gold); */
}

/* =============================================
   スクロールアニメーション 初期状態
   ============================================= */
.anim-slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.anim-slide-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.anim-slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.anim-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

/* 発火時 */
.anim-slide-up.is-visible,
.anim-slide-down.is-visible,
.anim-slide-left.is-visible,
.anim-slide-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* SP専用改行 */
.sp-br {
  display: none;
}

/* ⑰ 文字アニメーション */
.char-anim .char {
  display: inline-block;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.char-anim .char.blank {
  margin-right: 25px;
}

.char-anim.is-visible .char {
  opacity: 1;
  transform: translateX(0);
}

.char-anim .char img {
  font-size: 117px;
  height: 1em;
  width: auto;
  vertical-align: middle;
  /* margin-right: var(--char-gap, 16px); */
  margin-right: 16px;
}

@media only screen and (max-width: 1200px) {
  .char-anim .char img {
    font-size: 80px;
  }
}

/* =============================================
   SVG文字間隔 個別設定（右マージン）
   デフォルト16px。変更したい文字の値を書き換えてください。
   ============================================= */

/* LINE UP */
.home-plans .home-title .char:nth-child(1) {
  --char-gap: 16px;
}

/* L */
.home-plans .home-title .char:nth-child(2) {
  --char-gap: 25px;
}

/* I */
.home-plans .home-title .char:nth-child(3) {
  --char-gap: 19px;
}

/* N */
.home-plans .home-title .char:nth-child(4) {
  --char-gap: 43px;
}

/* E */
.home-plans .home-title .char:nth-child(5) {
  --char-gap: 16px;
}

/* (space) */
.home-plans .home-title .char:nth-child(6) {
  --char-gap: 19px;
}

/* U */
.home-plans .home-title .char:nth-child(7) {
  --char-gap: 0px;
}

/* P */

/* LOT FOR SALE */
.home-bunjouchi .home-title .char:nth-child(1) {
  --char-gap: 16px;
}

/* L */
.home-bunjouchi .home-title .char:nth-child(2) {
  --char-gap: 16px;
}

/* O */
.home-bunjouchi .home-title .char:nth-child(3) {
  --char-gap: 38px;
}

/* T */
.home-bunjouchi .home-title .char:nth-child(4) {
  --char-gap: 16px;
}

/* (space) */
.home-bunjouchi .home-title .char:nth-child(5) {
  --char-gap: 16px;
}

/* F */
.home-bunjouchi .home-title .char:nth-child(6) {
  --char-gap: 16px;
}

/* O */
.home-bunjouchi .home-title .char:nth-child(7) {
  --char-gap: 42px;
}

/* R */
.home-bunjouchi .home-title .char:nth-child(8) {
  --char-gap: 16px;
}

/* (space) */
.home-bunjouchi .home-title .char:nth-child(9) {
  --char-gap: 9px;
}

/* S */
.home-bunjouchi .home-title .char:nth-child(10) {
  --char-gap: 12px;
}

/* A */
.home-bunjouchi .home-title .char:nth-child(11) {
  --char-gap: 16px;
}

/* L */
.home-bunjouchi .home-title .char:nth-child(12) {
  --char-gap: 0px;
}

/* E */

/* MODEL HOUSE */
.home-modelhouse .home-title .char:nth-child(1) {
  --char-gap: 16px;
}

/* M */
.home-modelhouse .home-title .char:nth-child(2) {
  --char-gap: 16px;
}

/* O */
.home-modelhouse .home-title .char:nth-child(3) {
  --char-gap: 16px;
}

/* D */
.home-modelhouse .home-title .char:nth-child(4) {
  --char-gap: 16px;
}

/* E */
.home-modelhouse .home-title .char:nth-child(5) {
  --char-gap: 35px;
}

/* L */
.home-modelhouse .home-title .char:nth-child(6) {
  --char-gap: 16px;
}

/* (space) */
.home-modelhouse .home-title .char:nth-child(7) {
  --char-gap: 16px;
}

/* H */
.home-modelhouse .home-title .char:nth-child(8) {
  --char-gap: 16px;
}

/* O */
.home-modelhouse .home-title .char:nth-child(9) {
  --char-gap: 16px;
}

/* U */
.home-modelhouse .home-title .char:nth-child(10) {
  --char-gap: 16px;
}

/* S */
.home-modelhouse .home-title .char:nth-child(11) {
  --char-gap: 11px;
}

/* E */

/* WORKS */
.home-sekou .home-title .char:nth-child(1) {
  --char-gap: 6px;
}

/* W */
.home-sekou .home-title .char:nth-child(2) {
  --char-gap: 16px;
}

/* O */
.home-sekou .home-title .char:nth-child(3) {
  --char-gap: 16px;
}

/* R */
.home-sekou .home-title .char:nth-child(4) {
  --char-gap: 1px;
}

/* K */
.home-sekou .home-title .char:nth-child(5) {
  --char-gap: 0px;
}

/* S */

/* VOICE */
.home-customervoice .home-title .char:nth-child(1) {
  --char-gap: 8px;
}

/* V */
.home-customervoice .home-title .char:nth-child(2) {
  --char-gap: 16px;
}

/* O */
.home-customervoice .home-title .char:nth-child(3) {
  --char-gap: 16px;
}

/* I */
.home-customervoice .home-title .char:nth-child(4) {
  --char-gap: 16px;
}

/* C */
.home-customervoice .home-title .char:nth-child(5) {
  --char-gap: 0px;
}

/* E */

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {

  .anim-slide-up,
  .anim-slide-down,
  .anim-slide-left,
  .anim-slide-right {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .char-anim .char {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .hero-photo-track {
    animation: none;
  }

  .header-menu-circle,
  .menu-text {
    animation: none;
  }
}



@media only screen and (max-width: 767px) {

  .sp-br {
    display: block;
  }

  .char-anim .char img {
    font-size: 43px;
  }

  .renew .home-plans .home-title {
    text-align: left;
    font-size: clamp(1rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--ps-red);
  }

  .renew .section-header p {
    font-size: 0.9rem;
    letter-spacing: 1px !important;
  }



  /* LINE UP */
  .home-plans .home-title .char:nth-child(1) {
    --char-gap: 7px;
  }

  /* L */
  .home-plans .home-title .char:nth-child(2) {
    --char-gap: 11px;
  }

  /* I */
  .home-plans .home-title .char:nth-child(3) {
    --char-gap: 9px;
  }

  /* N */
  .home-plans .home-title .char:nth-child(4) {
    --char-gap: 12px;
  }

  /* E */
  .home-plans .home-title .char:nth-child(5) {
    --char-gap: 16px;
  }

  /* (space) */
  .home-plans .home-title .char:nth-child(6) {
    --char-gap: 7px;
  }

  /* U */
  .home-plans .home-title .char:nth-child(7) {
    --char-gap: 0px;
  }

  /* P */

  /* LOT FOR SALE */
  .home-bunjouchi .home-title .char:nth-child(1) {
    --char-gap: 16px;
  }

  /* L */
  .home-bunjouchi .home-title .char:nth-child(2) {
    --char-gap: 16px;
  }

  /* O */
  .home-bunjouchi .home-title .char:nth-child(3) {
    --char-gap: 38px;
  }

  /* T */
  .home-bunjouchi .home-title .char:nth-child(4) {
    --char-gap: 16px;
  }

  /* (space) */
  .home-bunjouchi .home-title .char:nth-child(5) {
    --char-gap: 16px;
  }

  /* F */
  .home-bunjouchi .home-title .char:nth-child(6) {
    --char-gap: 16px;
  }

  /* O */
  .home-bunjouchi .home-title .char:nth-child(7) {
    --char-gap: 42px;
  }

  /* R */
  .home-bunjouchi .home-title .char:nth-child(8) {
    --char-gap: 16px;
  }

  /* (space) */
  .home-bunjouchi .home-title .char:nth-child(9) {
    --char-gap: 9px;
  }

  /* S */
  .home-bunjouchi .home-title .char:nth-child(10) {
    --char-gap: 12px;
  }

  /* A */
  .home-bunjouchi .home-title .char:nth-child(11) {
    --char-gap: 16px;
  }

  /* L */
  .home-bunjouchi .home-title .char:nth-child(12) {
    --char-gap: 0px;
  }

  /* E */

  /* MODEL HOUSE */
  .home-modelhouse .home-title .char:nth-child(1) {
    --char-gap: 7px;
  }

  /* M */
  .home-modelhouse .home-title .char:nth-child(2) {
    --char-gap: 6px;
  }

  /* O */
  .home-modelhouse .home-title .char:nth-child(3) {
    --char-gap: 6px;
  }

  /* D */
  .home-modelhouse .home-title .char:nth-child(4) {
    --char-gap: 8px;
  }

  /* E */
  .home-modelhouse .home-title .char:nth-child(5) {
    --char-gap: 35px;
  }

  /* L */
  .home-modelhouse .home-title .char:nth-child(6) {
    --char-gap: 16px;
  }

  /* (space) */
  .home-modelhouse .home-title .char:nth-child(7) {
    --char-gap: 16px;
  }

  /* H */
  .home-modelhouse .home-title .char:nth-child(8) {
    --char-gap: 5px;
  }

  /* O */
  .home-modelhouse .home-title .char:nth-child(9) {
    --char-gap: 5px;
  }

  /* U */
  .home-modelhouse .home-title .char:nth-child(10) {
    --char-gap: 5px;
  }

  /* S */
  .home-modelhouse .home-title .char:nth-child(11) {
    --char-gap: 5px;
  }

  /* E */

  /* WORKS */
  .home-sekou .home-title .char:nth-child(1) {
    --char-gap: 4px;
  }

  /* W */
  .home-sekou .home-title .char:nth-child(2) {
    --char-gap: 6px;
  }

  /* O */
  .home-sekou .home-title .char:nth-child(3) {
    --char-gap: 5px;
  }

  /* R */
  .home-sekou .home-title .char:nth-child(4) {
    --char-gap: 1px;
  }

  /* K */
  .home-sekou .home-title .char:nth-child(5) {
    --char-gap: 0px;
  }

  /* S */

  /* VOICE */
  .home-customervoice .home-title .char:nth-child(1) {
    --char-gap: 5px;
  }

  /* V */
  .home-customervoice .home-title .char:nth-child(2) {
    --char-gap: 5px;
  }

  /* O */
  .home-customervoice .home-title .char:nth-child(3) {
    --char-gap: 6px;
  }

  /* I */
  .home-customervoice .home-title .char:nth-child(4) {
    --char-gap: 5px;
  }

  /* C */
  .home-customervoice .home-title .char:nth-child(5) {
    --char-gap: 0px;
  }

  /* E */
}