<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-comment {
  font-size: 12px;
  text-align: left;
}

.message {
  text-align: center;
}
.backtop a {
  background-color: #000;
  border: none;
  border-radius: 8px;
  color: #fff;
  display: block;
  font-size: 1.2em;
  font-weight: bold;
  margin: 50px auto;
  padding: 16px 24px;
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 400px;
  transition: all 0.2s ease-in-out;
}
.backtop a:hover {
  transform: scale(1.05);
}

/* =========================================================
form
========================================================= */
#fo {
  background: #fff;
  border-radius: 30px;
  color: #000;
  margin: auto;
  padding: 55px;
  width: 100%;
  max-width: 784px;
}
@media screen and (max-width: 768px) {
  #fo {
    padding: 0 24px;
  }
}
@media screen and (max-width: 480px) {
  #fo {
    padding: 0 16px;
  }
}

form ul {
  list-style: none;
}
form ul li {
  margin-top: 32px;
}
form ul li em {
  display: inline-block;
  color: #D10000;
  font-size: 12px;
  font-style: normal;
  font-weight: bold;
  margin-left: 8px;
}
form ul li div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
form p em {
  display: inline-block;
  color: #D10000;
  font-size: 12px;
  font-style: normal;
  font-weight: bold;
  margin-left: 8px;
}
form .c-text:first-child {
  margin-top: 16px;
}

/* =========================================================
form整形
========================================================= */
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=url],
textarea,
select {
  background-color: #f5f5f5;
  height: 50px;
  border-radius: 16px;
  border: 1px solid #f5f5f5;
  padding: 16px;
  font-size: 100%;
  outline: none;
  width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=url]:focus,
textarea:focus,
select:focus {
  border: 1px solid #9C74F4;
  outline: none;
}

input[type=text].error,
input[type=email].error,
input[type=tel].error,
input[type=number].error,
input[type=url].error,
textarea.error,
select.error {
  border: 1px solid #D10000;
  background: #ffe6e6;
}

input[type=text],
textarea {
  ime-mode: active;
}

input[type=email],
input[type=tel],
input[type=number],
input[type=url] {
  ime-mode: inactive;
}

input.zip,
input.tel {
  width: 70px;
}

input[name=age], input[name=year] {
  width: 100px;
  margin-right: 8px;
}

input[name=number] {
  width: 100px;
  margin-right: 8px;
}

textarea {
  height: 150px;
}

input[type=image] {
  width: 250px;
  height: auto;
  margin: 10px 0;
}

input[type=submit] {
  background-color: #000;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 1.2em;
  font-weight: bold;
  margin: 50px auto;
  padding: 16px 24px;
  position: relative;
  width: 100%;
  max-width: 400px;
  transition: all 0.2s ease-in-out;
}
input[type=submit]:hover {
  transform: scale(1.05);
}

.select-wrapper {
  position: relative;
}
.select-wrapper select {
  position: relative;
  width: 100%;
  padding: 16px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-overflow: "";
  padding-right: 40px;
}
.select-wrapper::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 16px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
  pointer-events: none;
  width: 8px;
  height: 8px;
}

label.radio-text {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  margin-right: 24px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  label.radio-text {
    width: 50%;
    margin-right: 0;
  }
}
label.radio-text input[type=radio] {
  display: none;
}
label.radio-text input[type=radio] + span.marker {
  position: relative;
  display: flex;
  width: 32px;
  height: 32px;
  background-color: #f5f5f5;
  margin-right: 0.75em;
  border-radius: 50%;
}
label.radio-text input[type=radio] + span.marker::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #9C74F4;
  transform: translate(-50%, -50%) scale(0);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
label.radio-text input[type=radio]:checked + span.marker::after {
  transform: translate(-50%, -50%) scale(1);
}

label.error::before {
  border: 1px solid #D10000;
}
label.error input[type=radio] + span.marker {
  background-color: #ffe6e6;
  border: 1px solid #D10000;
}

.tresure-data-1 .checkboxLabel {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 16px;
  margin-right: 24px;
  position: relative;
  overflow: hidden;
}
.tresure-data-1 .checkboxLabel.c-text:first-child {
  margin-top: 0;
}
@media screen and (max-width: 480px) {
  .tresure-data-1 .checkboxLabel {
    width: 100%;
    margin-right: 0;
  }
}
.tresure-data-1 .checkboxLabel.error {
  background: #ffe6e6;
}
.tresure-data-1 input[name="what[]"] {
  display: none;
}
.tresure-data-1 input[name="what[]"] + span.marker {
  position: relative;
  display: flex;
  width: 32px;
  height: 32px;
  background-color: #f5f5f5;
  margin-right: 0.75em;
  border-radius: 4px;
}
.tresure-data-1 input[name="what[]"] + span.marker::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background-color: #9C74F4;
  transform: translate(-50%, -50%) scale(0);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tresure-data-1 input[name="what[]"]:checked + span.marker::after {
  transform: translate(-50%, -50%) scale(1);
}

input[type=file] {
  display: none;
}
input[type=file].error {
  background: #ffe6e6;
}

.file-btn {
  border: 3px solid #000;
  font-weight: bold;
  border-radius: 24px;
  cursor: pointer;
  display: inline-block;
  margin-right: 16px;
  padding: 8px 24px;
  background: #000;
  color: #fff;
}
.file-btn:hover {
  background: #fff;
  color: #000;
}

.file-txt {
  display: inline-block;
  padding-top: 8px;
}

.caution dt {
  font-size: 14px;
  font-weight: bold;
}
.caution dd {
  font-size: 12px;
  padding-left: 12px;
  position: relative;
  font-weight: normal;
}
.caution dd a {
  color: #49ABF4;
  font-size: 12px;
  text-decoration: underline;
}
.caution dd a:hover {
  text-decoration: none;
}
.caution dd::before {
  background: #FFDA53;
  border-radius: 4px;
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
}/*# sourceMappingURL=pc-form.css.map */</pre></body></html>