/* 下線を作るパラメトリックmixin
   @rough:true で“かすれ”テクスチャを追加 */
/* 実体クラス */
.ink-underline {
  position: relative;
  display: inline-block;
  line-height: 1;
  padding-bottom: 0.18em;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
  /* かすれ追加（@rough が true のときだけ適用） */
  /* ブラウザがマスク対応なら、単色着色をよりクリアに（任意） */
}
.ink-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.22em;
  height: 0.6em;
  border-radius: 0.08em;
  pointer-events: none;
  mix-blend-mode: normal;
  z-index: -1;
  /* 縦方向のにじみ（フォールバック用にRGBAで定義） */
  background: linear-gradient(to bottom, rgba(255, 195, 0, 0.95) 0%, rgba(255, 195, 0, 0.95) 25%, rgba(255, 195, 0, 0.75) 50%, rgba(255, 195, 0, 0.55) 70%, rgba(255, 195, 0, 0) 100%);
  filter: saturate(1.05);
}
@supports (-webkit-mask: none) or (mask: none) {
  .ink-underline::after {
    /* ここでSVGマスクに差し替える場合は
         -webkit-mask / mask に url(...) を指定 */
  }
}
.ink-underline--rf {
  position: relative;
  display: inline-block;
  line-height: 1;
  padding-bottom: 0.18em;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
  /* かすれ追加（@rough が true のときだけ適用） */
  /* ブラウザがマスク対応なら、単色着色をよりクリアに（任意） */
}
.ink-underline--rf::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.22em;
  height: 0.6em;
  border-radius: 0.08em;
  pointer-events: none;
  mix-blend-mode: normal;
  z-index: -1;
  /* 縦方向のにじみ（フォールバック用にRGBAで定義） */
  background: linear-gradient(to bottom, rgba(255, 195, 0, 0.95) 0%, rgba(255, 195, 0, 0.95) 25%, rgba(255, 195, 0, 0.75) 50%, rgba(255, 195, 0, 0.55) 70%, rgba(255, 195, 0, 0) 100%);
  filter: saturate(1.05);
}
.ink-underline--rf::after {
  background-image: radial-gradient(10px 6px at 12% 35%, rgba(0, 0, 0, 0.22) 0 55%, rgba(0, 0, 0, 0) 56%), radial-gradient(14px 8px at 38% 68%, rgba(0, 0, 0, 0.18) 0 52%, rgba(0, 0, 0, 0) 53%), radial-gradient(9px 6px at 63% 40%, rgba(0, 0, 0, 0.15) 0 58%, rgba(0, 0, 0, 0) 59%), radial-gradient(12px 7px at 82% 72%, rgba(0, 0, 0, 0.2) 0 50%, rgba(0, 0, 0, 0) 51%), linear-gradient(to bottom, rgba(255, 195, 0, 0.95) 0%, rgba(255, 195, 0, 0.95) 25%, rgba(255, 195, 0, 0.75) 50%, rgba(255, 195, 0, 0.55) 70%, rgba(255, 195, 0, 0) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-blend-mode: multiply, multiply, multiply, multiply, normal;
  filter: blur(0.2px) contrast(1.02);
}
@supports (-webkit-mask: none) or (mask: none) {
  .ink-underline--rf::after {
    /* ここでSVGマスクに差し替える場合は
         -webkit-mask / mask に url(...) を指定 */
  }
}
/* 端末幅で少し太く */
@media (min-width: 768px) {
  .ink-underline::after,
  .ink-underline--rf::after {
    height: 0.7em;
  }
}
.entry-content h1 span {
  font-size: 0.7em;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", /* Windows */ "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Meiryo", /* Android / 汎用 */ "Noto Sans JP", /* 英文の見栄え向上 */ -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, /* 最後の砦 */ sans-serif;
}
form.wpcf7-form {
  width: 500px;
  margin: auto;
}
form.wpcf7-form p .wpcf7-validates-as-required {
  margin-left: 1.5em;
}
form.wpcf7-form p .wpcf7-form-control-wrap {
  position: relative;
}
form.wpcf7-form p .wpcf7-form-control-wrap input,
form.wpcf7-form p .wpcf7-form-control-wrap textarea,
form.wpcf7-form p .wpcf7-form-control-wrap select {
  border: 1px solid #6ec1e4;
  max-width: 400px;
}
form.wpcf7-form p .wpcf7-form-control-wrap:has(.wpcf7-validates-as-required)::before,
form.wpcf7-form p .wpcf7-form-control-wrap:has([aria-required="true"])::before {
  content: "*";
  color: red;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  form.wpcf7-form {
    width: 100%;
    margin: auto;
  }
  form.wpcf7-form p .wpcf7-form-control-wrap {
    position: relative;
  }
  form.wpcf7-form p .wpcf7-form-control-wrap input,
  form.wpcf7-form p .wpcf7-form-control-wrap textarea,
  form.wpcf7-form p .wpcf7-form-control-wrap select {
    border: 1px solid #6ec1e4;
    width: calc(96% - 1.5em);
    margin-left: 1.5em;
  }
  form.wpcf7-form p .wpcf7-form-control-wrap:has(.wpcf7-validates-as-required)::before,
  form.wpcf7-form p .wpcf7-form-control-wrap:has([aria-required="true"])::before {
    content: "*";
    color: red;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    line-height: 1;
  }
  form.wpcf7-form input[type="submit"] {
    display: block;
    margin: auto;
  }
}
/*# sourceMappingURL=contact.css.map */