<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
form {
  margin: 0;
  padding: 0;
  max-width: none;
}
select {
  -webkit-appearance: none;
          appearance: none;
  width: 100%;
  height: 36px;
  padding-left: 10px;
  font-size: 1.4rem;
  color: #575757;
  background: #FFFFFF;
  border: none;
  border: 1px solid #AAAAAA;
  border-radius: 0;
  outline: none;
}

option {
  background: #FFFFFF;
}

input {
  width: 100%;
  height: 36px;
  padding: 10px;
  font-size: 1.4rem;
  color: #575757;
  border: 1px solid #AAAAAA;
  border-radius: 0;
  -webkit-appearance: none;
          appearance: none;
  box-sizing: border-box;
}

textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  font-family : inherit;
  font-size: 1.6rem;
  color: #575757;
  border: none;
  border: 1px solid #AAAAAA;
  border-radius: 0;
  -webkit-appearance: none;
          appearance: none;
}

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;
}

input[type="file"] {
  border: none;
  height: auto;
  padding: 10px 0;
}

em {
  flex: 0 0 33px;
  font-style: normal;
  font-size: 1.2rem;
  color: #FFFFFF;
  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: 2.8rem;
  font-family: "Nunito", sans-serif;
  color: #CC0826;
  text-align: center;
  border-bottom: 3px double #FFEAEA;
  padding-bottom: 10px;
}

@media(max-width: 480px) {
  .title--msg {
    font-size: 2.2rem;
  }
}

.msgsub {
  max-width: 700px;
  margin: 0 auto 30px;
  overflow: hidden;
}

.msgsub img {
  float: right;
  display: block;
  width: 200px;
}

@media(max-width: 768px) {
  .msgsub {
    margin: 0 auto 30px;
    width: 92%;
    font-size: 1.4rem;
  }
  .msgsub img {
    margin-left: 15px;
  }
}

@media(max-width: 480px) {
  .msgsub img {
    float: none;
    margin: 0 auto 15px;
  }
}

.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 &gt; li {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  align-items: flex-start;
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .formInner &gt; li {
    margin-bottom: 20px;
  }
}

.fm-question {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  width: 100%;
  line-height: 1.5;
  font-weight: bold;
}

@media (max-width: 800px) {
  .fm-question,
  .fm-question--message {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
    width: 100%;
  }
}

.fm-answer {
  /* display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: wrap; */
  width: 100%;
}
.fm-space {
  gap: 5px;
}

.fm-answer-radio {
  /* display: flex; */
}

.radio-text {
  margin-right: 5px;
  width: 80px;
  height: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/*RadioとText*/
label.radio-text {
  width: auto;
  cursor: pointer;
  position: relative;
  margin-right: 2em;
  padding-top: 7px;
  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: 0;
  top: 4px;
  content: "";
  z-index: 3;
}

label.error:before {
  border: 1px solid #FF0033;
}

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: -22px;
  top: 3px;
  margin: 0;
  box-shadow: 20px -1px #FFFFFF;
}

label.radio-text input[type="radio"]:checked {
  box-shadow: none;
}

label.radio-text input[type="radio"]:focus {
  opacity: 0;
  box-shadow: 20px -1px #FFFFFF;
}

input[type="submit"] {
  display: block;
  width: 250px;
  height: 60px;
  margin: 0 auto 70px;
  font-size: 1.6rem;
  line-height: 1.6rem;
  background-color: #222;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  text-align: center;
  -webkit-appearance: none;
}



/* エラー表示 */
input[type="submit"]:hover {
  opacity: 0.8;
}

.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;
}


@media (max-width: 768px) {
  input[type="submit"] {
    margin-bottom: 50px;
  }
}

.cation {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .cation {
    width: 92%;
  }
}

.cation__head {
  margin-bottom: 10px;
  color: #FC012E;
}

.cation__text {
  margin-bottom: 10px;
}

.cation a {
  text-decoration: underline;
}

.message {
  text-align: center;
  font-size: 1.8rem;
  padding: 70px 0;
}

.thanks {
  text-align: center;
  font-size: 1.8rem;
  padding: 70px 0;
}

.msg .error {
  text-align: center;
  font-size: 1.8rem;
  margin: 100px auto 140px;
}
label.error:before {
  border: 1px solid #FF0033;
}
label.error {
  background: #F8E2E2;
}
label.error:before {
  border: 1px solid #FF0033;
}
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 #FF0033;
  background: #F8E2E2;
}
input.error:focus,
textarea.error:focus {
  border: 1px solid #FF0033;
  background: #F8E2E2;
}
select.error {
  background: #F8E2E2;
  border: 1px solid #FF0033;
}
select.error:focus {
  background: #F8E2E2;
  border: 1px solid #FF0033;
}
input[type="file"].error {
  background: #F8E2E2;
}

.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;
}

.fm-bnr {
  margin: 0 auto 30px;
  max-width: 700px;
}
@media (max-width: 768px) {
  .fm-bnr {
    width: 92%;
  }
}
@media (max-width: 480px) {
  .fm-bnr {
    margin: 0 auto 20px;
  }
}


.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;
  }
}
</pre></body></html>