/* contact.css - Page-specific styles only */

/* パンくず後の調整 */
.breadcrumb + .contact-section {
  min-height: calc(100vh - 100px);
}

.breadcrumb + .contact-section .contact-left {
  padding-top: 4rem;
}

.breadcrumb + .contact-section .contact-right {
  padding-top: 4rem;
}

/* Contact Section */
    .contact-section {
      min-height: 100vh;
      display: flex;
      position: relative;
      overflow: hidden;
    }

    .contact-section::before {
      content: 'CONTACT';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Cormorant Garamond', serif;
      font-size: 15vw;
      font-weight: 300;
      color: var(--accent-gold);
      opacity: 0.02;
      white-space: nowrap;
      pointer-events: none;
    }

    .contact-left {
      flex: 1;
      padding: 12rem 4rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    .contact-decorative {
      position: absolute;
      top: 20%;
      right: 10%;
      width: 200px;
      height: 200px;
      border: 1px solid var(--border-accent);
      transform: rotate(45deg);
      opacity: 0.3;
      animation: float 12s ease-in-out infinite;
    }

    .contact-decorative::before {
      content: '';
      position: absolute;
      top: 30px;
      left: 30px;
      right: 30px;
      bottom: 30px;
      border: 1px solid var(--border-accent);
    }

    .page-label {
      font-family: 'Outfit', sans-serif;
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--accent-gold);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      animation: slideIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
    }

    .page-label::before {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--accent-gold);
    }

    .contact-title {
      font-family: 'Shippori Mincho', serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 400;
      letter-spacing: 0.1em;
      margin-bottom: 1.5rem;
      animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
    }

    .contact-description {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 2;
      max-width: 400px;
      animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
    }

    .contact-note {
      margin-top: 2rem;
      padding: 1.5rem;
      border: 1px solid var(--border-accent);
      display: flex;
      align-items: center;
      gap: 1rem;
      animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
    }

    .contact-note-icon {
      width: 40px;
      height: 40px;
      border: 1px solid var(--accent-gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-note-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--accent-gold);
    }

    .contact-note-text {
      font-size: 0.85rem;
      color: var(--text-secondary);
    }

    .contact-note-text strong {
      color: var(--accent-gold);
      font-weight: 500;
    }

    .contact-right {
      flex: 1.2;
      padding: 12rem 4rem 4rem;
      background: var(--bg-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Form */
    .contact-form {
      width: 100%;
      max-width: 500px;
    }

    .form-group {
      margin-bottom: 2rem;
      animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .form-group:nth-child(1) { animation-delay: 0.3s; }
    .form-group:nth-child(2) { animation-delay: 0.4s; }
    .form-group:nth-child(3) { animation-delay: 0.5s; }
    .form-group:nth-child(4) { animation-delay: 0.6s; }

    .form-label {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 0.8rem;
    }

    .form-label-text {
      font-family: 'Outfit', sans-serif;
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-secondary);
    }

    .form-label-required {
      font-family: 'Outfit', sans-serif;
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--bg-primary);
      background: var(--accent-gold);
      padding: 0.2rem 0.5rem;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      padding: 1rem 0;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--border-subtle);
      color: var(--text-primary);
      font-family: 'Shippori Mincho', serif;
      font-size: 1rem;
      transition: border-color 0.3s ease;
      outline: none;
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: var(--text-muted);
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: var(--accent-gold);
    }

    .form-textarea {
      resize: vertical;
      min-height: 150px;
      line-height: 1.8;
    }

    .form-submit {
      margin-top: 3rem;
      animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
    }

    .submit-button {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      font-family: 'Outfit', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 1.5rem 3rem;
      background: var(--accent-gold);
      color: var(--bg-primary);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: color 0.4s ease;
    }

    .submit-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--bg-primary);
      transform: translateX(-100%);
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      z-index: 0;
    }

    .submit-button:hover {
      color: var(--accent-gold);
    }

    .submit-button:hover::before {
      transform: translateX(0);
    }

    .submit-button span,
    .submit-button svg {
      position: relative;
      z-index: 1;
    }

    /* Responsive */
    @media (max-width: 992px) {

      .contact-section {
        flex-direction: column;
      }

      .contact-left,
      .contact-right {
        padding: 8rem 2rem 4rem;
      }

      .contact-right {
        padding-top: 4rem;
      }

      .contact-decorative {
        width: 100px;
        height: 100px;
        top: 15%;
        right: 5%;
      }

    }