@charset "UTF-8";
html,
body,
h1,
h2,
p,
ul,
li {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #446298;
}
a:visited {
  color: #446298;
}
a:active {
  color: #7690be;
}
a:hover {
  color: #7690be;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Kosugi", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #000;
  background: #000;
  font-size: 14px;
  font-size: 0.875rem;
}

#wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 2rem;
  background: #fff;
  z-index: 0;
}
#wrapper header {
  width: 100%;
}
#wrapper header img {
  width: 100%;
}
#wrapper article {
  width: 90%;
  max-width: 650px;
  margin: 0 auto;
}
@media (max-width: 400px) {
  #wrapper article {
    max-width: auto;
  }
}
#wrapper article h1 {
  border-bottom: 1px solid #000;
  margin: 20px 0;
  padding: 10px 5px;
  text-align: center;
}
#wrapper article .article_content .upload-item {
  display: flex;
  flex-direction: column;
  margin: 2rem 0;
}
#wrapper article .article_content .upload-item h2 {
  font-size: 16px;
  font-size: 1rem;
}
#wrapper article .article_content .upload-item .inner-item {
  margin: 5px 0;
}
#wrapper article .article_content .upload-item .item {
  margin: 5px 0;
  border-bottom: 1px solid #ccc;
}
#wrapper article .article_content .upload-item .font-small {
  font-size: 12px;
  font-size: 0.75rem;
}
#wrapper article .wrap {
  display: flex;
  justify-content: center;
}
#wrapper article .wrap div {
  margin: 0 1rem;
}
@media (max-width: 400px) {
  #wrapper article .wrap div {
    margin: 5px 0;
  }
}
@media (max-width: 400px) {
  #wrapper article .wrap {
    flex-direction: column;
  }
}
#wrapper article .btn .btn-submit {
  display: block;
  background: #de024a;
  color: #fff;
  width: 200px;
  /* margin: 0 auto 3rem; */
  margin: 0 auto 0rem;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}
#wrapper article .btn .btn-submit:hover {
  background: #ccc;
}
#wrapper article .btn .btn-normal {
  display: block;
  background: #ccc;
  color: #fff;
  width: 200px;
  /* margin: 0 auto 3rem; */
  margin: 0 auto 0rem;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}
#wrapper article .btn .btn-normal:hover {
  background: #aaa;
}
#wrapper article h3 {
  border-left: 4px solid #ccc;
  padding-left: 5px;
  font-size: 16px;
  font-size: 1rem;
}
#wrapper article span.bold {
  font-weight: 700;
}
#wrapper article ul.asta {
  margin: 0;
  padding-left: 1em;
  line-height: 2em;
}
#wrapper article ul.asta > li {
  text-indent: -1em;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#wrapper article ul.asta > li::before {
  display: inline;
  content: "※";
}

footer {
  text-align: center;
  margin: 2rem 0;
}
footer .copy {
  font-size: 8px;
  font-size: 0.5rem;
  color: #fff;
}

.textbox {
  margin: 5px 2px;
  padding: 3px 7px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  line-height: 2;
}
.textbox:focus {
  outline: 0;
  border: 1px solid #de024a;
}
@media (max-width: 400px) {
  .textbox {
    margin: 5px 1px;
  }
}

.textbox_full {
  margin: 5px 2px;
  padding: 3px 7px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  line-height: 2;
  width: 100%;
}
.textbox_full:focus {
  outline: 0;
  border: 1px solid #de024a;
}

.select,
.select_pref {
  display: inline-block;
  position: relative;
  border: 1px solid #ccc;
  border-radius: 5px;
  vertical-align: middle;
}
.select select,
.select_pref select {
  width: 75px;
  padding: 10px;
  padding-right: 1em;
  border: none;
  border-radius: 5px;
  outline: 0;
  background: #fff;
  background-image: none;
  box-shadow: none;
  text-indent: 0.01px;
  cursor: pointer;
}
.select::before,
.select_pref::before {
  position: absolute;
  top: 17px;
  right: 10px;
  width: 0;
  height: 0;
  border-width: 10px 5px 0 5px;
  border-style: solid;
  border-color: #ccc transparent transparent transparent;
  content: "";
  pointer-events: none;
}

.select_pref select {
  width: 200px;
}

.radio-item {
  display: flex;
  flex-wrap: wrap;
}
.radio-item label {
  width: 33%;
}
.radio-item label input[type=radio] {
  position: absolute;
}
.radio-item label span {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  line-height: 2.2;
}
.radio-item label span::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  background: #fff;
  content: "";
  border-radius: 50%;
}
.radio-item label span::after {
  position: absolute;
  top: 11px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #de024a;
  content: "";
  opacity: 0;
  transition: all 0.3s;
}

.radio-item label input:focus + span::before {
  box-shadow: 0 0 4px #de024a;
}

.radio-item label input:checked + span::after {
  opacity: 1;
}

.checkbox-item {
  display: flex;
  flex-direction: column;
}
.checkbox-item label {
  width: 100%;
}
.checkbox-item label input[type=checkbox] {
  position: absolute;
}
.checkbox-item span {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  line-height: 2.2;
}
.checkbox-item span::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  background: #fff;
  content: "";
  transition: all 0.3s;
}
.checkbox-item span::after {
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 18px;
  color: #de024a;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "✔";
  opacity: 0;
  transition: all 0.3s;
}

.checkbox-item input:focus + span::before {
  box-shadow: 0 0 4px #de024a;
}

.checkbox-item input:checked + span::after {
  opacity: 1;
}

.loader {
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100vh;
  text-align: center;
  z-index: 1;
  position: fixed;
}

.load_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.loader-circle,
.loader-circle:after {
  border-radius: 50%;
  width: 8em;
  height: 8em;
}

.loader-circle {
  margin: 20px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(64, 64, 64, 0.2);
  border-right: 1.1em solid rgba(64, 64, 64, 0.2);
  border-bottom: 1.1em solid rgba(64, 64, 64, 0.2);
  border-left: 1.1em solid #404040;
  transform: translateZ(0);
  animation: loadC 1.1s infinite linear;
}
@keyframes loadC {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */