@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
}

/* リキッドレイアウト対応 */
@media (max-width: 1000px) {
  html {
    font-size: 1.6vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* ホバー */
a, input[type=submit] {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover, input[type=submit]:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

html.is-fixed {
  overflow: hidden;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.fixed-btn {
  position: fixed;
  bottom: 40px;
  bottom: 2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
  width: 100%;
  max-width: 695px;
  max-width: 43.4375rem;
}

.inner {
  width: 100%;
  max-width: 1050px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.section-title {
  text-align: center;
}

.section-title {
  font-size: 74px;
  font-size: 4.625rem;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 2.3125rem;
  }
}

.section-title span {
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 767px) {
  .section-title span {
    font-size: 1.125rem;
  }
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #000;
  color: #fff;
}

.audition {
  margin-top: 480px;
  margin-top: 30rem;
  padding-top: 60px;
  padding-top: 3.75rem;
  background: #ecf8f4;
  position: relative;
}
@media screen and (max-width: 767px) {
  .audition {
    margin-top: 7.5rem;
    padding-top: 3.75rem;
  }
}

.audition:before {
  content: "";
  display: block;
  width: 100%;
  height: 15.5882352941vw;
  background-image: url(../img/audition-bg-triangle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  top: -15.4127100073vw;
}

.audition:after {
  content: "";
  display: block;
  max-width: 1188px;
  max-width: 74.25rem;
  max-height: 348px;
  max-height: 21.75rem;
  width: 88vw;
  height: 25vw;
  background-image: url(../img/audition-top-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  bottom: 448px;
  bottom: 28rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .audition:after {
    width: 100vw;
    height: 28vw;
    bottom: auto;
    bottom: initial;
    top: -15.5882352941vw;
  }
}

.audition__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 365px;
  padding-right: 22.8125rem;
  margin-top: 36px;
  margin-top: 2.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .audition__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
    padding-right: initial;
    margin-top: 1.125rem;
  }
}

.audition__item {
  width: 300px;
  width: 18.75rem;
  height: 283px;
  height: 17.6875rem;
  background-image: url(../img/audition-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: contain;
  position: relative;
}
@media screen and (max-width: 767px) {
  .audition__item {
    width: 13.125rem;
    height: 12.375rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.audition__item:last-child {
  margin-left: 50px;
  margin-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .audition__item:last-child {
    margin-left: auto;
  }
}

.audition__item p {
  position: absolute;
  top: 47%;
  left: 53%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.75;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .audition__item p {
    font-size: 1rem;
  }
}

.audition__items:after {
  display: block;
  content: "";
  max-width: 369px;
  max-width: 23.0625rem;
  max-height: 422px;
  max-height: 26.375rem;
  width: 27vw;
  height: 31vw;
  background-image: url(../img/audition-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  top: -50px;
  top: -3.125rem;
  left: 73%;
}

.flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .flow-item {
    padding-top: 0.9375rem;
  }
}

.flow-item__number {
  font-size: 30px;
  font-size: 1.875rem;
  text-align: center;
  padding-top: 10px;
  padding-top: 0.625rem;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  width: 100px;
  width: 6.25rem;
  height: 85px;
  height: 5.3125rem;
  background-image: url(../img/flow-triangle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: relative;
  display: block;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .flow-item__number {
    font-size: 1.125rem;
    padding-top: 0.1875rem;
    width: 3.125rem;
    height: 2.625rem;
  }
}

.flow-item__body {
  width: calc(100% - 7.5rem);
  margin-left: 20px;
  margin-left: 1.25rem;
  padding-bottom: 33px;
  padding-bottom: 2.0625rem;
  border-bottom: 1px solid #cccccc;
  position: relative;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .flow-item__body {
    width: calc(100% - 3.75rem);
    margin-left: 0.3125rem;
    padding-bottom: 0.9375rem;
    padding-top: 0;
  }
}

.flow-item:last-child .flow-item__body {
  border-bottom: none;
}

.flow-item__title {
  color: #2dac84;
  font-weight: 700;
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .flow-item__title {
    font-size: 1.25rem;
  }
}

.flow-item__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .flow-item__text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.flow-item__body ul {
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .flow-item__body ul {
    padding-top: 0.3125rem;
    padding-bottom: 0.1875rem;
  }
}

.flow-item__body li {
  padding-left: 2em;
  text-indent: -2em;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .flow-item__body li {
    font-size: 0.75rem;
    line-height: 1.3;
  }
}

.flow-item__body span {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  padding-top: 7px;
  padding-top: 0.4375rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .flow-item__body span {
    font-size: 0.75rem;
    padding-top: 0.25rem;
  }
}

.flow-item__body:before {
  content: "";
  display: block;
  width: 3px;
  width: 0.1875rem;
  height: 100%;
  background: #2dac84;
  position: absolute;
  left: -71px;
  left: -4.4375rem;
  top: 80px;
  top: 5rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .flow-item__body:before {
    width: 0.125rem;
    left: -1.9375rem;
    top: 1.25rem;
  }
}

.flow-item:last-child .flow-item__body:before {
  height: 120%;
}

.flow {
  background: #ecf8f4;
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .flow {
    padding-top: 0.4375rem;
  }
}

.flow__items {
  background: #fff;
  padding: 0px 53px 5px;
  padding: 0rem 3.3125rem 0.3125rem;
  position: relative;
  top: 40px;
  top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .flow__items {
    padding: 0 0.625rem 0.1875rem;
    top: 1.25rem;
  }
}

.footer {
  width: 100%;
  background-image: url(../img/footer-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  padding-top: 104px;
  padding-top: 6.5rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 3.25rem;
    padding-bottom: 3.125rem;
  }
}

.footer__copy {
  max-width: 695px;
  max-width: 43.4375rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    max-width: 28.125rem;
    padding-top: 2.8125rem;
  }
}

.footer__btn {
  max-width: 695px;
  max-width: 43.4375rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  margin-top: 0.9375rem;
  display: block;
}

.footer__inner {
  position: relative;
}

.footer__number {
  position: absolute;
  top: 0;
  left: 79px;
  left: 4.9375rem;
}
@media screen and (max-width: 767px) {
  .footer__number {
    left: calc(20px + 0.625rem);
  }
}

.point-item {
  width: calc(33.33333% - 0.83333rem);
  margin-right: 20px;
  margin-right: 1.25rem;
  background: #fbfefd;
  border-radius: 0.3125rem;
  -webkit-box-shadow: 0 0 0.75rem rgba(221, 242, 235, .9);
          box-shadow: 0 0 0.75rem rgba(221, 242, 235, .9);
  padding: 8px 0px 25px;
  padding: 0.5rem 0rem 1.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point-item {
    max-width: 15.625rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0.25rem 0 0.75rem;
  }
}

.point-item:nth-child(3n) {
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .point-item:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.point-item__number {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding-top: 60px;
  padding-top: 3.75rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .point-item__number {
    font-size: 1.5rem;
    padding-top: 2.5rem;
  }
}

.point-item__number span {
  font-size: 16px;
  font-size: 1rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .point-item__number span {
    font-size: 0.75rem;
  }
}

.point-item__number:before {
  content: "";
  width: 143px;
  width: 8.9375rem;
  height: 174px;
  height: 10.875rem;
  display: block;
  background-image: url(../img/point-triangle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .point-item__number:before {
    width: 6.25rem;
    height: 7.5625rem;
  }
}

.point-item:nth-child(even) .point-item__number:before {
  -webkit-transform: translateX(-50%) scale(-1, 1);
          transform: translateX(-50%) scale(-1, 1);
}

.point-item__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.68;
  letter-spacing: -0.04em;
  padding-top: 61px;
  padding-top: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .point-item__text {
    font-size: 0.875rem;
    padding-top: 2.5rem;
  }
}

.point-item__text span {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, #fffc00));
  background: linear-gradient(transparent 70%, #fffc00 30%);
}

.point-item:nth-child(2) {
  top: 40px;
  top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .point-item:nth-child(2) {
    top: 0;
  }
}

.point-item:nth-child(3) {
  top: 80px;
  top: 5rem;
}
@media screen and (max-width: 767px) {
  .point-item:nth-child(3) {
    top: 0;
  }
}

.point-item:nth-child(4) {
  top: 20px;
  top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .point-item:nth-child(4) {
    top: 0;
  }
}

.point-item:nth-child(5) {
  top: 60px;
  top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .point-item:nth-child(5) {
    top: 0;
  }
}

.point-item:nth-child(6) {
  top: 100px;
  top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .point-item:nth-child(6) {
    top: 0;
  }
}

.point {
  padding-top: 40px;
  padding-top: 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point {
    padding-top: 1.25rem;
  }
}

.point:before {
  content: "";
  display: block;
  background: #ecf8f4;
  width: 83vw;
  height: 98%;
  position: absolute;
  top: 25px;
  top: 1.5625rem;
  left: 0;
  border-radius: 0 0.625rem 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .point:before {
    top: 0.8125rem;
  }
}

.point__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 258px;
  padding-left: 16.125rem;
  padding-top: 25px;
  padding-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .point__items {
    padding-left: 8.0625rem;
    padding-top: 0.8125rem;
    margin-top: -25rem;
  }
}

.point__inner {
  position: relative;
}

.point__inner:before {
  content: "";
  display: block;
  width: 428px;
  width: 26.75rem;
  height: 797px;
  height: 49.8125rem;
  background-image: url(../img/point-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  top: 45px;
  top: 2.8125rem;
  left: -105px;
  left: -6.5625rem;
}
@media screen and (max-width: 767px) {
  .point__inner:before {
    width: 13.375rem;
    height: 24.875rem;
    position: sticky;
    margin-left: -3.75rem;
  }
}

.footer-link .company-link {
  margin-bottom: .5rem;
}

.footer-link {
  background-color: #2DAC84;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

/*# sourceMappingURL=styles.css.map */
