@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
/*
$serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
$sansSerif: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
$sansSerifBold: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
$msSerif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
$msSansSerif: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
*/
/*/////////////////////////////////////////
//  お問い合わせフォーム
/////////////////////////////////////////*/
.caution {
  font-size: 0.18rem;
  margin-bottom: 0.2rem;
  text-align: right;
}

.contact-form {
  max-width: 8rem;
  margin: 0 auto;
  padding: 0.4rem 0.2rem;
}
@media screen and (max-width: 768px) {
  .contact-form {
    padding: 0.3rem 0.15rem;
  }
}

.contact-form .wpcf7 {
  width: 100%;
}

.contact-form form {
  width: 100%;
}

/* フォームフィールド全体 */
.contact-form dl {
  margin: 0;
  padding: 0;
}

.contact-form dl > div {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.3rem;
  border-bottom: 0.01rem solid #e0e0e0;
  padding-bottom: 0.3rem;
}
@media screen and (max-width: 768px) {
  .contact-form dl > div {
    flex-direction: column;
    gap: 0.1rem;
    margin-bottom: 0.25rem;
    padding-bottom: 0.25rem;
  }
}

.contact-form dl > div:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ラベル（質問項目） */
.contact-form dt {
  flex-shrink: 0;
  width: 2rem;
  margin: 0;
  padding: 0;
  font-size: 0.16rem;
  font-weight: 700;
  color: #333;
  display: flex;
  gap: 0.08rem;
  align-items: flex-start;
}
.contact-form dt:not(.txt-top) {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact-form dt {
    width: 100%;
    font-size: 0.15rem;
  }
}

/* 必須マーク */
.contact-form .required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dd6473;
  font-size: 0.16rem;
  font-weight: 700;
  border-radius: 0.03rem;
  line-height: 1;
}

/* 入力欄 */
.contact-form dd {
  flex: 1;
  margin: 0;
  padding: 0;
}

.contact-form dd p {
  margin: 0;
}

/* テキスト入力、メールアドレス入力 */
.contact-form input[type=text],
.contact-form input[type=email] {
  width: 100%;
  padding: 0.12rem 0.16rem;
  font-size: 0.16rem;
  border: 0.01rem solid #ddd;
  border-radius: 0.04rem;
  background: #fff;
  transition: border-color 0.3s ease;
}

.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus {
  outline: none;
  border-color: #dd6473;
  box-shadow: 0 0 0 0.03rem rgba(221, 100, 115, 0.1);
}

/* テキストエリア */
.contact-form textarea {
  width: 100%;
  padding: 0.12rem 0.16rem;
  font-size: 0.16rem;
  border: 0.01rem solid #ddd;
  border-radius: 0.04rem;
  background: #fff;
  resize: vertical;
  min-height: 1.5rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact-form textarea {
    min-height: 1.2rem;
  }
}

.contact-form textarea:focus {
  outline: none;
  border-color: #dd6473;
  box-shadow: 0 0 0 0.03rem rgba(221, 100, 115, 0.1);
}

/* チェックボックス */
.contact-form .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.contact-form .wpcf7-list-item {
  margin: 0;
  padding: 0;
  display: block;
}

.contact-form .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.15rem;
  color: #333;
  position: relative;
  padding-left: 0.32rem;
  min-height: 0.24rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  .contact-form .wpcf7-list-item label {
    font-size: 0.14rem;
    padding-left: 0.28rem;
  }
}

.contact-form .wpcf7-list-item input[type=checkbox] {
  position: absolute;
  left: 0;
  opacity: 0;
  cursor: pointer;
  width: 0.2rem;
  height: 0.2rem;
  margin: 0;
  z-index: 1;
}

.contact-form .wpcf7-list-item label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.2rem;
  height: 0.2rem;
  border: 0.02rem solid #ddd;
  border-radius: 0.03rem;
  background: #fff;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact-form .wpcf7-list-item label::before {
    width: 0.18rem;
    height: 0.18rem;
  }
}

.contact-form .wpcf7-list-item label::after {
  content: "";
  position: absolute;
  left: 0.08rem;
  top: 45%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.06rem;
  height: 0.12rem;
  border: solid #fff;
  border-width: 0 0.02rem 0.02rem 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact-form .wpcf7-list-item label::after {
    left: 0.05rem;
    width: 0.05rem;
    height: 0.1rem;
  }
}

.contact-form .wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::before,
.contact-form .wpcf7-list-item label:has(input[type=checkbox]:checked)::before {
  background: #dd6473;
  border-color: #dd6473;
}

.contact-form .wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::after,
.contact-form .wpcf7-list-item label:has(input[type=checkbox]:checked)::after {
  opacity: 1;
}

.contact-form .wpcf7-list-item label:hover::before {
  border-color: #dd6473;
}

/* 同意エリア */
.contact-form .agree-area {
  padding: 0.2rem 0;
  border-radius: 0.04rem;
  margin: 0.3rem 0 0.2rem;
  font-size: 0.14rem;
  color: #666;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .contact-form .agree-area {
    padding: 0.15rem;
    margin: 0.25rem 0 0.15rem;
    font-size: 0.13rem;
  }
}
.contact-form .agree-area a {
  text-decoration: underline;
}

/* 送信ボタン */
.contact-form input[type=submit] {
  display: block;
  width: 100%;
  max-width: 4rem;
  margin: 0 auto;
  padding: 0.16rem 0.32rem;
  font-size: 0.18rem;
  font-weight: 700;
  color: #fff;
  background: #dd6473;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0.04rem 0.12rem rgba(221, 100, 115, 0.3);
}
@media screen and (max-width: 768px) {
  .contact-form input[type=submit] {
    font-size: 0.16rem;
    padding: 0.14rem 0.28rem;
    max-width: 100%;
  }
}

.contact-form input[type=submit]:hover {
  background: #c95565;
  transform: translateY(-0.02rem);
  box-shadow: 0 0.06rem 0.16rem rgba(221, 100, 115, 0.4);
}

.contact-form input[type=submit]:active {
  transform: translateY(0);
  box-shadow: 0 0.02rem 0.08rem rgba(221, 100, 115, 0.3);
}

/* スピナー */
.contact-form .wpcf7-spinner {
  display: inline-block;
  margin-left: 0.1rem;
}

/* エラー・成功メッセージ */
.contact-form .wpcf7-response-output {
  margin: 0.2rem 0 0;
  padding: 0.15rem 0.2rem;
  border-radius: 0.04rem;
  font-size: 0.14rem;
  font-weight: 700;
}

.contact-form .wpcf7-validation-errors {
  background: #fff3cd;
  border: 0.01rem solid #ffc107;
  color: #856404;
}

.contact-form .wpcf7-mail-sent-ok {
  background: #d4edda;
  border: 0.01rem solid #28a745;
  color: #155724;
}

.contact-form .wpcf7-mail-sent-ng {
  background: #f8d7da;
  border: 0.01rem solid #dc3545;
  color: #721c24;
}

/* フィールドエラー */
.contact-form .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.13rem;
  margin-top: 0.05rem;
  display: block;
}

.contact-form .wpcf7-not-valid {
  border-color: #dc3545 !important;
}

/* スクリーンリーダー用 */
.contact-form .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(0.01rem, 0.01rem, 0.01rem, 0.01rem);
  clip-path: inset(50%);
  height: 0.01rem;
  width: 0.01rem;
  margin: -0.01rem;
  padding: 0;
  border: 0;
}

/* 非表示フィールド */
.contact-form .hidden-fields-container {
  border: none;
  padding: 0;
  margin: 0;
}/*# sourceMappingURL=form.css.map */