@charset "UTF-8";
h1, h2, h3, p, a, li, span {
  font-family: "MS Pゴシック",sans-serif;
  color: #333;
}

header {
  width: 100%;
  height: 60px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header img {
  width: 100px;
  display: block;
}

header a {
  display: block;
  font-size: 15px;
  position: relative;
  padding-right: 20px;
}

header a::before {
  content: "";
  position: absolute;
  right: -5px;
  top: 0;
  background: url(../img/mail.png) no-repeat;
  background-position: center;
  background-size: cover;
  width: 20px;
  height: 15.5px;
}

.fv_img {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px auto 30px;
  overflow: hidden;
}

.fv_img img {
  width: 70%;
  margin: 50px auto 20px;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media (min-width: 981px) {
  .fv_img img {
    width: 38%;
    -webkit-transform: scale(1);
            transform: scale(1);
    position: relative;
    left: -16vw;
  }
}

.fv_text {
  width: 100%;
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
  text-align: center;
}

.fv_text h1 {
  position: relative;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (min-width: 981px) {
  .fv_text h1 {
    font-size: 3vw;
  }
}

.fv_text h1::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  display: block;
  width: 330px;
  height: 40px;
  background: url(../img/color-line.png) no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

@media (min-width: 981px) {
  .fv_text h1::before {
    top: 1vw;
    width: 42vw;
    height: 3vw;
  }
}

.fv_text p {
  font-weight: bold;
}

@media (min-width: 981px) {
  .fv_text p {
    font-size: 1.5vw;
  }
}

.section {
  margin-top: 50px;
  padding: 10px;
  overflow: hidden;
}

@media (min-width: 981px) {
  .section {
    max-width: 1000px;
    margin: 200px auto 0;
  }
}

.section_content {
  margin-bottom: 20px;
}

.section_content_text {
  width: 50%;
}

.section_content_text h3 {
  display: inline-block;
  border: solid 2px #333;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 20px;
}

.section_content_text p {
  font-size: 18px;
  line-height: 1.7;
  font-weight: bold;
}

.section_content_img {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}

.section_content_img img {
  width: 100%;
}

.section_text {
  font-size: 12px;
  line-height: 2;
  font-weight: bold;
}

.section_text_right {
  text-align: right;
  margin-top: 10px;
}

.title-section {
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.7;
}

.creator_wrapper {
  background: url(../img/blue.png) no-repeat;
  background-size: cover;
  background-position: center;
}

@media (min-width: 981px) {
  .creator_wrapper {
    padding: 100px 0;
  }
}

footer {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

footer ul {
  width: 232px;
  margin: auto;
  margin-bottom: 40px;
}

@media (min-width: 981px) {
  footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 1000px;
    width: 100%;
  }
}

footer ul li {
  margin-bottom: 10px;
  position: relative;
  text-align: left;
  display: block;
}

@media (min-width: 981px) {
  footer ul li {
    margin: auto 10px;
  }
}

footer ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer ul li img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

footer ul .line a {
  color: #31ae36;
}

footer ul .twiter a {
  color: #428dc4;
}

footer ul .discord a {
  color: #8c9eff;
}

footer a {
  display: block;
  margin: auto;
  margin-bottom: 20px;
}

footer a img {
  width: 30%;
}

@media (min-width: 981px) {
  footer a img {
    width: 100px;
  }
}

footer span {
  display: block;
  font-size: 10px;
}

footer .logo {
  margin-bottom: 30px;
}

.footer-text {
  text-align: center;
  margin-bottom: 40px;
  font-size: 12px;
}

.fadein-top {
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
}

.active {
  opacity: 1;
}

.fadein {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: 1s;
  transition: 1s;
}

.hidden {
  overflow: hidden;
}

@media (min-width: 981px) {
  .hidden {
    position: absolute;
    right: 5vw;
    bottom: 14vw;
  }
}

.fadein2 {
  opacity: 0;
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  -webkit-transition: 1s;
  transition: 1s;
}

.q-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

.q-title img {
  width: 20px;
  margin-right: 10px;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

form .from-wrapper {
  padding: 10px 5px;
  background: #f6f6f6;
}

form .from-wrapper .input {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

@media (min-width: 981px) {
  form .from-wrapper .input {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

form .from-wrapper .input label {
  width: 140px;
  text-align: right;
  padding: 0 2px;
}

form .from-wrapper .input label .essential {
  color: #fff;
  display: inline-block;
  background-color: #e03d67;
  padding: 4px;
  border-radius: 5px;
  font-size: 10px;
}

form .from-wrapper .input label .any {
  color: #fff;
  display: inline-block;
  background-color: #ccc;
  padding: 4px;
  border-radius: 5px;
  font-size: 10px;
}

form .from-wrapper .input input {
  background: #fff;
  line-height: 2.5;
  padding: 0 5px;
  width: calc(100% - 140px);
}

form .from-wrapper .input textarea {
  background: #fff;
  padding: 5px;
  min-height: 150px;
}

form .from-wrapper .input select {
  background: #fff;
  width: 225px;
}

form .kakunin {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

form .kakunin > input {
  background: #00a0d0;
  color: #fff;
  width: 100px;
  height: 30px;
  border-radius: 5px;
}

form .input-sex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: calc(100% - 140px);
}

form .input-sex input {
  width: auto !important;
}

@media (min-width: 981px) {
  form .input-sex {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.pv {
  text-align: center;
  margin: 20px auto;
}

.pv input {
  margin: 5px;
}
/*# sourceMappingURL=style.css.map */