/* CSS Variables: Pattern C Corporate Modern */
    :root {
      --color-primary: #333333;
      --color-accent: #333333;
      --color-bg-base: #ffffff;
      --color-bg-alt: #fcfcfc;
      --color-border: #eeeeee;
      --color-text-main: #333333;

      --font-main: "Noto Sans JP", sans-serif;
      --font-accent: "Noto Sans JP", sans-serif;

      --container-width: 1170px; /* Rule 46 */
    }

    /* Reset & Base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: var(--font-main);
      color: var(--color-text-main);
      background-color: var(--color-bg-base);
      line-height: 1.8; /* Rule 83 */
      letter-spacing: -0.02em; /* Rule 83 */
      font-weight: 500;
      font-size: 16px; /* Rule 86: Min 16px */
      -webkit-font-smoothing: antialiased;
    }

    img,
    video {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Header */
    .c-header {
      background-color: #ffffff;
      padding: 10px 0;
      text-align: center;
    }

    .c-header__logo {
      max-width: 220px;
      height: auto;
      display: inline-block;
    }

    /* Layout Utility */
    .l-container {
      width: 100%;
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 15px;
    }

    .sp-only {
      display: none !important;
    }

    @media (min-width: 769px) {
      .l-container {
        width: 1170px;
      }
    }

    @media (max-width: 768px) {
      .pc-only {
        display: none !important;
      }
      .sp-only {
        display: block !important;
      }
    }

    .c-cv {
      padding: 80px 0;
      /* Reduced from 120px */
    }

    .c-cv--private {
      background-color: #af9f5e;
      /* Updated color */
    }

    .c-cv__card {
      background: #fff;
      border-radius: 40px;
      padding: 40px 40px;
      /* Reduced vertical padding */
      max-width: 900px;
      margin: 0 auto;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
      color: #333;
      text-align: center;
      /* Center all text */
    }

    .c-cv__bracket-header {
      text-align: center;
    }

    .c-cv__bracket-header p {
      font-weight: 850;
      font-size: 1.8rem;
      background: transparent;
      color: #333333;
      padding: 0;
      display: inline-block;
      position: relative;
    }

    .c-cv__bracket-header p::after {
      content: '';
      display: block;
      width: 140%;
      height: 25px;
      /* Optimized hand-drawn brace SVG */
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" preserveAspectRatio="none"><path d="M2,4 Q25,4 47,16 Q50,19 53,16 Q75,4 98,4" stroke="black" stroke-width="2.5" fill="none" stroke-linecap="round"/></svg>') center/100% no-repeat;
      position: absolute;
      left: -20%;
      bottom: -25px;
    }

    .c-cv--private .c-cv__card-title {
      color: #000000;
      font-size: 2.2rem;
      font-weight: 900;
      margin-top: 0;
      /* Added space for the brace */
      margin-bottom: 20px;
      letter-spacing: -0.05em;
      text-align: center;
    }

    .c-cv__lead {
      font-size: 1.1rem;
      font-weight: 700;
      color: #000000;
      margin-bottom: 30px;
      /* Slightly reduced */
    }

    .c-cv__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      background: #000;
      /* Black button */
      color: #fff;
      padding: 22px 60px;
      border-radius: 100px;
      font-size: 1.3rem;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
      margin: 10px 0;
    }

    .c-cv__cta:hover {
      background: #333;
      transform: translateY(-3px);
    }


    .c-cv__note-outer {
      font-size: 0.95rem;
      font-weight: 700;
      color: #ffffff;
      margin-top: 30px;
      text-align: center;
    }

    .l-section--feature {
      background-color: #fad745;
      /* Updated from #fbdc00 */
      padding: 80px 0;
    }

    @media (max-width: 768px) {
      .l-section--feature {
        padding: 60px 0;
        /* SP Padding */
      }
    }

    .l-section--feature .c-sec-title__sub {
      color: rgba(0, 0, 0, 0.5);
    }

    .l-section--feature .c-sec-title__main {
      color: #1a1a1a;
    }

    /* Hiraya Banner Section */
    .c-hiraya-banner {
      padding: 80px 0;
      text-align: center;
    }

    .c-hiraya-banner .l-container {
      max-width: 1450px;
      /* Allow banner to exceed standard 1200px container */
    }

    .c-hiraya-banner__link {
      display: inline-block;
      max-width: 100%;
      /* Fill the container */
      width: 100%;
      transition: opacity 0.3s ease, transform 0.3s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      overflow: hidden;
    }

    .c-hiraya-banner__link:hover {
      opacity: 0.9;
      transform: translateY(-5px);
    }

    .c-hiraya-banner__img {
      width: 100%;
      height: auto;
      display: block;
    }

    .c-cv__content {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .l-container--wide {
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .l-section {
      padding: 80px 0;
    }

    /* Component: Section Title */
    .c-sec-title {
      text-align: center;
      margin-bottom: 80px;
    }

    .c-sec-title__main {
      font-family: var(--font-accent);
      font-size: 2rem;
      font-weight: 400;
      color: var(--color-primary);
      margin-bottom: 10px;
      letter-spacing: 0.15em;
    }

    .c-sec-title__sub {
      font-size: 0.9rem;
      color: #777;
      letter-spacing: 0.3em;
    }

    /* Component: Button */
    .c-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: var(--color-primary);
      font-weight: 400;
      padding: 20px 50px;
      border: 1px solid var(--color-primary);
      transition: background 0.4s ease, color 0.4s ease;
      font-size: 0.95rem;
      letter-spacing: 0.1em;
    }

    .c-btn:hover {
      background: var(--color-primary);
      color: #fff;
    }

    .c-hero {
      width: 100%;
      position: relative;
      background: linear-gradient(to right, #f2f5f3, #e6e6e6);
    }

    .c-hero__title-img {
      width: 100%;
      height: auto;
      display: block;
      margin: 0;
    }

    .c-hero__desc {
      text-align: left;
      padding: 10px 15px 40px;
      font-size: 1.05rem;
      font-weight: 700;
      color: #333333;
      line-height: 1.6;
    }

    /* Scattered Illustrations */
    .c-hero__illust {
      position: absolute;
      z-index: 15;
      pointer-events: none;
      filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
      animation: illustFloat 4s infinite ease-in-out alternate;
    }

    /* Floating & Wobble Animation */
    @keyframes illustFloat {
      0% {
        transform: translateY(0) rotate(-2deg);
      }

      100% {
        transform: translateY(-15px) rotate(2deg);
      }
    }

    /* Fixed size for illustrations - Reduced size */
    .c-hero__illust img {
      width: 100%;
      height: auto;
    }



    @media (max-width: 768px) {
      .c-hero {
        padding-top: 30px;
      }
      .c-hero__oval {
        width: 95%;
        height: 70%;
      }

      .illust-01,
      .illust-02,
      .illust-03,
      .illust-05,
      .illust-06,
      .illust-07,
      .illust-10,
      .illust-11 {
        width: 80px;
        /* Smaller on mobile */
      }
    }

    .c-hero__title-sub {
      display: block;
      font-size: 1.8rem;
      font-weight: 800;
      color: #333;
      /* Dark flat color */
      margin-bottom: 10px;
      letter-spacing: 0.1em;
      text-shadow: none !important;
      /* Removed shadow */
    }

    .c-hero__title {
      font-size: 10rem;
      font-weight: 950;
      color: #fad745;
      /* Pop Yellow */
      line-height: 0.85;
      letter-spacing: -0.02em;
      margin: 0;
      /* Rounded Font for Pop feel */
      font-family: "Hiragino Maru Gothic ProN", "Rounded Mplus 1c", sans-serif;
      /* Soft Pop Shadow Style */
      text-shadow:
        1px 1px 0 #333, -1px -1px 0 #333,
        1px -1px 0 #333, -1px 1px 0 #333,
        8px 8px 15px rgba(0, 0, 0, 0.3);
    }

    /* Removed sanpo styles */

    /* Reset previous character colors */
    .c-color--green,
    .c-color--pink,
    .c-color--blue {
      color: inherit;
    }

    .c-hero__title-sub {
      font-size: 4.2rem;
      /* Reduced from 5.5rem */
      font-weight: 700;
      color: #fff;
      display: block;
      margin-bottom: 25px;
      text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
      letter-spacing: 0.1em;
    }

    .c-feature-intro {
      text-align: center;
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1.8;
      margin-bottom: 60px;
      color: var(--color-primary);
    }

    .c-feature-tags {
      display: flex;
      justify-content: center;
      gap: 40px;
    }

    /* Adjusted for lighter yellow background */
    .c-feature-tag {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      outline: none;
      border: none;
      margin: 4px;
      background: #ffffff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.4;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      color: #fad745;
      /* Keep original yellow for legibility on white */
    }

    /* Unified color for feature tags */
    .c-feature-tag:nth-child(1),
    .c-feature-tag:nth-child(2),
    .c-feature-tag:nth-child(3) {
      color: #fad745;
    }

    /* Removed hover transform as requested */

    .c-feature-tag-small {
      font-size: 20px;
      /* Increased from 14px */
      font-weight: 700;
      color: #333333;
      letter-spacing: 0.05em;
    }

    .c-feature-tag-large {
      font-size: 32px;
      /* Increased from 24px */
      font-weight: 700;
      color: inherit;
      /* Use the parent's color */
      margin-top: 8px;
      letter-spacing: 0.05em;
    }


    /* Infinite Image Slider */
    .c-slider-section {
      position: relative;
      margin-top: -120px;
      /* Reduced from -200px to move images down */
      /* Overlap Hero */
      z-index: 50;
      overflow: hidden;
      padding: 60px 0;
    }

    .c-infinite-slider {
      display: flex;
      align-items: center;
      /* Prevent items from stretching to max height */
      width: max-content;
      gap: 40px;
      animation: scroll-left 80s linear infinite;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }

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

    .c-infinite-slider__item {
      flex-shrink: 0;
      width: 320px;
      border-radius: 24px;
      overflow: hidden;
      transition: transform 0.3s ease;
      line-height: 0;
      /* Remove potential inline spacing */
    }

    .c-infinite-slider__item:hover {
      transform: scale(1.02);
    }

    /* Scattered heights and positions */
    .c-infinite-slider__item:nth-child(3n+1) {
      transform: translateY(40px);
    }

    .c-infinite-slider__item:nth-child(3n+2) {
      transform: translateY(-40px);
    }

    /* Respect original aspect ratio */
    .c-infinite-slider__item:nth-child(4n) {
      width: 380px;
    }

    .c-infinite-slider__item:nth-child(4n+1) {
      width: 280px;
    }

    .c-infinite-slider__item:nth-child(4n+2) {
      width: 340px;
    }

    .c-infinite-slider__item:nth-child(4n+3) {
      width: 310px;
    }

    .c-infinite-slider__item img {
      width: 100%;
      height: auto;
      /* Original ratio */
      display: block;
    }

    @media (max-width: 768px) {
      .c-slider-section {
        margin-top: -100px;
      }

      .c-infinite-slider__item {
        width: 200px;
      }

      .c-infinite-slider__item img {
        height: 250px !important;
      }
    }

    .c-special {
      position: relative;
      overflow-x: hidden;
    }

    /* Property Filter Tabs */
    .c-special__filter {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 60px;
      padding-bottom: 60px;
      flex-wrap: wrap;
      position: relative;
    }

    .c-special__filter::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 1060px;
      height: 2px;
      background-color: #e5e5e5;
    }

    .c-filter-btn {
      padding: 12px 30px;
      background: transparent;
      border: 1px solid #ddd;
      border-radius: 100px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      color: #666;
    }

    .c-filter-btn:hover {
      background: #f9f9f9;
      border-color: #333;
    }

    .c-filter-btn.is-active {
      color: #fff;
    }

    .c-filter-btn[data-filter="all"].is-active {
      background: #333;
      border-color: #333;
    }

    .c-filter-btn[data-filter="hokusei"].is-active {
      background: #af191c;
      border-color: #af191c;
      color: #ffffff;
    }

    .c-filter-btn[data-filter="chunan"].is-active {
      background: #9c8c4a;
      border-color: #9c8c4a;
      color: #ffffff;
    }

    .c-filter-btn[data-filter="ise"].is-active {
      background: #6d7b83;
      border-color: #6d7b83;
      color: #ffffff;
    }

    .c-filter-btn[data-filter="kishu"].is-active {
      background: #22795c;
      border-color: #22795c;
      color: #ffffff;
    }

    .c-filter-btn[data-filter="iga"].is-active {
      background: #0a2758;
      border-color: #0a2758;
      color: #ffffff;
    }

    .c-card__name {
      font-size: 1.4rem;
      font-weight: 700;
      color: #333;
      margin-bottom: 20px;
    }

    .c-special__list {
      display: grid;
      grid-template-columns: repeat(2, 460px);
      /* Shortened width */
      gap: 60px 100px;
      justify-content: center;
      /* Center the 2 columns */
      margin: 0 auto;
    }

    .c-card {
      transition: opacity 0.4s ease, transform 0.4s ease;
      position: relative;
    }

    .c-card.is-hidden {
      display: none;
    }

    .c-card.has-divider-top::before {
      content: "";
      position: absolute;
      top: -30px;
      left: 0;
      width: 1060px;
      height: 2px;
      background-color: #e5e5e5;
      transform: translateX(-20px);
    }

    @media (max-width: 768px) {
      .c-card.has-divider-top::before {
        display: none;
      }
    }

    /* Filter Result Title Styles */
    .c-filter-result-title {
      text-align: center;
      font-size: 1.8rem;
      /* Adjusted for badge style */
      font-weight: 700;
      margin-bottom: 40px;
      min-height: 4rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Result Title Badge Style */
    .c-filter-result-title.color-all {
      background-color: #333;
      color: #fff;
      padding: 10px 40px;
      display: inline-flex;
      margin: 0 auto 40px;
    }

    .c-filter-result-title.color-hokusei {
      background-color: #af191c;
      color: #ffffff;
      padding: 10px 40px;
      display: inline-flex;
      margin: 0 auto 40px;
    }

    .c-filter-result-title.color-chunan {
      background-color: #9c8c4a;
      color: #ffffff;
      padding: 10px 40px;
      display: inline-flex;
      margin: 0 auto 40px;
    }

    .c-filter-result-title.color-ise {
      background-color: #6d7b83;
      color: #ffffff;
      padding: 10px 40px;
      display: inline-flex;
      margin: 0 auto 40px;
    }

    .c-filter-result-title.color-kishu {
      background-color: #22795c;
      color: #ffffff;
      padding: 10px 40px;
      display: inline-flex;
      margin: 0 auto 40px;
    }

    .c-filter-result-title.color-iga {
      background-color: #0a2758;
      color: #ffffff;
      padding: 10px 40px;
      display: inline-flex;
      margin: 0 auto 40px;
    }

    .c-special-list-container {
      width: 100%;
      text-align: center;
      /* Helper for inline-flex title */
    }

    /* Pagination */
    .c-pagination {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .c-page-btn {
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 5px;
      cursor: pointer;
      font-weight: 700;
      transition: all 0.3s ease;
    }

    .c-page-btn.is-active {
      background: #333;
      color: #fff;
      border-color: #333;
    }

    .c-page-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .c-special {
      background-color: transparent;
      position: relative;
      overflow: hidden;
    }

    .c-special__bg-text {
      position: absolute;
      top: -40px;
      left: 10%;
      font-size: 14rem;
      font-weight: 700;
      color: rgba(0, 0, 0, 0.03);
      font-family: serif;
      pointer-events: none;
      z-index: 1;
      line-height: 0.85;
    }

    .c-special__header {
      display: flex;
      justify-content: center;
      gap: 100px;
      align-items: center;
      margin-bottom: 120px;
      position: relative;
      z-index: 2;
    }

    .c-special__header-text {
      width: 500px;
      flex-shrink: 0;
      transform: translateX(-40px);
    }

    .c-special__header-text .c-sec-title {
      text-align: left;
      margin-bottom: 30px;
      padding-bottom: 30px;
      position: relative;
    }

    .c-special__header-text .c-sec-title::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 100vw;
      height: 2px;
      background-color: #222;
    }

    .c-special__header-text .c-sec-title__main {
      font-size: 2.2rem;
      font-weight: 900;
      color: #111;
      letter-spacing: 0.05em;
      line-height: 1.5;
    }

    .c-special__desc {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.8;
      color: #111;
      margin-bottom: 50px;
    }

    .c-special__cta-link {
      display: inline-flex;
      align-items: center;
      gap: 20px;
      font-weight: 700;
      color: #333;
      font-size: 1.1rem;
      transition: opacity 0.3s;
    }

    .c-special__cta-circle {
      width: 50px;
      height: 50px;
      background: #f37021;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 1rem;
      transition: transform 0.3s ease;
    }

    .c-special__cta-link:hover .c-special__cta-circle {
      transform: scale(1.1) rotate(45deg);
    }

    .c-special__header-map {
      flex: 0 1 auto;
    }

    .c-special__header-map img {
      width: 100%;
      max-width: 450px;
    }

    .c-property-info__price {
      color: #e60012;
      font-weight: 700;
      font-size: 1.1em;
    }

    .c-card {
      background: transparent;
      padding: 40px 0;
    }

    .c-card__img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 4px;
      margin-bottom: 16px;
      display: block;
    }

    .c-area--01 {
      color: #85bdff;
    }

    .c-area--02 {
      color: #ff8cc6;
    }

    .c-area--03 {
      color: #c0f801;
    }

    .c-area--04 {
      color: #c696ef;
    }

    .c-area--05 {
      color: #fad745;
    }


    .c-card__title {
      display: flex;
      align-items: center;
      gap: 14px;
      font-family: var(--font-accent);
      font-size: 1.2rem;
      color: var(--color-primary);
      margin-bottom: 20px;
      font-weight: 700;
    }

    .c-card__badge {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: #111111;
      color: #ffffff;
      border-radius: 6px;
      padding: 8px 15px; /* Increased padding for larger label */
      line-height: 1.2;
      flex-shrink: 0;
    }

    .c-card__badge-label {
      font-size: 16px; /* Rule 86 */
      letter-spacing: 0.1em;
      font-weight: 700;
      opacity: 0.9;
      margin-bottom: 2px;
    }

    .c-card__badge-num {
      font-size: 1.6rem; /* Slightly larger num for balance */
      font-weight: 700;
      letter-spacing: 0.05em;
      line-height: 1;
    }

    .c-badge--01 {
      background: #1a6fc4;
    }

    .c-badge--02 {
      background: #cc5500;
    }

    .c-badge--03 {
      background: #2a9d50;
    }

    .c-badge--04 {
      background: #8b1a8b;
    }

    .c-badge--05 {
      background: #c0862a;
    }

    .c-property-info {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 16px 20px;
      font-size: 16px;
      color: #444;
      line-height: 1.6;
      margin-bottom: 30px;
      padding-top: 5px;
    }

    .c-card__recommend {
      background: #f9f9f9;
      border: 1px solid #f2f2f2;
      border-radius: 8px;
      padding: 25px 30px;
      margin-top: 20px;
      margin-bottom: 30px;
    }

    .c-card__recommend-title {
      font-size: 15px;
      font-weight: 700;
      color: #333;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .c-card__recommend-title::before {
      content: "";
      display: block;
      width: 4px;
      height: 1.2em;
      background: var(--color-primary);
    }

    .c-card__recommend-text {
      font-size: 16px;
      line-height: 1.8;
      color: var(--color-text-main);
      margin: 0;
      letter-spacing: 0.05em;
    }

    .c-special__source {
      font-size: 16px; /* Rule 86 */
      color: #999999;
      text-align: right;
      margin-top: 30px;
      padding: 0 10px;
      letter-spacing: 0;
    }

    .c-property-info dt {
      color: var(--color-primary);
      font-weight: 700;
      letter-spacing: 0.05em;
    }

    .c-property-info dd {
      margin: 0;
    }

    .c-btn--link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: #4b4b4b;
      color: #ffffff;
      padding: 10px 40px;
      border-radius: 100px;
      font-size: 0.9rem;
      font-weight: 700;
      transition: opacity 0.3s ease;
      border: none;
    }

    .c-btn--link::before {
      content: '▶';
      font-size: 0.6em;
    }

    .c-btn--link:hover {
      opacity: 0.8;
    }

    /* Property Card Actions */
    .c-card__actions {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 25px;
    }

    .c-btn--card-detail {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 10px;
      background: #ffffff;
      border: 1px solid #333333;
      color: #333333;
      font-weight: 700;
      font-size: 16px; /* Updated to 16px */
      border-radius: 100px; /* Pill shape */
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .c-btn--card-detail:hover {
      background: #f5f5f5;
      transform: translateY(-2px);
    }

    .c-btn--card-inquiry {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 60px;
      background: #000000; /* Match CV button black */
      border: 1px solid #000000;
      color: #ffffff;
      font-weight: 700;
      font-size: 16px; /* Updated to 16px */
      border-radius: 100px; /* Pill shape */
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .c-btn--card-inquiry:hover {
      background: #333333;
      border-color: #333333;
      transform: translateY(-2px);
    }

    /* Hiraya Banner */
    .c-hiraya-banner {
      background: var(--color-bg-base);
      padding: 80px 20px;
      text-align: center;
    }

    .c-hiraya-banner a {
      display: inline-block;
      width: 100%;
      transition: opacity 0.3s ease;
    }

    .c-hiraya-banner a:hover {
      opacity: 0.9;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .l-container--wide {
        padding: 0 15px;
      }

      .c-special__header {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
        text-align: center;
      }

      .c-special__header-text {
        width: 100%;
        transform: none;
        padding: 0 15px;
        box-sizing: border-box;
      }

      .c-special__header-text .c-sec-title,
      .c-special__header-text .c-sec-title__sub,
      .c-special__header-text .c-sec-title__main {
        text-align: left;
      }

      .c-special__header-text .c-sec-title__main {
        font-size: 1.8rem;
      }

      .c-special__header-text .c-sec-title::after {
        width: 100vw;
        right: 0;
        left: auto;
      }

      .c-special__desc {
        text-align: left;
      }

      .c-special__cta-link {
        justify-content: center;
      }

      .c-special__header-map img {
        margin: 0 auto;
      }

      .c-hero__title {
        font-size: 5rem;
      }

      .c-hero__title-sub {
        font-size: 2.2rem;
        margin-bottom: 15px;
      }

      .c-feature-intro {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 10px;
      }

      .l-section {
        padding: 60px 0;
      }

      .c-cv {
        padding: 60px 0;
      }

      .c-hero__text-box {
        padding: 40px 15px;
      }

      .c-feature-tags {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        gap: 15px 10px;
        margin-top: 30px;
      }
      .c-feature-tag:nth-child(1) {
        grid-column: 1 / -1;
      }

      .c-special__list {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 15px;
      }

      .c-cv__card {
        padding: 40px 15px;
      }

      .c-cv--private .c-cv__card-title {
        font-size: 1.3rem;
        white-space: nowrap;
      }

      .c-cv__lead {
        font-size: 1rem;
      }

      .c-cv__cta {
        padding: 18px 20px;
        font-size: 0.95rem;
        width: 100%;
        box-sizing: border-box;
      }

      .c-feature-tag {
        width: clamp(140px, 44vw, 180px);
        height: clamp(140px, 44vw, 180px);
        flex-shrink: 0;
      }
      .c-feature-tag-small {
        font-size: clamp(12px, 3.5vw, 16px);
      }
      .c-feature-tag-large {
        font-size: clamp(18px, 5.5vw, 24px);
        margin-top: 4px;
      }

      .c-hiraya-banner {
        padding: 60px 15px;
      }
      .c-hiraya-banner .l-container {
        padding: 0;
      }
    }

    /* Footer */
    .c-footer {
      background: #111111;
      color: #aaaaaa;
      padding: 80px 20px 40px;
      font-size: 16px; /* Rule 86 */
    }

    .c-footer__inner {
      max-width: var(--container-width);
      margin: 0 auto;
      display: grid; /* Rule 10 */
      grid-template-columns: 1fr 2fr;
      gap: 60px;
      align-items: start;
    }

    @media (max-width: 768px) {
      .c-footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    .c-footer__brand {
      font-size: 1.3rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 20px;
      letter-spacing: 0.15em;
    }

    .c-footer__info {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 10px 20px;
      margin-bottom: 40px;
      line-height: 1.8;
    }

    .c-footer__info dt {
      color: #888888;
      font-weight: 500;
    }

    .c-footer__info dd {
      margin: 0;
      color: #cccccc;
    }

    .c-footer__copy {
      border-top: 1px solid #333333;
      padding-top: 25px;
      text-align: center;
      font-size: 0.8rem;
      color: #666666;
    }

    /* Non-public Property Popup */
    .c-popup {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 320px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      padding: 25px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transform: translateY(150%);
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .c-popup.is-visible {
      transform: translateY(0);
    }

    .c-popup__close {
      position: absolute;
      top: 10px;
      right: 15px;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #999;
      cursor: pointer;
      line-height: 1;
    }

    .c-popup__badge {
      background: #af9f5e;
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 15px;
      letter-spacing: 0.05em;
    }

    .c-popup__title {
      font-size: 1.15rem;
      font-weight: 850;
      color: #333333;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .c-popup__text {
      font-size: 0.85rem;
      color: #666;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .c-popup__btn {
      width: 100%;
      background: #111;
      color: #fff;
      padding: 12px 0;
      border-radius: 100px;
      font-size: 0.95rem;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .c-popup__btn:hover {
      background: #333;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .c-popup {
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
        padding: 20px;
      }
      .c-popup__title {
        font-size: 1.05rem;
      }
      .c-popup__title br {
        display: none;
      }
      .c-property-info {
        font-size: 14px;
        gap: 10px 15px;
        line-height: 1.4;
      }
      .c-card__recommend-text {
        font-size: 14px;
      }
      .c-special__desc {
        font-size: 16px;
      }
      .c-special__filter {
        gap: 10px 12px;
        padding-bottom: 40px;
        margin-bottom: 40px;
      }
      .c-filter-btn {
        padding: 8px 16px;
        font-size: 14px;
      }
      .c-special__source {
        font-size: 14px;
      }
      .c-card {
        border-bottom: 1px solid #e5e5e5;
      }
      br.sp-only {
        display: inline !important;
      }
      .c-header {
        padding: 5px 0;
      }
      .c-header__logo {
        max-width: 150px;
      }
    }

.event-form-inner {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 20px 30px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  @media (max-width: 768px) {
    max-width: 100%;
  }
}

.event-form-inner .form-control {
  display: block;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--bs-body-color);
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: 1px solid #dee2e6;
    border-radius: .375em;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}