@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:700&display=swap");

/* フォーム項目非表示用 
　　※通常時とプレゼント時で表示を切り替える　　*/

.disp_flg_present {
  display: block !important;
}
.disp_flg_normal {
  display: none !important;
}

/* フォーム要素 */
select {
  -webkit-appearance: none;
  appearance: none;
  /* width: 100%; */
  height: 36px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1.4rem;
  color: #575757;
  background: #fff;
  border: none;
  border: 1px solid #aaa;
  border-radius: 0;
  outline: none;
}

option {
  background: #fff;
}

input {
  width: 100%;
  height: 36px;
  padding: 10px;
  font-size: 1.4rem;
  color: #575757;
  border: none;
  border: 1px solid #aaa;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

textarea {
  width: 100%;
  height: 200px;
  padding: 10px;
  font-family: inherit;
  font-size: 1.6rem;
  color: #575757;
  border: none;
  border: 1px solid #aaa;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
textarea.short {
  height: 100px;
  width: 60%;
  margin-left: 2.5rem;
}
@media (max-width: 480px) {
  textarea {
    height: 180px;
  }
  textarea.short {
    height: 70px;
    width: 83%;
  }
}

input[type="number"],
input[type="tel"] {
  width: 70px;
}

input[type="radio"] {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  border: 1px solid #959595;
  border-radius: 16px;
  outline: 0;
  -webkit-appearance: none;
  appearance: none;
}

em {
  font-style: normal;
  font-size: 1.2rem;
  color: #fff;
  background: #ff9aac;
  width: 33px;
  height: 18px;
  display: inline-block;
  text-align: center;
  line-height: 18px;
  margin-left: 10px;
  border-radius: 3px;
}

.formArea {
  margin: 0 auto;
  padding-top: 50px;
  max-width: 1000px;
}
@media (max-width: 480px) {
  .formArea {
    padding-top: 30px;
  }
}

.title--msg {
  margin-bottom: 30px;
  font-weight: normal;
  font-size: 3.5rem;
  font-family: "Roboto", sans-serif;
  color: #0089db;
  text-align: center;
  border-bottom: 1px solid #0089db;
  padding-bottom: 10px;
}

@media (max-width: 480px) {
  .title--msg {
    font-size: 2.2rem;
  }
}

.msgsub {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
}

.preTxt {
  margin-bottom: 20px;
  font-size: 1.4rem;
  text-align: right;
}

.formInner {
  margin: 0 auto;
  max-width: 700px;
}

@media (max-width: 768px) {
  .formInner {
    width: 92%;
  }
}
@media (max-width: 480px) {
  .formInner {
    font-size: 1.4rem;
  }
}

.formInner > li {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .formInner > li {
    margin-bottom: 20px;
  }
}

/* 見出し */
.fm-question {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  width: 100%;
  font-weight: bold;
}

@media (max-width: 800px) {
  .fm-question,
  .fm-question--message {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
  }
}

.fm-answer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.fm-answer-radio {
  display: flex;
}

.radio-text {
  margin-right: 5px;
  /* width: 80px; */
  height: 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* ラジオボタン */
label.radio-text {
  /* width: 60px; */
  cursor: pointer;
  position: relative;
  padding-top: 1px;
  padding-left: 5px;
  overflow: hidden;
  padding-left: 25px;
  display: inline-block;
}

label.radio-text:before {
  position: absolute;
  width: 17px;
  height: 17px;
  border: 1px solid #959595;
  border-radius: 50%;
  left: 0px;
  top: 4px;
  content: "";
  z-index: 3;
}

label.error:before {
  border: 1px solid #f03;
}

label.radio-text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 4px;
  top: 8px;
  background-color: #959595;
  z-index: 1;
}

label.radio-text input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 1px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
}

label.radio-text input[type="radio"]:checked {
  box-shadow: none;
}

label.radio-text input[type="radio"]:focus {
  opacity: 0;
  box-shadow: 20px -1px #fff;
}

input[type="submit"] {
  display: block;
  width: 400px;
  max-width: 400px;
  height: 60px;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1.6rem;
  background-color: #64b54e;
  border: none;
  color: #fff;
  cursor: pointer;
  text-align: center;
  -webkit-appearance: none;
}

input[type="submit"]:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  input[type="submit"] {
    width: 100%;
    /* margin-bottom: 50px; */
  }
}
@media (max-width: 480px) {
  input[type="submit"] {
    width: 100%;
  }
}

.cation {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.2rem;
  transform: rotate(0.028deg);
}
@media (max-width: 768px) {
  .cation {
    width: 92%;
  }
}

.cation__head {
  font-size: 1.4rem;
  margin-top: 50px;
  margin-bottom: 10px;
  color: #fc012e;
}

.cation__text {
  margin-bottom: 10px;
}

.cation a {
  text-decoration: underline;
}

.msg {
  text-align: center;
}

.thanks {
  text-align: center;
  font-size: 1.8rem;
  margin: 100px auto 0;
}
.sitetop {
  text-align: center;
  font-size: 1.8rem;
  margin: 20px auto 100px;
}
.sitetop a {
  color: #64b54e;
}

.msg .error {
  text-align: center;
  font-size: 1.8rem;
  margin: 100px auto 140px;
}
label.error:before {
  border: 1px solid #f03;
}
label.error {
  background: #f8e2e2;
}
label.error:before {
  border: 1px solid #f03;
}
span.form__radio.error {
  max-width: 100%;
  background: #f8e2e2;
}
input[type="text"].error,
input[type="email"].error,
input[type="tel"].error,
input[type="number"].error,
input[type="url"].error,
textarea.error {
  border: 1px solid #f03;
  background: #f8e2e2;
}
input.error:focus,
textarea.error:focus {
  border: 1px solid #f03;
  background: #f8e2e2;
}
select.error {
  background: #f8e2e2;
  border: 1px solid #f03;
}
select.error:focus {
  background: #f8e2e2;
  border: 1px solid #f03;
}
input[type="file"].error {
  background: #f8e2e2;
}



select.error,
textarea.error {
  border: 1px solid #e73d5c;
  background: #ffe8ec;
}

.error input[type="radio"] + label {
  background: #ffe8ec;
}

.error input[type="radio"] + label:before {
  border-color: #e73d5c;
}

.error input[type="checkbox"] + label {
  background: #ffe8ec;
}

.error input[type="checkbox"] + label:before {
  border-color: #e73d5c;
}





.fm-twBtn {
  margin-bottom: 120px;
  padding: 0 10px;
  text-align: center;
}
.fm-twBtn a {
  margin: 0 auto;
  text-align: center;
}
.fm-twBtn a:hover {
  filter: none;
  opacity: 0.9;
}

.agree {
  margin: 20px auto;
  padding: 20px;
  width: 80%;
  font-size: 1.6rem;
  border: 1px solid #fc012e;
  text-align: center;
}
.agree_ttl {
  margin-bottom: 10px;
  font-weight: bold;
  color: #fc012e;
}
.agree_check {
  width: 12px;
  height: 12px;
  appearance: checkbox;
  -webkit-appearance: checkbox;
}
@media (max-width: 480px) {
  .agree {
    font-size: 1.4rem;
  }
}

/* 注意書き */
.note {
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fc012e;
  text-align: center;
}
@media (max-width: 480px) {
  .note {
    margin-bottom: 50px;
    font-size: 1.2rem;
  }
}

/* プレゼント */
.present {
  border: #aaa 1px solid;
  padding: 2rem 3%;
  width: 94%;
  max-width: 640px;
  margin: 30px auto;
}
.present p {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.present p strong {
  font-weight: bold;
}
.present p span {
  color: #fc012e;
  font-weight: bold;
}
.present p:nth-child(2) {
  font-size: 1.6rem;
  font-weight: bold;
}
.present p:nth-child(3) {
  font-size: 1.2rem;
  margin-bottom: 0;
}
.present p:nth-child(3) br {
  display: none;
}

@media (max-width: 800px) {
  .present {
    border: #aaa 1px solid;
    padding: 2rem 3%;
    width: 86%;
    max-width: 640px;
    margin: 30px auto;
  }
  .present p {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .present p:nth-child(2) {
    font-size: 1.4rem;
    font-weight: bold;
  }
  .present p:nth-child(3) {
    font-size: 1.1rem;
  }
  .present p:nth-child(3) br {
    display: block;
  }
}
@media (max-width: 480px) {
  .present p {
    font-size: 1.2rem;
  }
  .present p br {
    display: none;
  }
  .present p:nth-child(3) br {
    display: none;
  }
}

/* チェックボックス */

label.chk-text {
  line-height: 135%;
  position: relative;
  margin-right: 5px;
  cursor: pointer;
  padding-left: 25px;
  height: 27px;
  margin-bottom: 6px;
}
@media (max-width: 480px) {
  label.chk-text {
    height: 30px;
    margin-bottom: 6px;
  }
}
label.chk-text input {
  width: auto;
  position: relative;
  margin: 0 1rem 0 0;
  cursor: pointer;
  border: none;
  opacity: 0; /*iPhoneの黒い半透明を消す*/
  -webkit-tap-highlight-color: transparent; /*iPhoneの黒い半透明を消す*/
}
label.chk-text input + span:before {
  position: absolute;
  width: 1.5rem;
  height: 0.5rem;
  z-index: 1;
  top: 0.125rem;
  left: 0.1875rem;
  content: "";
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(-45deg) scale(0, 0);
  transform: rotate(-45deg) scale(0, 0);
  border: 4px solid #959595;
  border-top-style: none;
  border-right-style: none;
}
label.chk-text input:checked + span:before {
  -webkit-transform: rotate(-45deg) scale(1, 1);
  transform: rotate(-45deg) scale(1, 1);
}
label.chk-text input + span:after {
  position: absolute;
  top: -0.125rem;
  left: 0;
  width: 17px;
  height: 17px;
  content: "";
  cursor: pointer;
  border: 1px solid #bbb;
  background: #ffffff;
}

label.chk-text input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: 0px;
  top: 1px;
  margin: 0px;
  outline: none;
}
label.chk-text input[type="checkbox"]:checked {
  box-shadow: none;
  border: none;
  opacity: 0; /*iPhoneの黒い半透明を消す*/
  -webkit-tap-highlight-color: transparent; /*iPhoneの黒い半透明を消す*/
}
label.chk-text input[type="checkbox"]:focus {
  box-shadow: none;
  border: none;
  opacity: 0; /*iPhoneの黒い半透明を消す*/
  -webkit-tap-highlight-color: transparent; /*iPhoneの黒い半透明を消す*/
}

/* リストを立て並びにする */
.column {
  flex-direction: column;
  align-items: flex-start;
}

.fm-info {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #fc012e;
}
@media (max-width: 480px) {
  .fm-info {
    font-size: 1.2rem;
  }
}
.fm-info-inline {
  font-size: 1.4rem;
  margin-bottom: 0px;
  margin-left: 15px;
  color: #fc012e;
}
@media (max-width: 480px) {
  .fm-info-inline {
    font-size: 1.2rem;
  }
}


.fm-info-wrap {
  font-size: 1.4rem;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #fc012e;
  padding: 20px;
  border: 1px solid #fc012e;
}
.fm-info-wrap strong {
  text-align: center;
}
