/* -------------------------
header
------------------------- */

.header img {
    width: 100px;
    margin: 10px 0px 0;
}

@media screen and (min-width:768px) {
.header img {
    width: 140px;
}
}

/* -------------------------
main
------------------------- */
/* タイトル */
.otoiawase__title h1 {
    font-size: 24px;
    text-align: center;
    margin-top: 80px ;
}
.otoiawase__greeting {
    font-size: 14px;
    text-align: center;
    margin-top: 32px ;
}

.shindan__greeting {
    font-size: 14px;
    margin: 80px auto 40px;
    line-height: 1.7em;
}
.shindan__img {
 width: 700px;
    margin: 0 auto;
}

/* -------------------------
フォーム
------------------------- */
.bg_green {
    background-color: var(--primary-green100);
    border-radius: 10px;
    margin: 48px 0;
    padding: 48px 0;
}
.form__list {
    width: 330px;
    margin: 0 auto;
}
.form__item {
    margin-bottom: 40px;
}

form label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin: 0 auto 6px;
    cursor: default;
}

form input {
    display: block;
    width: 100%;
    height: 56px;
    border-radius: 5px;
}

/* テキスト入力欄の色 */
/* 通常 */
input,
  textarea,
  select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--primary-gray800);
    background-color: #fff;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
    font-size: 14px;
    cursor: text;
  }

  /* 入力中 */
  input:focus,
  textarea:focus {
    background-color: var(--primary-green200); /* 阮�＞邱� */
    outline: none;
  }

  /* 入力完了後 */
  /* オートフィル対策 */
input:-webkit-autofill,
textarea:-webkit-autofill {
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
  box-shadow: 0 0 0px 1000px #fff inset !important;
  -webkit-text-fill-color: var(--primary-gray800) !important;
}

/* エラー時のスタイル */
.input-error {
  border: 1px solid var(--primary-danger) !important;
  /* background-color: #fff !important; */
}
  

/* ----------------------------
  プルダウン
 ---------------------------- */
.pulldown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 100%;
    height: 56px;
    padding: 0 40px 0 16px;     /* 矢印スペース確保 */
    background-color: white;
    border: 1px solid var(--primary-gray800);
    border-radius: 4px;
    font-size: 14px;
    position: relative;
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="black" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
  }

  /*フォーカス時のスタイル */
  .pulldown:focus {
    outline: none;
    border-color: var(--primary-gray800);
  }

    /* テキストエリア */
  #contents {
    width: 100%;
    height: 160px;
    border-radius: 5px;
  }

  /* プレースホルダー文字色の調整 */
input::placeholder,
textarea::placeholder {
  color: var(--primary-gray400); 
}


/* ----------------------------
  必須 
 ---------------------------- */
  .require {
    font-size: 12px;
    color: #FFF;
    letter-spacing: 0.5px;
    background-color: var(--primary-danger);
    border-radius: 3px;
    margin-left: 8px;
    padding: 1px 6px 3px;
    white-space: nowrap;
  }

 /* ----------------------------
  エラーメッセージ 
 ---------------------------- */
.error-message {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--primary-danger);
  margin-top: 4px;
  display: none; /* ← !important を削除 */
}

/* エラー表示時に使用するクラス */
.error-message.show {
  display: block !important;
}

/* エラー表示時に使用するクラス */
.input-error {
  border: 1px solid var(--primary-danger) !important;
  background-color: #fff !important;
}

 /* ----------------------------
  送信ボタン
 ---------------------------- */
  #submitBtn {
    width: 300px;
    margin: 0 auto;
    display: block;
    height: 56px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    background-color: var(--primary-green800);
    cursor: pointer;
    color: white;
    text-align: center;
    transition: background-color 0.3s ease;
  }
  #submitBtn:disabled {
    background-color: var(--primary-gray300);
    cursor: not-allowed;
  }

  /* ----------------------------
  プライバシーポリシー
 ---------------------------- */
  .policy {
    font-size: 12px;
    line-height: 1.7em;
    text-align: center;
    margin-top: 10px;
  }
  .policy__link {
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--primary-txtlink);
    cursor: pointer;
    font-weight: 700;
    transition : 0.7s;
  }


@media screen and (min-width:768px) {

  .shindan__greeting {
    font-size: 16px;
    margin: 80px auto 40px;
    width: 700px;
}

  #otoiawase {
    margin: 0 auto;
    max-width: 1080px;
  }
  .bg_green {
    margin: 80px 0;
}
    /* タイトル */
    .otoiawase__title h1{
        font-size: 36px;
        margin-top: 80px ;
    }
    .otoiawase__greeting {
        font-size: 16px;
        margin-top: 32px ;
    }

    /* フォーム */
    .form__list {
    width: 600px;
    margin: 0 auto;
}
    form {
    margin: 48px auto ;
  }
  
    /* 必須 */
  .require {
    font-size: 14px;
  }
  /* エラーメッセージ */
  .error-message {
    font-size: 14px;
    margin-top: 8px;
}
   /* 送信ボタン */
  #submitBtn {
    width: 380px;
  }
  /* プライバシーポリシー */
  .policy br {
    display: none;
  }
}

@media screen and (min-width:920px) {
  .policy__link:hover {
      text-decoration: none;
      color: var(--primary-txtlinkhover);
      transition : 0.7s;
    }
  
    /* チェックボックス */
  .check label {
  font-size: 16px;
}
  }

@media screen and (min-width:1080px) {
  form {
        margin: 32px auto;
    }
	.inner.main {
		display:flex;
		justify-content: center;
        padding: 0;
    max-width: 1440px;
	}
	
        .header img {
        width: 100px;
        margin: 0;
    }
	/* タイトル */
    .otoiawase__title h1{
        margin-right: 40px;
        margin-top: 36px;
    }
        .bg_green {
        margin: 0;
        padding: 32px 40px;
    }
    .form__list {
        width: 704px;
        display: flex;
        flex-wrap: wrap;
        gap: 0 16px;
    }
    .form__item {
        width: 224px;
        margin-bottom: 20px;
    }
    form input {
    height: 40px;
    }
    .pulldown {
        height: 40px;
    }
    .error-message {
            font-size: 14px;
            margin-top: 4px;
        }
     .form__item.long {
        width: 100%;
    }
    .require {
        font-size: 12px;
    }
    #contents {
    height: 100px;
}
  }

/* -------------------------
footer
------------------------- */

.copyright{
  background: var(--primary-green800);
  font-size: 14px;
    color: #fff;
    text-align: center;
    padding: 5px 0;
}

