/* CSS Remedy */
*,
::after,
::before {
  box-sizing: border-box;
}

html {
  line-sizing: normal;
}

body {
  margin: 0;
}

[hidden] {
  display: none;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

h1 {
  margin: 0.67em 0;
}

pre {
  white-space: pre-wrap;
}

hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
}

picture {
  display: contents;
}

source {
  display: none;
}

canvas,
img,
svg,
video {
  height: auto;
}

audio {
  width: 100%;
}

img {
  border-style: none;
}

svg {
  overflow: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*共通*/
* {
  font-family: noto-sans-cjk-jp, sans-serif;
}

.box-50 {
  display: inline-block;
  width: 50%;
}

.heading__wrap {
  width: 100%;
  text-align: center;
}

h2 {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  border-bottom: 2px solid black;
  line-height: 54px;
  padding-bottom: 17px;
  display: inline-block;
  margin: 0 auto;
}

html.is-fixed,
html.is-fixed body {
  height: 100%;
  overflow: hidden;
}

/* id=header */
#header {
  background-color: black;
  padding: 40px;
  padding-bottom: 20px;
}

.header__logo {
  width: auto;
  height: 30px;
  display: inline-block;
  vertical-align: initial;
  margin-left: 45px;
}

#header h1 {
  color: white;
  font-size: 38px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  line-height: 49px;
  display: inline;
  margin: 0;
}

#header h1 img {
  display: inline-block;
  width: 630px;
}

#header a {
  color: white;
  text-decoration: none;
}

#header nav {
  position: relative;
}

#header ul {
  margin-top: 30px;
  margin-bottom: 0;
  padding-left: 0;
}

#header .header__nav--left li:first-of-type {
  border-bottom: 1px solid white;
}

.header__nav--right {
  position: absolute;
  right: -15px;
  bottom: 0;
}

#header li {
  display: inline-block;
  margin-right: 30px;
  padding-bottom: 3px;
}

#header li a {
  color: white;
  text-decoration: none;
}

#header .header__nav--right li:first-of-type {
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid white;
}

#header .header__nav--right li:last-of-type {
  margin-right: 0;
}

.btn-trigger {
  width: 25px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 23px;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.btn-trigger,
.btn-trigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 0;
}

.btn-trigger span:nth-of-type(2) {
  top: 9px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

#humbtn span:nth-of-type(1) {
  -webkit-animation: btn07-bar01 0.75s forwards;
  animation: btn07-bar01 0.75s forwards;
}

@-webkit-keyframes btn07-bar01 {
  0% {
    -webkit-transform: translateY(9px) rotate(45deg);
  }

  50% {
    -webkit-transform: translateY(9px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes btn07-bar01 {
  0% {
    transform: translateY(9px) rotate(45deg);
  }

  50% {
    transform: translateY(9px) rotate(0);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

#humbtn span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}

#humbtn span:nth-of-type(3) {
  -webkit-animation: btn07-bar03 0.75s forwards;
  animation: btn07-bar03 0.75s forwards;
}

@-webkit-keyframes btn07-bar03 {
  0% {
    -webkit-transform: translateY(-9px) rotate(-45deg);
  }

  50% {
    -webkit-transform: translateY(-9px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes btn07-bar03 {
  0% {
    transform: translateY(-9px) rotate(-45deg);
  }

  50% {
    transform: translateY(-9px) rotate(0);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

#humbtn.active span:nth-of-type(1) {
  -webkit-animation: active-btn07-bar01 0.75s forwards;
  animation: active-btn07-bar01 0.75s forwards;
}

@-webkit-keyframes active-btn07-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }

  50% {
    -webkit-transform: translateY(9px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(9px) rotate(45deg);
  }
}

@keyframes active-btn07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(9px) rotate(0);
  }

  100% {
    transform: translateY(9px) rotate(45deg);
  }
}

#humbtn.active span:nth-of-type(2) {
  opacity: 0;
}

#humbtn.active span:nth-of-type(3) {
  -webkit-animation: active-btn07-bar03 0.75s forwards;
  animation: active-btn07-bar03 0.75s forwards;
}

@-webkit-keyframes active-btn07-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }

  50% {
    -webkit-transform: translateY(-9px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(-9px) rotate(-45deg);
  }
}

@keyframes active-btn07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-9px) rotate(0);
  }

  100% {
    transform: translateY(-9px) rotate(-45deg);
  }
}

nav.sp_only {
  position: fixed !important;
  top: 63px;
  background: black;
  width: 100vw;
  left: 0;
  padding: 25px;
  z-index: 100;
  height: calc(100vh - 63px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

nav.sp_only.open {
  visibility: visible;
  opacity: 1;
}

.header__nav--top {
  margin-top: 0 !important;
}

.header__nav--top li {
  width: 100%;
  border-bottom: 1px solid white;
  padding: 13px 5px !important;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 300;
}

.header__nav--bottom li {
  width: 100%;
  padding: 5px 0px !important;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 300;
}

.header__nav--bottom li img {
  height: 10px;
  display: inline-block;
  vertical-align: unset;
  margin-right: 10px;
  margin-left: 5px;
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  background-color: #f7f7f7;
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}

input.error {
  border: 1px solid #ff3223 !important;
}

textarea.error {
  border: 1px solid #ff3223 !important;
}

label.error {
  font-size: 14px;
  color: #ff3223;
  text-align: right;
  display: block;
  margin-top: 5px;
}

/* id=fv */
#fv {
  position: relative;
}

.fv__text--center {
  position: absolute;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 77px;
  font-weight: bold;
  color: white;
  text-shadow: #000000c9 0px 0px 32px;
  top: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.fv__text--bottom {
  position: absolute;
  font-size: 63px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  line-height: 66px;
  color: #883acb;
  left: 177px;
  bottom: 0;
  letter-spacing: 2px;
}

/* id=purpose */
#purpose {
  position: relative;
}

.purpose__wrap {
  position: absolute;
  bottom: 0;
  left: 50vw;
  max-width: 420px;
  width: 95vw;
  padding-top: 155px;
}

.purpose__img {
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
}

.purpose__text {
  width: 100%;
  margin-top: 55px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 32px;
}

.purpose_heading {
  text-align: left;
}

/* id=recruiting */
#recruiting {
  padding-top: 155px;
  padding-bottom: 193px;
}

.recruiting_heading {
  max-width: 800px;
  text-align: left;
  margin: 0 auto;
}

.recruiting__img {
  width: calc(100% - 50px);
  max-width: 474px;
  margin: 0 auto;
  margin-top: 88px;
}

.recruiting__text {
  width: calc(100% - 50px);
  max-width: 800px;
  margin: 0 auto;
  margin-top: 83px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 32px;
}

.recruiting__box {
  width: calc(100% - 50px);
  max-width: 800px;
  margin: 0 auto;
  margin-top: 70px;
  background-color: white;
  padding: 35px;
  padding-bottom: 28px;
  border: 1px solid #707070;
  border-radius: 8px;
}

.recruiting__box h3 {
  background-color: #8a8a8a;
  border-radius: 8px;
  height: 66px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  color: white;
  text-align: center;
  margin: 0;
}

.recruiting__box-heading1 {
  line-height: 66px;
}

.recruiting__box-heading2 {
  line-height: 33px;
}

.recruiting__box-list1 {
  padding: 0;
  margin-top: 32px;
  margin-bottom: 39px;
  list-style: none;
}

.recruiting__box-list2 {
  padding: 0;
  margin-top: 32px;
  list-style: none;
}

.recruiting__box li {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 22px;
  text-indent: -2.5em;
  padding-left: 2.5em;
}

.recruiting__box li small {
  display: block;
  font-size: 12px;
  text-indent: -0.5em;
}

.recruiting__box--bottom {
  width: calc(100% - 50px);
  max-width: 800px;
  margin: 0 auto;
  margin-top: 40px;
}

.recruiting__box--bottom h3 {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.recruiting__box--bottom p {
  margin-bottom: 7px;
}

/* id=support */
#support {
}

.support__img--bottom {
  margin-top: -80px;
}

.support_heading {
  text-align: left;
}

.support_heading h2 {
  padding-top: 150px;
}

.support__wrap--top {
  width: calc(100% - 50px);
  max-width: 1000px;
  margin: 0 auto;
  font-size: 0;
  margin-top: -500px;
}

.support__wrap--bottom {
  width: calc(100% - 50px);
  max-width: 1000px;
  margin: 0 auto;
  font-size: 0;
}

.support__price--wrap {
  padding-top: 120px;
}

.support__price--innner {
  width: 380px;
  display: inline-block;
  text-align: left;
}

.support__price {
  position: relative;
  display: inline-block;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  color: #883acb;
  line-height: 72px;
  margin-bottom: 75px;
}

.support__price small {
  font-size: 25px;
}

.support__price--heading {
  position: absolute;
  top: -45px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 40px;
  color: black;
}

.support__text {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  margin-top: -15px;
  margin-bottom: 75px;
}

.support__text--inner1,
.support__text--inner3 {
  padding-right: 20px;
}

.support__text--inner2 {
  padding-left: 20px;
}

.support__text--wrap {
  margin-bottom: 55px;
}

.support__text--wrap h3 {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 40px;
  margin: 0;
}

.support__text--wrap h4 {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 40px;
  margin: 0;
}

.support__text--wrap p {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

/* id=flow */
#flow {
  background-color: #f7f7f7;
  padding-top: 146px;
  padding-bottom: 225px;
}

.flow__wrap {
  width: calc(100% - 50px);
  max-width: 800px;
  margin: 0 auto;
  margin-top: 105px;
}

.flow__block {
  background-color: white;
  border: 1px solid #707070;
  border-radius: 8px;
  height: 66px;
  line-height: 66px;
  margin-bottom: 20px;
}

.flow__block--date {
  display: inline-block;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  padding-left: 37px;
  width: 390px;
}

.flow__block--text {
  display: inline-block;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
}

.flow__text {
  margin-top: 35px;
  margin-bottom: 105px;
}

.flow__box {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 27px;
  line-height: 45px;
  width: calc(100% - 50px);
  max-width: 800px;
  margin: 0 auto;
  background-color: #883acb;
  color: white;
  padding-top: 41px;
  padding-bottom: 52px;
  text-align: center;
  border-radius: 16px;
}

.flow__box--title {
  margin-bottom: 20px;
}

/* id=essentials */
#essentials {
  padding-top: 145px;
  padding-bottom: 210px;
}

.essentials__wrap {
  width: calc(100% - 50px);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0;
}

.essentials__text {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.essentials__downloads {
  width: 100%;
  display: inline-block;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
}

.essentials__wrap img {
  display: inline-block;
  width: 234px;
  vertical-align: bottom;
}

.essentials__downloads a {
  display: inline-block;
  color: black;
  text-decoration: none;
  border-bottom: 1px solid black;
  line-height: 25px;
  margin-bottom: 30px;
}

.essentials__downloads img {
  width: 24px;
  margin-bottom: 27px;
  margin-right: 15px;
}

/* id=news */
#news {
  background-color: #f7f7f7;
  padding-bottom: 150px;
  padding-top: 155px;
  text-align: center;
}

.news__img {
  width: 100vw;
  height: auto;
}

.news__wrap {
  margin-top: 72px;
  margin-bottom: 65px;
}

.news__post--wrap {
  width: calc(100% - 50px);
  max-width: 800px;
  margin: 0 auto;
  font-size: 0;
  padding-top: 28px;
  padding-bottom: 27px;
  border-bottom: 1px solid #707070;
}

.news__post--wrap img {
  display: inline-block;
  width: 226px;
  height: auto;
  vertical-align: top;
}

.news__post--data {
  display: inline-block;
  width: calc(100% - 226px);
}

.date__post--btn img {
  width: 20px;
  vertical-align: text-bottom;
  margin-left: 13px;
}

.news__post--text {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 40px;
  padding-left: 45px;
  text-align: left;
}

.date__post--date {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
}

.date__post--btn {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  text-align: right;
}

.date__post--btn a {
  color: black;
  text-decoration: none;
}

.news__post--detail {
  padding-left: 45px;
  margin-top: 44px;
}

.news__post--more {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 32px;
  display: inline-block;
  color: black;
  text-decoration: none;
}

.news__post--more img {
  width: 6px;
  margin: 0 auto;
  margin-top: 13px;
}

/* id=judge */
#judge {
  background-color: black;
  padding-top: 155px;
  padding-bottom: 135px;
  text-align: center;
}

#judge h2 {
  color: white;
  border-color: white;
}

.judge__box {
  width: calc(100% - 50px);
  max-width: 1000px;
  margin: 0 auto;
}

.judge__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.judge__wrap--single {
  width: 100%;
  padding: 18px;
}

.judge__wrap--single img {
  display: inline-block;
  vertical-align: top;
  width: 300px;
  height: auto;
}

.judge__wrap--single div {
  display: inline-block;
  width: calc(100% - 340px);
  padding-left: 40px;
  vertical-align: bottom;
}

.judge__wrap--single p {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  text-align: left;
  color: white;
  margin-top: 20px;
  margin-bottom: 20px;
}

.judge__wrap--single h3 {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 27px;
  color: white;
  margin-top: 90px;
  margin-bottom: 35px;
}

.judge__wrap--single h4 {
  color: white;
  text-align: left;
  font-size: 130%;
  margin-bottom: 0;
  margin-top: 0;
}

/* id=faq */
#faq {
  padding-top: 150px;
}

#faq .ac {
  width: calc(100% - 50px);
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 100px;
}

#faq .ac-parent {
  padding: 15px 30px;
  padding-right: 40px;
  line-height: 25px;
  text-align: left;
  background-color: black;
  color: white;
  border-bottom: 1px solid #fff;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

#faq .ac-parent:after {
  content: "▼";
  position: absolute;
  right: 20px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

#faq .ac-parent.ac-selected:after {
  content: "▲";
  position: absolute;
  right: 20px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

#faq .ac-child {
  padding: 15px 30px;
  background-color: #f7f7f7;
  margin: 0;
}

/* id=contact */
#contact {
  padding-top: 150px;
  padding-bottom: 200px;
}

.contact__wrap {
  width: calc(100% - 50px);
  max-width: 1000px;
  margin: 0 auto;
  background-color: #f7f7f7;
  padding: 100px;
  padding-top: 50px;
  padding-bottom: 130px;
  margin-top: 100px;
  margin-bottom: 200px;
}

.contact__box {
  width: calc(100% - 50px);
  max-width: 800px;
  margin: 0 auto;
  background-color: black;
  padding-top: 20px;
  padding-bottom: 47px;
  text-align: left;
  border-radius: 16px;
}

.contact__box a {
  color: white;
  text-decoration: none;
}

.contact__single {
  font-size: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid black;
}

.contact__single:last-of-type {
  border: none;
}

.contact__single--label {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  width: 200px;
  display: inline-block;
  vertical-align: top;
}

.contact__single input {
  height: 40px;
  width: calc(100% - 200px);
  font-size: 15px;
  padding: 0 15px;
  border: none;
}

.contact__single textarea {
  height: 180px;
  width: calc(100% - 200px);
  font-size: 15px;
  padding: 15px;
  border: none;
}

.contact__submit {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 27px;
  background-color: #883acb;
  color: white;
  border: none;
  width: 400px;
  height: 80px;
  line-height: 80px;
  border-radius: 16px !important;
  display: block;
  margin: 0 auto;
  margin-top: 70px;
  cursor: pointer;
}

.contact__submit--text {
  width: 400px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  margin: 0 auto;
  margin-top: 40px;
}

.contact__submit--text a {
  color: #1a73e8;
}

.contact__box--heading {
  color: white;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 27px;
  margin: 40px 20px 20px 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #f7f7f7;
}

.contact__box--text {
  color: white;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
  margin: 0px 20px 0 20px;
}

.contact__box--text small {
  font-size: 70%;
  display: block;
  margin-top: 15px;
  margin-bottom: 30px;
}

.contact__box h4 {
  color: white;
  font-size: 125%;
  font-weight: normal;
}

.advisor_box {
  color: white;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
  margin: 20px 20px 20px 0px;
}

.advisor_box img {
  width: 120px;
}

.advisor_box div {
  padding-left: 30px;
  color: white;
  text-align: left;
  width: 100%;
}

.advisor_box span {
  font-size: 85%;
}

.advisor_box h5 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 120%;
  font-weight: normal;
}

.modal .contact__single {
  padding-top: 10px;
  padding-bottom: 10px;
}

.modal .submit_btn {
  margin: 0;
  width: 50%;
  display: inline-block;
  font-size: 22px;
  height: 60px;
  line-height: 60px;
}

.modal .return {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #883acb;
  background-color: white;
  border: 1px solid #883acb;
  border-radius: 16px;
  margin: 0;
  width: calc(50% - 30px);
  margin-right: 25px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-size: 22px;
  height: 60px;
  line-height: 60px;
}

.modal .contact__single input {
  background-color: #f7f7f7;
}

.modal textarea {
  height: 120px;
  background-color: #f7f7f7;
}

.modal h2 {
  font-size: 38px;
  line-height: 30px;
  margin-bottom: 25px;
}

.modal .contact__submit--text {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.modal .cross {
  position: absolute;
  right: 40px;
  top: 40px;
}

.modal .cross img {
  width: 20px;
  height: auto;
}

.comp__box {
  text-align: center;
}

.comp__box .return {
  margin: 0;
}

.comp__box p {
  margin-top: 60px;
  margin-bottom: 60px;
}

/* id=contact */
#footertop {
  padding-top: 70px;
  padding-bottom: 80px;
  border-top: 1px solid black;
}

.fotertop__wrap {
  width: calc(100% - 50px);
  max-width: 870px;
  margin: 0 auto;
  font-size: 0;
}

.footertop_tokyo {
  text-align: center;
}

.fotertop__wrap h3 {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  margin: 0;
  margin-bottom: 30px;
}

.footertop_tokyo img {
  max-width: 141px;
  display: inline-block;
}

.footertop_sns {
  text-align: center;
}

.footertop_sns img {
  width: 25px;
  display: inline-block;
  margin: 0 16px;
}

/* id=footer */
#footer {
  background-color: black;
  padding-top: 100px;
  padding-bottom: 40px;
  text-align: center;
}

#footer ul {
  list-style: none;
  margin-top: 0;
  margin-bottom: 65px;
}

#footer li {
  display: inline-block;
  padding: 0 25px;
  border-right: 1px solid white;
}

#footer li:first-of-type {
  border-left: 1px solid white;
}

#footer li a {
  color: white;
  text-decoration: none;
}

#footer small {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: white;
}

/* id=policy */
#policy {
  width: calc(100% - 50px);
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 100px;
}

#policy h2 {
  margin-top: 120px;
  margin-bottom: 60px;
  border-bottom: none;
  padding-bottom: 0;
}

#policy h2::before {
  content: "■";
  font-size: 30px;
  vertical-align: top;
  margin-right: 20px;
  font-weight: 500;
}

#policy h3 {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 27px;
  margin-bottom: 0;
}

#policy h4 {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 27px;
  margin-top: 0;
}

#policy h5 {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  margin-top: 0;
}

#policy hr {
  border-color: #707070;
  margin-top: 130px;
}

#policy p {
  margin-bottom: 45px;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.pc_only-inline {
  display: inline;
}

.sp_only-inline {
  display: none;
}
/* ------------------------ここからｓｐーーーーーーーーーーーーーーーーーー */
@media (max-width: 768px) {
  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }

  .pc_only-inline {
    display: none;
  }

  .sp_only-inline {
    display: inline;
  }

  h2 {
    font-size: 30px;
    padding-bottom: 10px;
  }

  #header {
    padding: 25px;
    padding-bottom: 0;
    padding-top: 20px;
  }

  #header h1 {
    font-size: 16px;
    line-height: unset;
    padding-bottom: 20px;
    display: inline-block;
  }

  #header h1 img {
    display: inline-block;
    width: 285px;
  }

  .header__logo--wrap {
    background-color: black;
    display: block;
    text-align: center;
    width: 100vw;
    margin-left: -25px;
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .header__logo {
    margin: 0;
    height: 25px;
    margin-bottom: 10px;
  }

  .fv__text--center {
    font-size: 40px;
  }

  .fv__text--bottom {
    font-size: 35px;
    line-height: 40px;
  }

  /* id=purpose */
  .purpose__wrap {
    width: calc(100% - 50px);
    position: unset;
    margin: 0 auto;
    margin-top: 20px;
    padding-top: 0;
  }

  .fv__text--bottom {
    position: absolute;
    left: 35px;
    bottom: -75px;
  }

  #purpose {
    height: auto !important;
  }

  .purpose__img--wrap {
    position: relative;
  }

  .purpose_heading {
    text-align: right;
  }

  .purpose__img {
    z-index: -1;
    position: unset;
  }

  .purpose__text {
    margin-top: 15px;
  }

  #recruiting {
    padding-top: 75px;
  }

  .heading__wrap.recruiting_heading {
    width: calc(100% - 50px);
    margin: 0 auto;
  }

  .recruiting__text {
    margin-top: 15px;
  }

  .recruiting__box {
    padding: 17px;
  }

  .recruiting__box h3 {
    text-align: left;
    font-size: 15px;
  }

  .recruiting__box-heading1 {
    line-height: 20px;
    padding: 5px 8px;
    height: 50px !important;
  }

  .recruiting__box-heading2 {
    line-height: 20px;
    padding: 5px 8px;
    height: 75px !important;
  }

  #flow {
    padding-top: 75px;
    padding-bottom: 100px;
  }

  .flow__block--date {
    width: 100%;
  }

  .flow__wrap {
    margin-top: 60px;
  }

  .flow__block {
    height: unset;
    line-height: unset;
    padding: 10px;
  }

  .flow__block--text {
    font-size: 17px;
  }

  .flow__block--date {
    padding: 0;
    font-size: 17px;
  }

  .support_heading h2 {
    padding-top: 50px;
  }

  .support__wrap--top {
    margin-top: 0;
  }

  .support__price--innner {
    width: 100%;
  }

  .support__img--bottom {
    margin-top: 95px;
  }

  .support__text--wrap h4 {
    font-size: 13px;
  }

  .box-50.support__price--wrap {
    width: 100%;
  }

  .support__price {
    font-size: 52px;
  }

  .box-50.support__text--wrap {
    width: 100%;
  }

  .support__text--inner2 {
    padding-left: 0;
  }

  .flow__text {
    font-size: 90%;
    margin-bottom: 30px;
  }

  .flow__box {
    font-weight: 400;
    font-size: 20px;
    line-height: 35px;
    padding-top: 25px;
    padding-bottom: 30px;
  }

  #essentials {
    padding-bottom: 100px;
    padding-top: 90px;
  }

  .essentials__text {
    width: calc(100% - 50px);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .essentials__downloads {
    font-size: 18px;
  }

  .essentials__downloads img {
    vertical-align: middle;
  }

  .essentials__downloads a {
    max-width: calc(100% - 39px);
  }

  #news {
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .news__post--wrap img {
    width: 100%;
  }

  .date__post--btn img {
    width: 20px;
  }

  .news__wrap {
    margin-top: 20px;
  }

  .news__post--data {
    display: block;
    width: 100%;
  }

  .news__post--text {
    font-size: 15px;
    line-height: 30px;
    padding-left: 0;
    margin-top: 15px;
  }

  .news__post--detail {
    padding-left: 0;
    margin-top: 15px;
  }

  .news__post--wrap {
    padding-bottom: 10px;
  }

  .judge__wrap--single {
    width: 100%;
    padding: 15px 7px;
  }

  .judge__wrap--single h4 {
    margin-top: 30px;
  }

  .judge__wrap--first {
    width: 100%;
  }

  .footertop_sns img {
    margin: 0 10px;
  }

  #contact {
    padding-bottom: 70px;
  }

  .contact__wrap {
    padding: 30px;
    padding-top: 0;
    padding-bottom: 70px;
    margin-top: 100px;
    margin-bottom: 70px;
  }

  .contact__single input {
    width: 100%;
  }

  .contact__single textarea {
    width: 100%;
  }

  .contact__submit {
    width: 100%;
  }

  .contact__submit--text {
    width: 100%;
  }

  .contact__single--label {
    margin-bottom: 10px;
  }

  .contact__box--text {
    text-align: left;
    padding: 0 25px;
    line-height: 30px;
  }

  .contact__submit {
    font-size: 25px;
    height: 65px;
    line-height: 65px;
  }

  .advisor_box {
    display: block;
  }

  .advisor_box div {
    padding-left: 0;
  }

  .advisor_box img {
    width: 150px;
    margin: 0 auto;
  }

  .contact__box--heading {
    margin-left: 40px;
    margin-right: 40px;
  }

  .modal__content {
    padding: 40px 20px;
    width: calc(100% - 40px);
    height: 90vh;
    overflow: scroll;
  }

  .modal .cross {
    right: 20px;
  }

  .modal .return {
    width: calc(50% - 10px);
    margin-right: 5px;
  }

  #footer small {
    font-size: 10px;
  }

  #footer ul {
    padding: 0;
  }

  #footer li {
    padding: 0 10px;
    font-size: 13px;
  }

  #footer li.footer__li--first {
    border-left: 1px solid white;
  }
}