/* =========================================
  お申込みフォーム専用スタイル
========================================= */
.ems_contents_entry {
  padding: 1em 1.5em 72px;
  margin: -104px 1em 80px;
}
@media screen and (min-width: 768px) {
  .ems_contents_entry {
    max-width: calc(100% - 20px * 2);
    margin: -104px auto 130px;
  }
}
@media screen and (min-width: 1100px) {
  .ems_contents_entry {
    max-width: 1024px;
  }
}
/* 見出し部分 */
.form_trial_head {
  color: #333;
  position: relative;
  padding-top: 48px;
  padding-bottom: 126px;
  overflow: hidden;
  z-index: -1;
}
.form_trial_head::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #ffd53b;
  z-index: -1;
}
.form_trial_head::after {
  content: "";
  display: block;
  width: 134%;
  height: auto;
  aspect-ratio: 23 / 12;
  border-radius: 50%;
  background: #ffd53b;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.form_trial_head .form_trial_title {
  background: #fff;
  font-size: clamp(20px, calc(10 / 375 * 100vw) ,32px);
  font-weight: bold;
  padding: 0.37em 0.8em;
  line-height: 1;
  margin: 0 auto;
  position: relative;
  width: fit-content;
  letter-spacing: 0.05em;
}
.form_trial_head .form_trial_title::before {
  content: "";
  display: block;
  position: absolute;
  top: -25px;
  left: -25px;
  width: 30px;
  height: 30px;
  background-image: url(../images/cgi/form_trial_title_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.form_trial_head .form_trial_title .--style_yellow {
  color: #faa804;
}
.form_trial_head .form_trial_title .--style_number {
  font-size: clamp(26px, calc(10 / 375 * 100vw) ,36px);
}
.form_trial_head .form_trial_title .--style_small {
  font-size: clamp(18px, calc(10 / 375 * 100vw) ,26px);
}
.form_trial_head p {
  font-size: clamp(14px, calc(10 / 375 * 100vw) ,20px);
  text-align: center;
  margin: 20px 0 0;
}
@media screen and (min-width: 768px) {
  .form_trial_head {
    padding-top: 60px;
    padding-bottom: 138px;
  }
  .form_trial_head::after {
    aspect-ratio: 161 / 36;
  }
  .form_trial_head .form_trial_title::before {
    top: -30px;
    left: -30px;
    width: 40px;
    height: 40px;
  }
}
/* おためしフォーム */
.ems_contents_entry .ems_form_trial {
  padding: 0;
  margin-top: 24px;
  margin-bottom: 0;
}
.form_entry {
  max-width: 600px;
  margin: 0 auto;
}
.entry_input_area {
  max-width: unset;
}
.entry_input_area dl,
.entry_input_area dt,
.entry_input_area dd {
  margin: 0;
  font-size: 14px;
}
.entry_input_area dt {
  font-weight: bold;
  margin-bottom: 10px;
}
.entry_input_area dd {
  margin-bottom: 38px;
}

.form_entry input#email,
.form_entry input#password,
.form_entry input#shop_id,
.form_entry input.ems_entry_name {
  border: 1px solid #dbdbdb;
  background: #fafafa;
  border-radius: 3px;
  font-size: 14px;
  font-weight: normal;
  padding: 0.75em;
  margin: 0;
  box-sizing: border-box;
}
/* フォーカス時 */
.form_entry input#email:focus,
.form_entry input#password:focus,
.form_entry input#shop_id:focus,
.form_entry input.ems_entry_name:focus,
.form_entry input[type=radio]:focus,
.form_entry input[type=checkbox]:focus {
  border: 1px solid #19a9f5;
}
.form_entry input#email,
.form_entry input#password,
.form_entry input.ems_entry_name {
  width: 100%;
}
.form_entry input[type=radio]:focus,
.form_entry input[type=checkbox]:focus {
  outline: none;
}
.form_entry input::placeholder {
  color: #aaaaaa;
}
@media screen and (min-width: 768px) {
  .ems_contents_entry dt, 
  .ems_contents_entry dd {
    font-size: 16px;
  }
  .form_entry input,
  .form_entry input#email, 
  .form_entry input#shop_id,
  .form_entry input.ems_entry_name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 700px) {
    .ems_top_title .form_entry .ems_entry_mail, 
    .form_entry input.ems_entry_mail {
        font-size: 14px;
    }
}
/* パスワード */
.password-wrapper {
  position: relative;
}
.show-password {
  position: absolute;
  top: 50%;
  right: 0.2em;
  transform: translate(-50%, -50%);
  font-size: 130%;
  color: #979797;
  cursor: pointer;
}
/* ショップID */
.form_entry input#shop_id {
  width: 50%;
  min-width: 180px;
}
.form_entry input.through {
  width: 1px;
  height: 1px;
  box-shadow: none;
  color: rgb(153, 153, 153);
  margin: 0px !important;
  padding: 0px !important;
  border-color: initial;
  border-image: initial;
  border-width: 0px !important;
  border-style: none;
  background: transparent;
}
.form_entry .ems_id_check_message {
  margin-left: 64px;
}
/* ラジオボタン */
.form_entry_radio_wrapper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.5em;
  row-gap: 0.8em;
}
.form_entry_radio {
  position: relative;
}
.form_entry_radio input[type="radio"] {
  visibility: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1em;
  height: 1em;
  margin: 0;
}
.form_entry_radio label {
  position: relative;
  padding-left: 1.5em;
  cursor: pointer;
}
.form_entry_radio label::before,
.form_entry_radio label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.form_entry_radio label::before {
  width: 1em;
  height: 1em;
  left: 0;
  background: #fafafa;
  border: 1px solid #dbdbdb;
}
.form_entry_radio label::after {
  width: 0;
  height: 0;
  left: 0.25em;
  background: #f4ab33;
  opacity: 0;
}
.form_entry_radio input[type="radio"]:checked + label::after {
  width: 0.5em;
  height: 0.5em;
  opacity: 1;
  transition: all .12s;
}
/* チェックボックス */
.entry_input_area .consent_chk_area .required_label {
  justify-content: center;
  row-gap: 0.2em;
  font-size: 14px;
  margin: 0 0 32px;
}
.entry_input_area .consent_chk_area input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
  @media only screen and (min-width: 768px) {
  .entry_input_area .consent_chk_area .required_label {
      font-size: 16px;
      margin-bottom: 48px;
  }
}
/* 送信ボタン */
.ems_btn_mail_entry {
  width: 360px;
  margin: 0 auto;
  max-width: 90%;
}
@media only screen and (max-width: 700px) {
  .ems_btn_mail_entry {
      margin: 10px auto;
  }
}
/* 必須ラベル */
.entry_input_area .required_label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.entry_input_area .required_label::after {
  content: "必須";
  background: #dd2330;
  border-radius: 2px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  padding: 0.5em;
  margin-left: 14px;
  letter-spacing: 0.07em;
}
.consent_chk_area .entry_input_area .required_label {
  justify-content: center;
  flex-wrap: wrap;
}
/* 入力欄の下部注釈 */
.entry_input_rule {
  font-size: 12px;
  margin-top: 8px;
  font-weight: 600;
  opacity: 0.7;
}
.entry_input_notes {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 8px;
  list-style: none;
  padding: 0;
}