<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

select {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 36px;
  padding-left: 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: 250px;
  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;
}

@media(max-width: 900px) {
  textarea {
    height: 180px;
  }
}

input[type="number"],
input[type="tel"] {
  width: 70px;
  border: 1px solid #aaa;
}

input[type="radio"] {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  border: 1px solid #959595;
  border-radius: 16px;
  outline: 0;
  -webkit-appearance: none;
  appearance: none;
}

.question em {
  font-style: normal;
  font-size: 1.2rem;
  color: #fff;
  background: #0095c4;
  width: 33px;
  height: 18px;
  display: inline-block;
  text-align: center;
  line-height: 18px;
  margin-left: 10px;
}

.formArea {
  margin: 50px auto 0;
  max-width: 930px;
}

.title--msg {
  margin-bottom: 30px;
  font-weight: normal;
  font-size: 2.8rem;
  font-family: 'Quicksand';
  text-align: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

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

.msgsub {
  text-align: center;
  margin-bottom: 30px;
}

.preTxt {
  margin-bottom: 20px;
  font-size: 1.4rem;
  text-align: right;
}

.formInner {
  margin: 0 auto;
  max-width: 860px;
}

@media(max-width: 900px) {
  .formInner {
    width: 100%;
    font-size: 1.4rem;
  }
}

.formInner&gt;li {
  display: flex;
  justify-content: space-between;
    flex-flow: column;
    align-items: flex-start;
  margin-bottom: 40px;
}

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

.question {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5px;
  width: 100%;
}

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

@media (max-width: 900px) {
  .question, .question--box {
    display: flex;
    justify-content: flex-start;
    align-items:inherit;
    text-align: left;
    font-size: 1.4rem;
    margin-bottom: 5px;
    width: 100%;
  }
}

.answer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.answer-radio {
  display: flex;
}

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

/*RadioとText*/
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: 2px;
  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: 6px;
  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;
}

.entry_submit input[type="submit"]{
  display: block;
  width: 480px;
  max-width: 800px;
  height: 60px;
  /*border-radius:5px;*/
  margin: 0 auto 70px;
  font-size: 1.6rem;
  color: #fff;
  background-color: #0095c4!important;
  border: none!important;
  background: url(../../img/arrow_w.png) no-repeat 94% center;
  background-size: 8px 13px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  -webkit-appearance: none;
}

@media (max-width: 900px) {
  .entry_submit input[type="submit"]{
    font-size: 1.4rem;
    width: 100%;
    background: url(../../img/arrow_w.png) no-repeat 98% center;
    background-size: 6px 11px;
  }

} 
.entry_submit input[type="submit"]:hover {
  opacity: .8;
}

.cation {
  max-width: 900px;
  text-align: left;
  margin: 0 auto 40px;
  font-size: 1.4rem;
}
@media (max-width: 900px) {
  .cation {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
/*
.cation dd{
  padding: 0 0 0 15px;
  background: url(../../img/icon-list.gif) no-repeat 0 5px;
}
*/
@media (max-width: 900px) {
  .cation dd{
    font-size: 85%;
  }
}

.cation_head {
  margin-bottom: 10px;
  font-weight: bold;
  color: #0095c4;
  font-size: 1.8rem;
}
@media (max-width: 900px) {
  .cation_head {
    font-size: 1.6rem;
  }
}
.cation_please{
  margin: 50px 0 80px 0;
  text-align: center;
}
@media (max-width: 900px) {
  .cation_please{
    margin: 30px 0 80px 0;
    padding: 0 10px;
  }
}
.cation_please_txt{
  font-weight: bold;
  color: #0095c4;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .cation_please_txt{
    font-size: 1.6rem;
    padding: 0 10px;
  }
}
.cation_please_box{
  font-weight: bold;
  color: #575757;
  font-size: 1.8rem;
  border: 4px solid #ebebe9;
  padding: 25px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .cation_please_box{
    border: 3px solid #ebebe9;
    padding: 25px;
    margin-bottom: 30px;
  }
}
.cation_txt_att {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .cation_txt_att {
  font-size: 1.4rem;
  }
}
.cation_txt_att span{
  border-bottom: 2px dotted #575757;
}
.cation_txt {
  margin-bottom: 10px;
}
.cation_txt_s {
  font-size: 1.3rem;
}
.cation_txt {
  margin-bottom: 10px;
}
/*
.cation_txt span{
  padding-left:1em;
  text-indent:-1em;
}
*/
.cation a {
  text-decoration: underline;
}

.msg {
  text-align: center;
}

.thanks {
  text-align: center;
  font-size: 1.8rem;
  margin: 100px auto 140px;
  font-weight: bold;
}

.msg .error {
  text-align: center;
  font-size: 1.8rem;
  margin: 100px auto 140px;
  font-weight: bold;
}
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;
}
input[type="checkbox"]{
  width: 25px;
  height: 25px;
  margin-right: 8px;
  border: 2px solid #959595;
}

</pre></body></html>