    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --black: #0a0a0a;
      --dark: #111111;
      --dark-gray: #1a1a1a;
      --medium-gray: #2a2a2a;
      --light-gray: #888888;
      --off-white: #e8e8e8;
      --white: #ffffff;
      --accent: #c8a45c;
    }

    /* デフォルトaタグスタイル（サイト共通） */
    a { color: var(--accent); transition: opacity 0.2s ease; }
    a:hover { opacity: 0.7; }


    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      background-color: var(--black);
      color: var(--off-white);
      line-height: 1.8;
      overflow-x: hidden;
    }

    /* ===== Header ===== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 20px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(10, 10, 10, 0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: padding 0.3s ease;
    }

    header.scrolled {
      padding: 12px 60px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo img {
      height: 40px;
      width: auto;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    nav a {
      color: var(--light-gray);
      text-decoration: none;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.1em;
      transition: color 0.3s ease;
      position: relative;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--accent);
      transition: width 0.3s ease;
    }

    nav a:hover {
      color: var(--white);
    }

    nav a:hover::after {
      width: 100%;
    }

    .nav-contact {
      padding: 10px 28px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 12px;
      letter-spacing: 0.15em;
      transition: all 0.3s ease;
    }

    .nav-contact:hover {
      background: var(--white);
      color: var(--black) !important;
      border-color: var(--white);
    }

    .nav-contact::after {
      display: none;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 28px;
      height: 28px;
      cursor: pointer;
      z-index: 200;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--white);
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      z-index: 150;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .mobile-nav.open {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-nav a {
      color: var(--off-white);
      text-decoration: none;
      font-size: 18px;
      letter-spacing: 0.15em;
      transition: color 0.3s ease;
    }

    .mobile-nav a:hover {
      color: var(--accent);
    }

    /* ===== Hero ===== */
    .hero {
      height: 100vh;
      height: 100dvh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding-left: 0;
      padding-right: 0;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('../images/toppage.webp') center center / cover no-repeat;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
    }

    .hero-grid {
      display: none;
    }

    .hero-content {
      position: relative;
      text-align: center;
      max-width: 900px;
      padding: 0 40px;
    }

    .hero-label {
      display: inline-block;
      font-size: 11px;
      letter-spacing: 0.3em;
      color: var(--accent);
      margin-bottom: 32px;
      padding: 8px 20px;
      border: 1px solid rgba(200, 164, 92, 0.3);
      animation: fadeInUp 1s ease 0.2s both;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 400;
      letter-spacing: 0.05em;
      line-height: 1.3;
      color: var(--white);
      margin-bottom: 24px;
      animation: fadeInUp 1s ease 0.4s both;
    }

    .hero-subtitle {
      font-size: 15px;
      font-weight: 300;
      color: var(--light-gray);
      line-height: 2;
      margin-bottom: 48px;
      animation: fadeInUp 1s ease 0.6s both;
    }

    .hero-cta {
      display: inline-block;
      padding: 16px 48px;
      background: transparent;
      border: 1px solid var(--accent);
      color: var(--accent);
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 0.2em;
      transition: all 0.4s ease;
      animation: fadeInUp 1s ease 0.8s both;
    }

    .hero-cta:hover {
      background: var(--accent);
      color: var(--black);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 0;
      right: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      animation: fadeInUp 1s ease 1s both;
    }

    .scroll-indicator span {
      font-size: 10px;
      letter-spacing: 0.2em;
      color: var(--light-gray);
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--accent), transparent);
      animation: scrollAnim 2s ease infinite;
    }

    /* ===== Sections Common ===== */
    section {
      padding: 120px 60px;
    }

    .section-label {
      font-size: 11px;
      letter-spacing: 0.3em;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 400;
      color: var(--white);
      margin-bottom: 20px;
      letter-spacing: 0.03em;
    }

    .section-desc {
      font-size: 14px;
      color: var(--light-gray);
      max-width: 600px;
      line-height: 2;
      font-weight: 300;
    }

    /* ===== About ===== */
    .about {
      background: var(--dark);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-right {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .about-image {
      width: 100%;
      height: 360px;
      object-fit: cover;
      display: block;
    }

    /* ===== Services ===== */
    .services {
      background: var(--black);
    }

    .services-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .services-header .section-desc {
      margin: 0 auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      max-width: 900px;
      margin: 0 auto;
    }

    /* BNI Featured Card */
    .service-featured {
      background: var(--dark);
      border: 1px solid var(--medium-gray);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      overflow: hidden;
      transition: all 0.4s ease;
      position: relative;
    }

    .service-featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    a.service-featured {
      text-decoration: none;
      color: inherit;
    }

    .service-link-btn {
      display: inline-block;
      margin-top: 24px;
      padding: 12px 32px;
      border: 1px solid var(--accent);
      color: var(--accent);
      font-size: 13px;
      letter-spacing: 0.1em;
      transition: all 0.3s ease;
    }

    .service-link-btn:hover {
      background: var(--accent);
      color: var(--black);
    }

    .service-featured:hover {
      border-color: rgba(200, 164, 92, 0.3);
    }

    .service-featured:hover::before {
      transform: scaleX(1);
    }

    .service-featured-img {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px 16px;
      background: #ffffff;
    }

    .service-featured-img img {
      max-width: 100%;
      width: 100%;
      height: auto;
    }

    .service-featured-body {
      padding: 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .service-featured-body h3 {
      font-size: 22px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 20px;
      letter-spacing: 0.05em;
    }

    .service-featured-body p {
      font-size: 14px;
      color: var(--light-gray);
      line-height: 2;
      font-weight: 300;
      margin-bottom: 16px;
    }

    .service-stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 24px;
    }

    .service-stat {
      text-align: center;
      padding: 16px 8px;
      border: 1px solid var(--medium-gray);
    }

    .service-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      color: var(--accent);
      display: block;
      margin-bottom: 4px;
    }

    .service-stat-label {
      font-size: 10px;
      letter-spacing: 0.05em;
      color: var(--light-gray);
    }

    /* Sub service cards */
    .services-sub-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin-top: 32px;
    }

    .service-card {
      background: var(--dark);
      padding: 48px 36px;
      border: 1px solid var(--medium-gray);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .service-card:hover {
      border-color: rgba(200, 164, 92, 0.3);
      transform: translateY(-4px);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-icon {
      font-size: 32px;
      margin-bottom: 24px;
      display: block;
    }

    .service-card h3 {
      font-size: 18px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 16px;
      letter-spacing: 0.05em;
    }

    .service-card p {
      font-size: 13px;
      color: var(--light-gray);
      line-height: 1.9;
      font-weight: 300;
    }

    /* ===== Affiliates ===== */
    .affiliates {
      background: var(--dark);
    }

    .affiliates-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .affiliates-header .section-desc {
      margin: 0 auto;
    }

    .affiliates-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      max-width: 900px;
      margin: 0 auto;
    }

    .affiliate-card {
      background: var(--black);
      border: 1px solid var(--medium-gray);
      padding: 36px;
      text-decoration: none;
      color: inherit;
      transition: all 0.4s ease;
      display: block;
      position: relative;
    }

    .affiliate-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .affiliate-card:hover {
      border-color: rgba(200, 164, 92, 0.3);
      transform: translateY(-4px);
    }

    .affiliate-card:hover::before {
      transform: scaleX(1);
    }

    .affiliate-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .affiliate-card h3 {
      font-size: 17px;
      font-weight: 500;
      color: var(--white);
      letter-spacing: 0.03em;
    }

    .affiliate-card-tag {
      font-size: 10px;
      letter-spacing: 0.1em;
      color: var(--accent);
      padding: 4px 12px;
      border: 1px solid rgba(200, 164, 92, 0.3);
      white-space: nowrap;
    }

    .affiliate-card p {
      font-size: 13px;
      color: var(--light-gray);
      line-height: 1.9;
      font-weight: 300;
      margin-bottom: 20px;
    }

    .affiliate-card-link {
      font-size: 12px;
      color: var(--accent);
      letter-spacing: 0.05em;
      transition: color 0.3s ease;
    }

    .affiliate-card:hover .affiliate-card-link {
      color: var(--white);
    }

    .affiliate-sub {
      display: flex;
      gap: 16px;
      margin-top: 24px;
    }

    .affiliate-sub-item {
      flex: 1;
      background: var(--dark);
      border: 1px solid var(--medium-gray);
      padding: 20px;
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
      display: block;
    }

    .affiliate-sub-item:hover {
      border-color: rgba(200, 164, 92, 0.3);
    }

    .affiliate-sub-item h4 {
      font-size: 13px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 8px;
    }

    .affiliate-sub-item p {
      font-size: 11px;
      color: var(--light-gray);
      line-height: 1.7;
      margin-bottom: 12px;
    }

    .affiliate-sub-link {
      font-size: 11px;
      color: var(--accent);
    }

    /* ===== Message ===== */
    .message {
      background: var(--dark);
      position: relative;
    }

    .message-layout {
      display: grid;
      grid-template-columns: 400px 1fr;
      gap: 60px;
      align-items: center;
    }

    .message-photo {
      position: relative;
    }

    .message-photo img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      object-position: top center;
      display: block;
      filter: grayscale(20%);
    }

    .message-photo-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 16px 20px;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    }

    .message-photo-name {
      font-size: 14px;
      color: var(--white);
      font-weight: 500;
    }

    .message-photo-title {
      font-size: 11px;
      color: var(--light-gray);
      letter-spacing: 0.05em;
    }

    .message-body {
      position: relative;
    }

    .message-quote-box {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 48px 44px;
      position: relative;
    }

    .message-quote-mark-open {
      font-family: 'Playfair Display', serif;
      font-size: 120px;
      color: var(--accent);
      opacity: 0.5;
      position: absolute;
      top: 8px;
      left: 20px;
      line-height: 1;
    }

    .message-quote-mark-close {
      font-family: 'Playfair Display', serif;
      font-size: 120px;
      color: var(--accent);
      opacity: 0.5;
      position: absolute;
      bottom: -10px;
      right: 20px;
      line-height: 1;
    }

    .message-quote {
      font-size: 15px;
      font-weight: 300;
      color: var(--off-white);
      line-height: 2.2;
      position: relative;
      z-index: 1;
    }

    .message-author {
      margin-top: 32px;
      font-size: 13px;
      color: var(--light-gray);
      letter-spacing: 0.1em;
      text-align: right;
    }

    .message-author-name {
      font-size: 18px;
      color: var(--white);
      font-weight: 500;
      display: block;
      margin-top: 8px;
      letter-spacing: 0.05em;
    }

    .profile-toggle-btn {
      display: inline-block;
      float: right;
      margin-top: 24px;
      padding: 12px 32px;
      border: 1px solid var(--accent);
      color: var(--accent);
      font-size: 13px;
      letter-spacing: 0.1em;
      cursor: pointer;
      transition: all 0.3s ease;
      background: none;
      font-family: 'Noto Sans JP', sans-serif;
    }

    .profile-toggle-btn:hover {
      background: var(--accent);
      color: var(--black);
    }

    /* Profile Modal */
    .profile-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(10px);
      z-index: 300;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .profile-modal-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .profile-modal-panel {
      width: 560px;
      max-width: 90vw;
      height: 100vh;
      height: 100dvh;
      background: var(--dark);
      border-left: 1px solid rgba(200, 164, 92, 0.2);
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
      padding: 48px 40px;
      padding-bottom: 80px;
    }

    .profile-modal-overlay.open .profile-modal-panel {
      transform: translateX(0);
    }

    .profile-modal-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 36px;
    }

    .profile-modal-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      color: var(--white);
      font-weight: 400;
    }

    .profile-modal-header span {
      display: block;
      font-size: 12px;
      color: var(--accent);
      letter-spacing: 0.2em;
      margin-bottom: 8px;
    }

    .profile-modal-close {
      width: 40px;
      height: 40px;
      background: none;
      border: 1px solid var(--medium-gray);
      color: var(--light-gray);
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .profile-modal-close:hover {
      border-color: var(--accent);
      color: var(--white);
    }

    .profile-bio {
      font-size: 14px;
      color: var(--light-gray);
      line-height: 2.2;
      font-weight: 300;
      margin-bottom: 36px;
      border-left: 2px solid var(--accent);
      padding-left: 20px;
    }

    .profile-section {
      margin-bottom: 28px;
    }

    @media (max-width: 768px) {
      .profile-modal-panel {
        width: 100vw;
        max-width: 100vw;
        height: 100dvh;
        padding: 32px 16px 100px;
      }
    }

    .profile-section-title {
      font-size: 13px;
      font-weight: 500;
      color: var(--accent);
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }

    .profile-section ul {
      list-style: none;
      padding: 0;
    }

    .profile-section li {
      font-size: 13px;
      color: var(--off-white);
      line-height: 2;
      padding-left: 16px;
      position: relative;
    }

    .profile-section li::before {
      content: '●';
      position: absolute;
      left: 0;
      font-size: 6px;
      top: 0.85em;
      color: var(--accent);
    }

    .profile-section li.sub {
      padding-left: 32px;
      color: var(--light-gray);
      font-size: 12px;
    }

    .profile-section li.sub::before {
      left: 16px;
      content: '・';
      font-size: 14px;
      color: var(--light-gray);
      top: 0;
    }

    .profile-sns {
      display: flex;
      gap: 16px;
      margin-top: 28px;
    }

    .profile-sns a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border: 1px solid var(--medium-gray);
      color: var(--off-white);
      text-decoration: none;
      font-size: 12px;
      letter-spacing: 0.05em;
      transition: all 0.3s ease;
    }

    .profile-sns a:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .profile-sns svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    /* ===== News Preview ===== */
    .news-preview {
      background: var(--dark);
      padding: 120px 60px;
    }

    .news-preview-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .news-preview-item {
      display: grid;
      grid-template-columns: 100px auto 1fr;
      gap: 20px;
      align-items: center;
      padding: 24px 0;
      border-bottom: 1px solid var(--medium-gray);
      text-decoration: none;
      color: inherit;
      transition: opacity 0.3s;
    }

    .news-preview-item:hover {
      opacity: 0.7;
    }

    .news-preview-date {
      font-size: 13px;
      color: var(--light-gray);
      letter-spacing: 0.05em;
    }

    .news-preview-cat {
      font-size: 10px;
      letter-spacing: 0.1em;
      padding: 4px 12px;
      border: 1px solid rgba(200, 164, 92, 0.3);
      color: var(--accent);
      white-space: nowrap;
      justify-self: start;
    }

    .news-preview-cat--column {
      border-color: var(--medium-gray);
      color: var(--light-gray);
    }

    .news-preview-title {
      font-size: 15px;
      color: var(--white);
    }

    .news-preview-more {
      text-align: center;
      margin-top: 40px;
    }

    .news-preview-btn {
      display: inline-block;
      padding: 12px 32px;
      border: 1px solid var(--accent);
      color: var(--accent);
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 0.1em;
      transition: all 0.3s;
    }

    .news-preview-btn:hover {
      background: var(--accent);
      color: var(--black);
    }

    @media (max-width: 768px) {
      .news-preview {
        padding: 60px 16px;
      }

      .news-preview-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px 0;
      }

      .news-preview-cat {
        justify-self: start;
      }
    }

    /* ===== Events ===== */
    .events {
      background: var(--black);
    }

    .events-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .events-header .section-desc {
      margin: 0 auto;
    }

    .events-list {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .event-card {
      display: grid;
      grid-template-columns: 120px 1fr auto;
      gap: 24px;
      align-items: center;
      padding: 28px 32px;
      background: var(--dark);
      border: 1px solid var(--medium-gray);
      transition: all 0.3s ease;
    }

    .event-card {
      cursor: pointer;
    }

    .event-card:hover {
      border-color: rgba(200, 164, 92, 0.3);
    }

    /* Event Modal */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(8px);
      z-index: 300;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      padding: 20px;
    }

    .modal-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .modal {
      background: var(--dark);
      border: 1px solid var(--medium-gray);
      max-width: 560px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
    }

    .modal-header {
      padding: 32px 32px 0;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .modal-header-info {
      flex: 1;
    }

    .modal-header-info .event-date-day {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      color: var(--accent);
    }

    .modal-header-info h2 {
      font-size: 20px;
      font-weight: 500;
      color: var(--white);
      margin-top: 8px;
      line-height: 1.5;
    }

    .modal-close {
      width: 36px;
      height: 36px;
      background: none;
      border: 1px solid var(--medium-gray);
      color: var(--light-gray);
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      flex-shrink: 0;
      margin-left: 16px;
    }

    .modal-close:hover {
      border-color: var(--accent);
      color: var(--white);
    }

    .modal-details {
      padding: 24px 32px;
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 12px 16px;
      border-bottom: 1px solid var(--medium-gray);
    }

    .modal-details dt {
      font-size: 12px;
      color: var(--light-gray);
    }

    .modal-details dd {
      font-size: 13px;
      color: var(--off-white);
    }

    .modal-form {
      padding: 24px 32px 32px;
    }

    .modal-form h3 {
      font-size: 14px;
      color: var(--white);
      margin-bottom: 20px;
      letter-spacing: 0.05em;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: 12px;
      color: var(--light-gray);
      margin-bottom: 6px;
      letter-spacing: 0.05em;
    }

    .form-group label .required {
      color: var(--accent);
      margin-left: 4px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 10px 14px;
      background: var(--black);
      border: 1px solid var(--medium-gray);
      color: var(--off-white);
      font-size: 14px;
      font-family: 'Noto Sans JP', sans-serif;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--accent);
    }

    .form-group textarea {
      height: 80px;
      resize: vertical;
    }

    .form-submit {
      width: 100%;
      padding: 14px;
      background: var(--accent);
      color: var(--black);
      border: none;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.15em;
      cursor: pointer;
      transition: background 0.3s ease;
      font-family: 'Noto Sans JP', sans-serif;
      margin-top: 8px;
    }

    .form-submit:hover {
      background: var(--white);
    }

    .form-paypal-note {
      text-align: center;
      margin-top: 12px;
      font-size: 11px;
      color: var(--light-gray);
    }

    .event-date {
      text-align: center;
    }

    .event-date-day {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      color: var(--accent);
      display: block;
      line-height: 1;
    }

    .event-date-month {
      font-size: 12px;
      color: var(--light-gray);
      letter-spacing: 0.1em;
      margin-top: 4px;
      display: block;
    }

    .event-info h3 {
      font-size: 16px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 8px;
    }

    .event-info p {
      font-size: 13px;
      color: var(--light-gray);
      font-weight: 300;
      line-height: 1.6;
    }

    .event-tag {
      font-size: 10px;
      letter-spacing: 0.1em;
      padding: 6px 16px;
      border: 1px solid rgba(200, 164, 92, 0.3);
      color: var(--accent);
      white-space: nowrap;
      align-self: center;
    }

    .event-tag.closed {
      border-color: var(--medium-gray);
      color: var(--light-gray);
    }

    @media (max-width: 768px) {
      .event-card {
        grid-template-columns: 80px 1fr;
        gap: 16px;
        padding: 20px;
      }

      .event-tag {
        grid-column: 1 / -1;
        justify-self: start;
      }

      .event-date-day {
        font-size: 28px;
      }
    }

    /* ===== Company Info ===== */
    .company {
      background: var(--black);
    }

    .company-header {
      margin-bottom: 60px;
    }

    .company-table {
      max-width: 800px;
    }

    .company-row {
      display: grid;
      grid-template-columns: 160px 1fr;
      border-bottom: 1px solid var(--medium-gray);
      padding: 20px 0;
    }

    .company-row dt {
      font-size: 13px;
      color: var(--light-gray);
      letter-spacing: 0.05em;
    }

    .company-row dd {
      font-size: 14px;
      color: var(--off-white);
    }

    .company-map {
      margin-top: 60px;
      max-width: 800px;
    }

    .company-map iframe {
      display: block;
    }

    /* ===== Contact CTA ===== */
    .contact-cta {
      background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
      text-align: center;
      padding: 100px 60px;
      position: relative;
    }

    .contact-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 50%, rgba(200, 164, 92, 0.05) 0%, transparent 60%);
    }

    .contact-cta .section-title {
      margin-bottom: 16px;
    }

    .contact-cta .section-desc {
      margin: 0 auto 40px;
      text-align: center;
    }

    .contact-btn {
      display: inline-block;
      padding: 18px 56px;
      background: var(--accent);
      color: var(--black);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.2em;
      transition: all 0.4s ease;
      position: relative;
    }

    .contact-btn:hover {
      background: var(--white);
    }

    /* reCAPTCHA badge */
    .grecaptcha-badge {
      visibility: hidden;
    }

    /* ===== Contact Modal ===== */
    .contact-modal-desc {
      font-size: 13px;
      color: var(--light-gray);
      line-height: 1.8;
      margin-bottom: 28px;
      font-weight: 300;
    }

    .form-success {
      text-align: center;
      padding: 40px 20px;
    }

    .form-success-icon {
      font-size: 48px;
      margin-bottom: 16px;
      display: block;
    }

    .form-success h3 {
      font-size: 18px;
      color: var(--white);
      margin-bottom: 12px;
    }

    .form-success p {
      font-size: 13px;
      color: var(--light-gray);
      line-height: 1.8;
    }

    /* ===== Footer ===== */
    footer {
      background: var(--black);
      border-top: 1px solid var(--medium-gray);
      padding: 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
    }

    .footer-logo img {
      height: 30px;
      opacity: 0.6;
    }

    .footer-nap {
      flex: 1;
      text-align: center;
      min-width: 0;
    }

    .footer-company-name {
      font-size: 12px;
      color: var(--off-white);
      font-weight: 500;
      letter-spacing: 0.05em;
      margin-bottom: 6px;
    }

    .footer-address {
      font-size: 11px;
      color: var(--light-gray);
      line-height: 1.7;
      letter-spacing: 0.02em;
    }

    .footer-copy {
      font-size: 11px;
      color: var(--light-gray);
      letter-spacing: 0.1em;
    }

    @media (max-width: 768px) {
      footer {
        flex-direction: column;
        text-align: center;
      }
      .footer-nap {
        text-align: center;
      }
    }

    /* ===== Animations ===== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes scrollAnim {
      0%, 100% { opacity: 1; transform: scaleY(1); }
      50% { opacity: 0.5; transform: scaleY(0.6); transform-origin: top; }
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== Responsive ===== */
    @media (max-width: 1024px) {
      section {
        padding: 80px 40px;
      }

      header {
        padding: 16px 30px;
      }

      .about {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .service-featured {
        grid-template-columns: 1fr 1fr;
      }

      .services-sub-grid {
        grid-template-columns: 1fr 1fr;
      }

      .message-layout {
        grid-template-columns: 320px 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 60px 16px;
      }

      .affiliates-grid {
        grid-template-columns: 1fr;
      }

      .affiliate-sub {
        flex-direction: column;
      }

      .affiliate-card {
        padding: 24px 20px;
      }

      .affiliate-sub-item {
        padding: 16px;
      }

      header {
        padding: 14px 16px;
      }

      header.scrolled {
        padding: 12px 16px;
      }

      nav {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero-title {
        font-size: 28px;
      }

      .hero-content {
        padding: 60px 16px 0;
      }

      .scroll-indicator {
        bottom: 24px;
      }

      .service-featured {
        grid-template-columns: 1fr;
      }

      .service-featured-img {
        padding: 24px 16px;
      }

      .service-featured-body {
        padding: 24px 20px;
      }

      .services-sub-grid {
        grid-template-columns: 1fr;
      }

      .message-layout {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .message-photo img {
        height: 360px;
        object-position: center 20%;
      }

      .message-quote-box {
        padding: 28px 20px;
      }

      .profile-toggle-btn {
        float: right;
      }

      .company-row {
        grid-template-columns: 1fr;
        gap: 4px;
      }

      .contact-cta {
        padding: 60px 16px;
      }

      footer {
        flex-direction: column;
        gap: 20px;
        padding: 40px 16px;
      }
    }