/* sections-inline.css
   Liquidセクション内に <style> で直書きされていたCSSを、静的ミラー用に抜き出したもの。
   現在は dawn/sections/stdwear-contact.liquid の分のみ（他のカスタムセクションの
   スタイルは assets/custom.css 側にある）。 */
.stdwear-contact {
    max-width: 720px;
    margin: 0 auto;
  }

  .stdwear-contact__intro {
    text-align: center;
    margin-bottom: 32px;
  }

  .stdwear-contact__intro-comment {
    font-size: 1.5rem;
    color: var(--stdwear-text-secondary, #8B949E);
    margin-bottom: 8px;
    line-height: 1.6;
  }

  .stdwear-contact__intro-text {
    font-size: 1.5rem;
    color: var(--stdwear-text-secondary, #8B949E);
    line-height: 1.6;
  }

  .stdwear-contact__terminal {
    background: var(--stdwear-bg-secondary, #161B22);
    border: 1px solid var(--stdwear-border, #30363D);
    border-radius: 8px;
    overflow: hidden;
  }

  .stdwear-contact__titlebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--stdwear-bg-tertiary, #21262D);
    border-bottom: 1px solid var(--stdwear-border, #30363D);
  }

  .stdwear-contact__dots {
    display: flex;
    gap: 6px;
  }

  .stdwear-contact__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }

  .stdwear-contact__dot--red { background: #FF5F56; }
  .stdwear-contact__dot--yellow { background: #FFBD2E; }
  .stdwear-contact__dot--green { background: #27C93F; }

  .stdwear-contact__filename {
    flex: 1;
    text-align: center;
    font-family: var(--stdwear-font-mono, monospace);
    font-size: 1.2rem;
    color: var(--stdwear-text-secondary, #8B949E);
  }

  .stdwear-contact__body {
    padding: 32px 24px;
  }

  @media screen and (min-width: 750px) {
    .stdwear-contact__body {
      padding: 40px 48px;
    }
  }

  .stdwear-contact__success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(126, 231, 135, 0.1);
    border: 1px solid rgba(126, 231, 135, 0.3);
    border-radius: 6px;
    margin-bottom: 24px;
    font-family: var(--stdwear-font-mono, monospace);
    font-size: 1.4rem;
    color: var(--stdwear-accent-green, #7EE787);
  }

  .stdwear-contact__error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 123, 114, 0.1);
    border: 1px solid rgba(255, 123, 114, 0.3);
    border-radius: 6px;
    margin-bottom: 24px;
    font-family: var(--stdwear-font-mono, monospace);
    font-size: 1.4rem;
    color: var(--stdwear-accent-red, #FF7B72);
  }

  .stdwear-contact__row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
  }

  @media screen and (min-width: 750px) {
    .stdwear-contact__row--half {
      grid-template-columns: 1fr 1fr;
    }
  }

  .stdwear-contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .stdwear-contact__label {
    font-family: var(--stdwear-font-mono, monospace);
    font-size: 1.3rem;
    color: var(--stdwear-text-secondary, #8B949E);
  }

  .stdwear-contact__label span.required {
    color: var(--stdwear-accent-red, #FF7B72);
  }




  .stdwear-contact__input,
  .stdwear-contact__select,
  .stdwear-contact__textarea {
    font-family: var(--stdwear-font-mono, monospace);
    font-size: 1.4rem;
    color: var(--stdwear-text-primary, #E6EDF3);
    background: var(--stdwear-bg-primary, #0D1117);
    border: 1px solid var(--stdwear-border, #30363D);
    border-radius: 6px;
    padding: 12px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
  }

  .stdwear-contact__input:focus,
  .stdwear-contact__select:focus,
  .stdwear-contact__textarea:focus {
    border-color: var(--stdwear-accent-blue, #58A6FF);
    box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.15);
  }

  .stdwear-contact__input::placeholder,
  .stdwear-contact__textarea::placeholder {
    color: var(--stdwear-text-secondary, #8B949E);
    opacity: 0.5;
  }

  .stdwear-contact__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B949E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
  }

  .stdwear-contact__textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.6;
  }

  .stdwear-contact__submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
  }

  .stdwear-contact__submit {
    font-family: var(--stdwear-font-mono, monospace);
    font-size: 1.4rem;
    font-weight: 600;
    padding: 12px 32px;
    background: #E6EDF3;
    color: #0D1117;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .stdwear-contact__submit:hover {
    background: #ffffff;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.15);
  }




  .stdwear-contact__info {
    margin-top: 32px;
    display: grid;
    gap: 16px;
  }

  @media screen and (min-width: 750px) {
    .stdwear-contact__info {
      grid-template-columns: 1fr 1fr;
    }
  }

  .stdwear-contact__info-card {
    padding: 16px 20px;
    border: 1px solid var(--stdwear-border, #30363D);
    border-radius: 6px;
    background: var(--stdwear-bg-secondary, #161B22);
  }

  .stdwear-contact__info-label {
    font-size: 1.2rem;
    color: var(--stdwear-text-secondary, #8B949E);
    margin-bottom: 4px;
  }

  .stdwear-contact__info-value {
    font-size: 1.4rem;
    color: var(--stdwear-text-primary, #E6EDF3);
    line-height: 1.5;
  }
