  :root {
    --pink:        #D4637E;
    --pink-dark:   #B84A66;
    --pink-light:  #FDF2F5;
    --pink-gradient: #F9E4EC;
    --green:       #1A9D57;
    --green-dark:  #147A44;
    --green-light: #ECF7F1;
    --red:         #E53935;
    --ink:         #243040;
    --sub:         #4A5568;
    --bg:          #ffffff;
    --bg-soft:     #F7F8FA;
    --line:        #E8ECF0;
    --radius:      12px;
    --fs-body:     16px;
    --fs-note:     14px;
    --fs-tag:      12px;
    --maxw:        1200px;
    --shadow-sm:   0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:   0 4px 16px rgba(0,0,0,.05), 0 2px 6px rgba(0,0,0,.04);
    --shadow-lg:   0 12px 40px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
    --shadow-xl:   0 20px 60px rgba(0,0,0,.08), 0 8px 20px rgba(0,0,0,.04);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }
  body { font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif; color: var(--ink); background: var(--bg); line-height: 1.8; font-weight: 400; text-wrap: wrap; word-break: normal; }

  /* BASE */
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
  .eyebrow { font-size: 11px; font-weight: 700; color: var(--pink-dark); letter-spacing: .25em; text-transform: uppercase; margin-bottom: 20px; }

  .btn { display: inline-block; padding: 18px 40px; border-radius: 9999px; font-size: 15px; font-weight: 500; text-decoration: none; letter-spacing: .02em; transition: all .35s cubic-bezier(.4,0,.2,1); box-shadow: rgba(26,38,51,.1) 0px 6px 24px 0px; }
  .btn-primary { background: var(--pink); color: #fff; border: 1px solid transparent; box-shadow: 0 4px 16px rgba(212,99,126,.2); }
  .btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,99,126,.3); }
  .btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); box-shadow: none; }
  .btn-ghost:hover { background: var(--bg-soft); border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }

  .card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; transition: all .4s cubic-bezier(.4,0,.2,1); box-shadow: var(--shadow-sm); }
  .card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

  /* PAGE HERO */
  .page-hero { padding: 88px 0 64px; }
  .breadcrumb { font-size: var(--fs-note); color: var(--sub); margin-bottom: 20px; }
  .breadcrumb a { color: var(--sub); text-decoration: none; }
  .breadcrumb a:hover { color: var(--ink); }
  .breadcrumb span { margin: 0 6px; }
  .page-hero h1 { font-size: 36px; font-weight: 700; line-height: 1.4; letter-spacing: -.02em; }
  .page-hero p.sub { font-size: var(--fs-body); color: var(--sub); margin-top: 12px; line-height: 1.8; max-width: 660px; }

  /* FORM SECTION */
  .form-section { padding: 96px 0 80px; }
  .form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 64px; align-items: start; }

  /* FORM */
  .contact-form { display: flex; flex-direction: column; gap: 28px; }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field label { font-size: 13px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 8px; }
  .required-badge { display: inline-block; background: var(--red); color: #fff; font-size: var(--fs-tag); font-weight: 700; padding: 2px 6px; border-radius: 9999px; }
  .optional-badge { display: inline-block; background: var(--pink-light); border: 1px solid var(--line); color: var(--sub); font-size: var(--fs-tag); font-weight: 500; padding: 2px 6px; border-radius: 9999px; }
  .field select,
  .field input[type="text"],
  .field input[type="email"] {
    height: 48px; padding: 0 16px; border: 1px solid var(--line); border-radius: var(--radius); font-size: 14px; font-family: inherit; color: var(--ink); background: #fff; appearance: none; -webkit-appearance: none; transition: border-color .15s;
  }
  .field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
  .field select:focus,
  .field input:focus,
  .field textarea:focus { outline: none; border-color: var(--ink); }
  .field textarea { padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); font-size: 14px; font-family: inherit; color: var(--ink); background: #fff; resize: vertical; min-height: 160px; line-height: 1.7; transition: border-color .15s; }
  .field-note { font-size: var(--fs-note); color: var(--sub); }
  .submit-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 56px; background: var(--pink); color: #fff; border: none; border-radius: 9999px; font-size: 15px; font-weight: 700; font-family: inherit; cursor: pointer; transition: all .35s cubic-bezier(.4,0,.2,1); letter-spacing: .03em; box-shadow: 0 4px 16px rgba(212,99,126,.2); }
  .submit-btn:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,99,126,.3); }
  .submit-arrow { width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s cubic-bezier(.4,0,.2,1); }
  .submit-btn:hover .submit-arrow { transform: translateX(4px); }
  .form-note { font-size: var(--fs-note); color: var(--sub); line-height: 1.7; }
  .form-note a { color: var(--pink); text-decoration: none; }
  .form-note a:hover { text-decoration: underline; }

  /* Contact Form 7 マークアップをコーディングのフォームデザインに合わせる */
  .contact-form-wrap .wpcf7-form { display: flex; flex-direction: column; gap: 28px; }
  .contact-form-wrap .wpcf7-form p { display: flex; flex-direction: column; gap: 8px; margin: 0; }
  .contact-form-wrap .wpcf7-form label { font-size: 13px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 8px; }
  .contact-form-wrap .wpcf7-form select,
  .contact-form-wrap .wpcf7-form input[type="text"],
  .contact-form-wrap .wpcf7-form input[type="email"] {
    height: 48px; padding: 0 16px; border: 1px solid var(--line); border-radius: var(--radius); font-size: 14px; font-family: inherit; color: var(--ink); background: #fff; appearance: none; -webkit-appearance: none; transition: border-color .15s; width: 100%;
  }
  .contact-form-wrap .wpcf7-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
  .contact-form-wrap .wpcf7-form select:focus,
  .contact-form-wrap .wpcf7-form input:focus,
  .contact-form-wrap .wpcf7-form textarea:focus { outline: none; border-color: var(--ink); }
  .contact-form-wrap .wpcf7-form textarea { padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); font-size: 14px; font-family: inherit; color: var(--ink); background: #fff; resize: vertical; min-height: 160px; line-height: 1.7; transition: border-color .15s; width: 100%; }
  .contact-form-wrap .wpcf7-form .required-badge { display: inline-block; background: var(--red); color: #fff; font-size: var(--fs-tag); font-weight: 700; padding: 2px 6px; border-radius: 9999px; }
  .contact-form-wrap .wpcf7-form .optional-badge { display: inline-block; background: var(--pink-light); border: 1px solid var(--line); color: var(--sub); font-size: var(--fs-tag); font-weight: 500; padding: 2px 6px; border-radius: 9999px; }
  .contact-form-wrap .wpcf7-form .form-note { font-size: var(--fs-note); color: var(--sub); line-height: 1.7; }
  .contact-form-wrap .wpcf7-form .form-note a { color: var(--pink); text-decoration: none; }
  .contact-form-wrap .wpcf7-form .form-note a:hover { text-decoration: underline; }
  .contact-form-wrap .wpcf7-form .submit-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 56px; background: var(--pink); color: #fff; border: none; border-radius: 9999px; font-size: 15px; font-weight: 700; font-family: inherit; cursor: pointer; transition: all .35s cubic-bezier(.4,0,.2,1); letter-spacing: .03em; box-shadow: 0 4px 16px rgba(212,99,126,.2); }
  .contact-form-wrap .wpcf7-form .submit-btn:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,99,126,.3); }
  .contact-form-wrap .wpcf7-form-control-wrap { display: block; }
  .contact-form-wrap .wpcf7-not-valid-tip { color: var(--red); font-size: 12px; margin-top: 4px; }
  .contact-form-wrap .wpcf7-response-output { border-radius: var(--radius); font-size: 14px; margin-top: 20px; padding: 12px 16px; }

  /* SIDEBAR INFO */
  .contact-info { display: flex; flex-direction: column; gap: 20px; padding: 16px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); }
  .contact-info h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
  .info-block { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .info-block:last-child { padding-bottom: 0; border-bottom: none; }
  .info-block p { font-size: var(--fs-body); color: var(--sub); line-height: 1.75; }
  .info-block .tag { display: inline-block; background: #fff; border: 1px solid var(--line); font-size: var(--fs-tag); color: var(--sub); padding: 3px 10px; border-radius: 9999px; margin-top: 8px; }
  .contact-info a { color: var(--pink); text-decoration: none; overflow-wrap: anywhere; }
  .contact-info a:hover { text-decoration: underline; }
  .info-notice { padding: 18px; background: var(--pink-light); border: 1px solid #F3D6DE; border-radius: 10px; }
  .info-notice h3 { color: var(--pink-dark); }
  .info-notice p { color: var(--ink); word-break: normal; text-wrap: wrap; }

  html { scroll-behavior: smooth; }

  /* INTERVIEW BADGE */
  .interview-badge-wrapper {
    position: fixed;
    bottom: 60px;
    right: 32px;
    z-index: 9998;
    animation: interview-badge-slide-up 0.9s cubic-bezier(.16,1,.3,1) 1.5s both;
    transition: opacity .3s ease, transform .3s ease;
  }

  .interview-badge-bg {
    position: relative;
  }

  .interview-badge-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #D4637E;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(212,99,126,.3);
    opacity: 0;
    pointer-events: none;
  }

  .interview-badge-wrapper:hover .interview-badge-close {
    opacity: 1;
    pointer-events: auto;
  }

  .interview-badge-close svg {
    width: 16px;
    height: 16px;
    color: white;
  }

  .interview-badge-close:hover {
    background: #C04C68;
    transform: scale(1.1);
  }

  .interview-badge {
    display: block;
    text-decoration: none;
    transition: all .35s cubic-bezier(.4,0,.2,1);
  }

  .interview-badge-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.08);
    width: 200px;
  }

  @keyframes interview-badge-slide-up {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* フィードバックFABボタンの位置調整 */
  .fbp-fab {
    bottom: 230px !important;
  }

  .interview-badge:hover .interview-badge-card {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
  }

  .interview-badge-label {
    font-size: var(--fs-tag);
    font-weight: 700;
    color: #D4637E;
    letter-spacing: .12em;
    margin-bottom: 8px;
  }

  .interview-badge-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: .02em;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .interview-badge-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #D4637E;
    padding: 10px 24px;
    border-radius: 9999px;
    letter-spacing: .04em;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 8px rgba(212,99,126,.2);
  }

  .interview-badge:hover .interview-badge-button {
    background: #C04C68;
    box-shadow: 0 6px 16px rgba(212,99,126,.4);
    transform: translateY(-2px);
  }

  /* タブレット中間帯：360pxサイドバー併存だとフォームが狭すぎるため縦積みに
     （901px以上はフォーム約400px確保できるので2カラム維持） */
  @media (min-width: 769px) and (max-width: 900px) {
    .form-layout { grid-template-columns: 1fr; gap: 40px; }
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .wrap { padding: 0 20px; }
    .page-hero { padding: 48px 0 40px; }
    .page-hero h1 { font-size: 26px; }
    .form-section { padding: 56px 0 48px; }
    .form-layout { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { flex-direction: column; gap: 28px; }
    .footer-nav { justify-content: flex-start; gap: 14px 20px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
    .field select,
    .field input[type="text"],
    .field input[type="email"],
    .field textarea { font-size: 16px; }
    .interview-badge-wrapper {
      bottom: 56px;
      right: 16px;
    }
    .interview-badge-card {
      width: 180px;
      padding: 16px;
      border-radius: 14px;
    }
    .interview-badge-close {
      width: 28px;
      height: 28px;
      top: -6px;
      right: -6px;
    }
    .interview-badge-close svg {
      width: 14px;
      height: 14px;
    }
    .interview-badge-label {
      margin-bottom: 6px;
    }
    .interview-badge-title {
      font-size: 13px;
      margin-bottom: 14px;
    }
    .interview-badge-button {
      font-size: 12px;
      padding: 8px 20px;
    }
    .fbp-fab {
      bottom: 210px !important;
    }
  }

  @media (max-width: 480px) {
    .interview-badge-wrapper {
      bottom: 52px;
      right: 12px;
    }
    .interview-badge-card {
      width: 165px;
      padding: 14px;
      border-radius: 12px;
    }
    .interview-badge-close {
      width: 26px;
      height: 26px;
      top: -6px;
      right: -6px;
    }
    .interview-badge-close svg {
      width: 13px;
      height: 13px;
    }
    .interview-badge-label {
      margin-bottom: 6px;
    }
    .interview-badge-title {
      font-size: 12px;
      margin-bottom: 12px;
    }
    .interview-badge-button {
      font-size: 11px;
      padding: 7px 16px;
    }
    .fbp-fab {
      bottom: 195px !important;
    }
  }
