/*
Theme Name: Allure Affiliate
Author: fukuda
Description: アリュールアフィリエイト
Version: 1.0
*/

body.page ol{
    margin-bottom: 2em;
}

main section article.page{
    margin: 5vw auto 0;
    background: #fff;
    border-radius: 20px;
    padding: 50px 5%;
    max-width: 1140px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
@media screen and (max-width:899px) {
    main section article.page{
        margin: 7vw auto 0;
        padding: 15px 5%;
    }
}

main section article.page h1{
    flex-direction: row;
    align-items: center;
}
main section article.page h1:before {
    content: '';
    display: inline-block;
    border-radius: 3px;
    background-color: var(--primary-color);
    width: 40px;
    height: 6px;
    margin-right: 24px;
}
@media screen and (max-width:899px) {
    main section article.page h1:before {
        width: 20px;
        margin-right: 12px;
    }
}



/* フォーム全体 */
.wpcf7 form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;

  /*font-family: "Helvetica Neue", Arial, sans-serif;*/
}

/* ラベル */
.wpcf7 form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

/* テキスト系入力 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
  transition: border 0.2s, box-shadow 0.2s;
  margin-bottom: 1.5rem;
}

/* フォーカス時 */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 textarea:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74,144,226,0.15);
  outline: none;
  background: #fff;
}

.wpcf7 input.half{
    width: 50%;
}

/* テキストエリア */
.wpcf7 textarea {
  min-height: 150px;
  resize: vertical;
}

/* チェックボックス・ラジオ */
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  margin-right: 0.4rem;
}
.wpcf7 .wpcf7-list-item {
  margin-right: 1rem;
}

/* 必須 */
.wpcf7 .required{
    display: inline-block;
    padding: 0 5px;
    background: var(--primary-color);
    border-radius: 5px;
    font-size: 11px;
    margin-right: .5em;
    vertical-align: top;
}

/* 送信ボタン */
.wpcf7 input[type="submit"] {
  display: inline-block;
  background: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s, transform 0.15s;
  display: block;
  margin: 0 auto;
  color: #333;
}

/* エラーメッセージ */
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 0.85rem;
  color: #e74c3c;
  margin-top: -1rem;
  margin-bottom: 1rem;
  display: block;
}
.wpcf7 .wpcf7-response-output {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}
.wpcf7 .wpcf7-validation-errors {
  background: #fff5f5;
  border: 1px solid #e74c3c;
  color: #e74c3c;
}
.wpcf7 .wpcf7-mail-sent-ok {
  background: #f0fff4;
  border: 1px solid #38a169;
  color: #2f855a;
}

