@charset "UTF-8";

/* -------------------------------------
  base
------------------------------------- */

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-weight: normal;
  color: #333;
}

.button {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

img {
  width: 100%;
  vertical-align: top;
}

strong {
  font-weight: 700;
}

*:focus-visible {
  outline: 2px solid rgb(15, 15, 218);
}

a, button {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  a:hover, button:hover {
    opacity: 0.7;
  }
}

.is-pc {
  display: block;
}

.is-sp {
  display: block;
}

.d-ib {
  display: inline-block;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3vw;
  box-sizing: content-box;
}

.inner-s {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 3vw;
  box-sizing: content-box;
}

.font-josefin {
  font-family: "Josefin Sans";
}

.more-btn {
  display: grid;
  place-items: center;
  width: 240px;
  height: 52px;
  margin: 0 auto;
  background-color: #333;
  border-radius: 26px;
  cursor: pointer;
}

.more-btn span {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  padding-right: 20px;
}

.more-btn span::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background: url(../img/more-btn-arrow.png) no-repeat center center/contain;
}

.more-btn.btn-news span::after {
  content: "もっと見る";
  color: #fff;
}

.more-btn.btn-faq span::after {
  content: "質問をもっと見る";
  color: #fff;
}

.more-btn.is-open span::after {
  content: "閉じる";
}

.more-btn.is-open span::before {
  transform: translateY(-50%) rotate(180deg);
}

.hidden-area {
  display: none;
}

.orange-marker {
  display: inline;
  background-color: rgba(253, 164, 64, 0.3);
}

.apply-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10;
}

.apply-btn a {
  position: relative;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  width: 180px;
  height: 180px;
  padding-bottom: 8px;
  border-radius: 50%;
  background-image: linear-gradient(45deg, rgb(255, 106, 136), rgb(255, 154, 139));
  transition: transform 0.3s;
}
@media (any-hover: hover) {
  .apply-btn a:hover {
    transform: scale(1.06);
    opacity: 1;
  }
}

.apply-btn a::before, .apply-btn a::after {
  position: absolute;
  content: "";
}

.apply-btn a::before {
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 10px;
  background: url(../img/more-btn-arrow.png) no-repeat center center/contain;
}

.apply-btn a::after {
  width: 166px;
  height: 166px;
  top: 7px;
  left: 7px;
  background: url(../img/apply-circle.svg) no-repeat center center/contain;
  animation: rotation 30s linear infinite;
}

@-webkit-keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* -------------------------------------
  header
------------------------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 0 3.125vw;
  transition: background-color 0.3s;
  z-index: 100;
}

.header.is-fixed {
  background-color: #fff;
}

.header__nav {
  height: inherit;
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 60px;
  height: inherit;
}

.header__list {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.34;
}

.header__list.app {
  background-image: linear-gradient(45deg, rgb(255, 106, 136), rgb(255, 154, 139));
}

.header__list a, .header__list button {
  position: relative;
  cursor: pointer;
}

.header__list a::before, .header__list button::before {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: #333;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.2s;
}
@media (any-hover: hover) {
  .header__list a:hover, .header__list button:hover {
    opacity: 1;
  }
  .header__list a:hover::before, .header__list button:hover::before {
    transform: scale(1, 1);
  }
}


/* -------------------------------------
  mv
------------------------------------- */

.mv {
  width: 100%;
  margin-top: 100px;
  padding: 0 3.125vw;
}

.mv__content {
  display: flex;
  align-items: center;
  gap: 3.125vw;
}

.mv__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 60.5555555556%;
}

.mv__image-wrap {
  display: contents;
}

.mv__desc {
  flex: 1;
  margin-top: -10%;
}

.audition-title {
  font-size: clamp(3.2rem, 2.2916666667vw, 4.4rem);
  font-weight: 700;
  line-height: 1.36;
  font-feature-settings: "palt";
}

.deadline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: clamp(1.8rem, 1.25vw, 2.4rem);
  font-weight: 700;
  margin-top: 20px;
}

.deadline__title {
  flex-shrink: 0;
  padding: 3px 20px;
  background-color: #fff;
  border: 2px solid #333;
}

.mv-bg {
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 1560/800;
  width: 81.25vw;
  background-image: linear-gradient(45deg, rgba(212, 18, 99, 0.16), rgba(156, 17, 145, 0.16) 25%, rgba(23, 164, 183, 0.16) 50%, rgba(240, 152, 15, 0.16) 75%, rgba(240, 110, 17, 0.16));
  background-size: 200% 200%;
  animation: bggradient 20s ease infinite;
  z-index: -1;
}

@-webkit-keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* -------------------------------------
  lead, category
------------------------------------- */

.top-movie {
  margin-bottom: 160px;
}

.top-movie iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

.lead {
  position: relative;
  font-weight: 500;
  text-align: center;
  margin-top: 180px;
  padding-bottom: 130px;
}

.lead-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 80px;
  z-index: 1;
}
.lead-line::before {
  position: absolute;
  content: "";
  top: 0;
  width: 1px;
  height: 80px;
  opacity: 0;
  background-color: #000;
  animation: pathmove 1.6s ease-in-out infinite;
}

@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 80px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 80px;
    opacity: 0;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 80px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 80px;
    opacity: 0;
  }
}
.lead__title {
  /* font-size: 6.8rem; */
  font-size: 3.4rem;
  font-weight: 500;
  /* line-height: 1.78; */
  line-height: 1.7;
  letter-spacing: 0.15em;
  color: #fa0d6c;
  margin-top: 80px;
}

.lead__text {
  font-size: clamp(1.9rem, 1.25vw, 2.4rem);
  font-weight: 500;
  line-height: 2.08;
  letter-spacing: -0.04em;
  margin-top: 50px;
}

.lead__copyright {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 100px;
}

.lead__copyright p {
  font-size: 1.2rem;
  text-align: right;
  font-feature-settings: "palt";
}

.lead__copyright img {
  width: 50px;
}

.category {
  position: relative;
  margin-top: -40px;
  padding: 108px 0 90px;
  overflow-x: hidden;
  background: url(../img/bg-circle.png) no-repeat center top/auto 100%;
}

.category__lead {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6875;
  text-align: center;
}

.category__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 3vw;
  box-sizing: content-box;
  margin-top: 40px;
}

.category__items {
  text-align: center;
  width: 47.4%;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.category__items:nth-of-type(1) .category__head {
  background-image: linear-gradient(45deg, rgb(255, 110, 108), rgb(255, 139, 108));
}

.category__items:nth-of-type(1) .category__head::before {
  background-color: #ff6e6c;
}

.category__items:nth-of-type(2) .category__head {
  background-image: linear-gradient(45deg, rgb(186, 60, 184), rgb(196, 63, 138));
}

.category__items:nth-of-type(2) .category__head::before {
  background-color: #ba3cb8;
}

.category__head {
  position: relative;
  display: grid;
  place-items: center;
  height: 150px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.category__head::before {
  position: absolute;
  content: "";
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  width: 27px;
  height: 13px;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.category__title {
  font-size: clamp(3rem, 1.875vw, 3.6rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.category__title span {
  font-size: clamp(2.6rem, 1.6666666667vw, 3.2rem);
}

.category__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(2rem, 1.25vw, 2.4rem);
  font-weight: 700;
  height: 180px;
  padding: 20px;
}

.category__text span {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 10px 0 15px;
  padding: 4px 12px;
  background-color: #eee;
}
.category__items:nth-of-type(1) .category__text span {
  margin-bottom: 30px;
}


/* -------------------------------------
  overview
------------------------------------- */

.overview {
  position: relative;
  padding: 165px 0 103px;
}

.overview__box {
  font-weight: 700;
  text-align: center;
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 0 18px 25px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.overview__box + .overview__box {
  margin-top: 64px;
}

.overview__text {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: -6px;
}

.overview__dt {
  font-size: 2.8rem;
  line-height: 1.36;
  letter-spacing: 0.01em;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 2px 1.5em;
  background-color: #333;
  transform: translateY(-50%);
}

.overview__dd {
  font-size: clamp(2.4rem, 1.6666666667vw, 3.2rem);
  margin-top: 8px;
}

.overview__list {
  position: relative;
  font-size: clamp(1.8rem, 1.0416666667vw, 2rem);
  text-align: left;
  padding: 15px 18px 15px 72px;
}

.overview__list:nth-of-type(n+2) {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* .overview__list:last-of-type {
  padding-bottom: 0;
} */

.overview__list::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  width: 20px;
  height: 14px;
  background: url(../img/check.svg);
}

.overview__bg {
  position: absolute;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
  width: 100%;
  left: 0;
  z-index: -1;
}

.overview__bg.bg-top {
  top: 0;
}

.overview__bg.bg-bottom {
  bottom: -8%;
}

.overview__bg-text {
  font-size: 26rem;
  font-weight: 600;
  flex: 0 0 auto;
  white-space: nowrap;
  background-image: linear-gradient(90deg, rgba(212, 18, 99, 0.1), rgba(156, 17, 145, 0.1) 25%, rgba(23, 164, 183, 0.1) 50%, rgba(240, 152, 15, 0.1) 75%, rgba(240, 110, 17, 0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.3em;
}

.bg-top .overview__bg-text:nth-of-type(odd).active {
  animation: loop 180s -90s linear reverse infinite;
}

.bg-top .overview__bg-text:nth-of-type(even).active {
  animation: loop2 180s linear reverse infinite;
}

.bg-bottom .overview__bg-text:nth-of-type(odd).active {
  animation: loop 180s -90s linear infinite;
}

.bg-bottom .overview__bg-text:nth-of-type(even).active {
  animation: loop2 180s linear infinite;
}

@-webkit-keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}


/* -------------------------------------
  news
------------------------------------- */
.news {
  padding: 60px 0 90px;
  background-color: #f5f5f5;
}

.news__wrap {
  display: flex;
  gap: 50px;
}

.news__hgroup {
  position: relative;
  writing-mode: vertical-rl;
  padding-right: 60px;
}

.news__title-ja {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.news__title-en {
  position: absolute;
  top: 3px;
  right: 0;
  font-size: 6rem;
  font-weight: 600;
  width: fit-content;
  background-image: linear-gradient(180deg, rgba(212, 18, 99, 0.16), rgba(156, 17, 145, 0.16) 25%, rgba(23, 164, 183, 0.16) 50%, rgba(240, 152, 15, 0.16) 75%, rgba(240, 110, 17, 0.16));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.news__box {
  flex: 1;
  padding: 40px 40px 35px;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.news__items {
  display: flex;
  padding: 30px 20px 23px;
}

.visible-area .news__items {
  padding-top: 0;
}

.hidden-area .news__items {
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}

.news__date {
  font-size: 1.4rem;
  font-weight: 700;
  width: max(120px, 18.7%);
}

.news__text {
  flex: 1;
  font-size: 1.4rem;
}

.news__text p {
  line-height: 1.5;
}

.news__text p + p {
  margin-top: 1.2em;
}

.news__text a {
  text-decoration: underline;
}


/* -------------------------------------
  wayto
------------------------------------- */

.wayto {
  margin-top: 166px;
}

.wayto__hgroup {
  position: relative;
}

.wayto__title-ja {
  font-size: 4rem;
  font-weight: 700;
  padding-left: 10px;
}

.wayto__title-en {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-32%);
  font-size: clamp(10rem, 8.3333333333vw, 16rem);
  font-weight: 600;
  background-image: linear-gradient(90deg, rgba(212, 18, 99, 0.1), rgba(156, 17, 145, 0.1) 25%, rgba(23, 164, 183, 0.1) 50%, rgba(240, 152, 15, 0.1) 75%, rgba(240, 110, 17, 0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wayto__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 80px;
}

.wayto__side {
  width: clamp(150px, 18.3333333333%, 220px);
  padding-left: 10px;
  z-index: 10;
}

.wayto-side__lists {
  position: sticky;
  top: 110px;
}

.wayto-side__list {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  color: #a4a4a4;
  margin-bottom: 36px;
  padding-left: 22px;
  transition: background-color 0.1s, color 0.1s;
}

.wayto-side__list::before {
  position: absolute;
  content: "";
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.wayto-side__list.is-current {
  color: #333;
}

.wayto-side__list.is-current.examine::before {
  background-color: #ff5685;
}

.wayto-side__list.is-current.join::before {
  background-color: #8c55bf;
}

.wayto-side__list.is-current.apply::before {
  background-color: #fda440;
}

.wayto__main-contnt {
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.wayto__content:nth-of-type(n+2) {
  padding-top: 66px;
}

.wayto__content:not(:last-of-type) {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

.wayto__sub-title {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-left: 22px;
}

.wayto__sub-title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 37px;
}

#examine .wayto__sub-title::before {
  background-color: #ff5685;
}

#join .wayto__sub-title::before {
  background-color: #8c55bf;
}

#apply .wayto__sub-title::before {
  background-color: #fda440;
}

.wayto__exclamation {
  text-align: center;
  padding: 6px 12px;
}

#join .wayto__exclamation {
  border: 2px solid #8c55bf;
}

#apply .wayto__exclamation {
  border: 2px solid #fda440;
  background-color: rgba(255, 255, 255, 0.6);
}

.wayto__exclamation p {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 28px;
}

#join .wayto__exclamation p {
  color: #8c55bf;
}

#join .wayto__exclamation p::before {
  background: url(../img/exclamation-purple.png) no-repeat center center/contain;
}

#apply .wayto__exclamation p {
  color: #fda440;
}

#apply .wayto__exclamation p::before {
  background: url(../img/exclamation-orange.png) no-repeat center center/contain;
}

.wayto__exclamation p::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 17px;
}

.flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#examine .flow {
  padding-bottom: 53px;
}

.flow__content {
  display: flex;
  width: 100%;
}

#apply .flow__content:last-of-type .flow__dt::before {
  display: none;
}

.flow__dt {
  position: relative;
  display: grid;
  place-items: center;
  line-height: 1.23;
  text-align: center;
  color: #fff;
  width: 130px;
  min-height: 90px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

#examine .flow__dt {
  font-size: 2rem;
  font-weight: 700;
  background-color: #ff5685;
}

#apply .flow__dt {
  font-size: 2.2rem;
  font-weight: 600;
  background-color: #fda440;
}

.flow__dt::before {
  position: absolute;
  content: "";
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 12px;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

#examine .flow__dt::before {
  background-color: #ff5685;
}

#apply .flow__dt::before {
  background-color: #fda440;
}

.flow__dt span {
  display: inline-block;
  margin-left: 0.3em;
}

.flow__dd {
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-top: 1px solid rgba(255, 86, 133, 0.24);
  border-right: 1px solid rgba(255, 86, 133, 0.24);
  border-bottom: 1px solid rgba(255, 86, 133, 0.24);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.flow__item {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  width: clamp(160px, 23.4857849197%, 190px);
  margin-right: 30px;
}

#examine .flow__item {
  color: #ff5685;
}

.flow__item::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 84%;
}

#examine .flow__item::before {
  background-color: rgba(255, 86, 133, 0.24);
}

.flow__item span {
  font-size: 1.8rem;
  color: #333;
}

.flow__text {
  flex: 1;
  font-size: 1.6rem;
}

#apply .flow__text {
  font-size: 1.8rem;
}

.flow__text a {
  text-decoration: underline;
}

.flow__text-foot {
  display: block;
  font-size: 1.4rem;
  margin-top: 8px;
}

.flow-examine__img {
  position: absolute;
  bottom: 7px;
  width: 36px;
  height: 36px;
  background: url(../img/pink-arrow.png) no-repeat center center/contain;
}

.flow-examine__img.arrow01 {
  left: 47px;
}

.flow-examine__img.arrow02 {
  left: 50%;
  transform: translateX(-50%);
}

.flow-examine__img.arrow03 {
  right: 47px;
}

.flow__last {
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  width: 100%;
  height: 65px;
  border-radius: 10px;
}

#examine .flow__last {
  background-color: #ff5685;
}

.flow-notes {
  margin-top: 22px;
}

.flow-notes__list {
  font-size: 1.4rem;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 0.4em;
}

.wayto-join__content {
  position: relative;
  padding: 32px 20px 26px;
  border: 1px solid rgba(140, 85, 191, 0.24);
  border-radius: 10px;
}

.wayto-join__content + .wayto-join__content {
  margin-top: 46px;
}

.wayto-join__content:nth-of-type(n+2)::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, -85%);
  width: 48px;
  height: 68px;
  background: url(../img/purple-arrow.png) no-repeat center center/contain;
}

.wayto-join__content:nth-of-type(2) .wayto-join__title {
  display: block;
}

.wayto-join__content:nth-of-type(2) .wayto-join__title p {
  margin-top: 8px;
}

.wayto-join__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wayto-join__title span {
  display: inline-block;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  width: 110px;
  height: 32px;
  padding-top: 2px;
  background-color: #8c55bf;
}

.wayto-join__title p {
  font-size: 2rem;
  font-weight: 700;
}

.join-pictures {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.join-pictures__title {
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #8c55bf;
  width: 100%;
  height: 30px;
  background-color: rgba(241, 232, 249, 0.4);
  border-radius: 15px;
}

.join-pictures__img {
  margin-top: 10px;
}

.join-pictures__img img {
  padding: 10px;
  border: 1px solid #e7e7e7;
}

.join-pictures__caption {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
}

.wayto-notes {
  padding: 16px 20px;
}

#join .wayto-notes {
  background-color: rgba(241, 232, 249, 0.4);
}

#apply .wayto-notes {
  background-color: rgba(255, 255, 255, 0.6);
}

.wayto-notes__title {
  font-size: 1.6rem;
  font-weight: 700;
}

#join .wayto-notes__title {
  color: #8c55bf;
}

#apply .wayto-notes__title {
  color: #fda440;
}

.wayto-notes__lists {
  margin-top: 6px;
}

.wayto-notes__list {
  font-size: 1.4rem;
  line-height: 1.85;
  padding-left: 1em;
  text-indent: -1em;
}

.wayto-notes__list a {
  text-decoration: underline;
}

.wayto-join__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.wayto-join__wrap-img {
  width: 53.3049040512%;
}

.wayto-box {
  margin-top: 80px;
  padding: 0 20px 22px;
  border-radius: 10px;
}

#join .wayto-box {
  background-color: rgba(241, 232, 249, 0.4);
}

#apply .wayto-box {
  background-color: rgba(253, 164, 64, 0.1);
}

.wayto-box__title {
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  padding: 4px 10px;
  transform: translateY(-50%);
}

#join .wayto-box__title {
  background-color: #8c55bf;
}

#apply .wayto-box__title {
  background-color: #fda440;
}

.wayto-box__title::before {
  position: absolute;
  content: "";
  top: calc(100% - 1px);
  left: 26px;
  width: 24px;
  height: 12px;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

#join .wayto-box__title::before {
  background-color: #8c55bf;
}

#apply .wayto-box__title::before {
  background-color: #fda440;
}

.join-movie__step {
  display: flex;
  gap: 100px;
}

.join-movie__items {
  position: relative;
  width: 100%;
}

.join-movie__items:nth-of-type(n+2)::before {
  position: absolute;
  content: "";
  top: 50%;
  right: calc(100% + 25px);
  width: 48px;
  height: 68px;
  transform: translateY(-50%) rotate(-90deg);
  background: url(../img/purple-arrow.png) no-repeat center center/contain;
}

.join-movie__title {
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  width: 80px;
  height: 28px;
  padding-top: 2px;
}

#join .join-movie__title {
  color: #8c55bf;
  border: 1px solid #8c55bf;
}

.join-movie__img {
  margin-top: 10px;
}

.join-movie__img figcaption {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 6px;
}

.wayto-box__note {
  font-size: 1.6rem;
  font-weight: 700;
  padding-left: 1em;
  text-indent: -1em;
}

#apply .wayto-box__note {
  color: #fda440;
}

.apply-movie__steps {
  position: relative;
  margin: 24px 0 30px;
}

.apply-movie__steps::before {
  position: absolute;
  content: "";
  top: 0;
  left: 40px;
  width: 2px;
  height: 100%;
  background-color: #fda440;
  z-index: -1;
}

.apply-movie__step {
  display: flex;
  gap: 20px;
}

.apply-movie__step + .apply-movie__step {
  margin-top: 30px;
}

.apply-movie__dt {
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fda440;
  width: 80px;
  height: 28px;
  padding-top: 2px;
  background-color: #fef5eb;
  border: 1px solid #fda440;
}

.apply-movie__dd {
  flex: 1;
  font-size: 1.6rem;
}


/* -------------------------------------
  faq
------------------------------------- */

.faq {
  margin-top: 166px;
}

.faq__hgroup {
  position: relative;
}

.faq__title-ja {
  font-size: 4rem;
  font-weight: 700;
  padding-left: 10px;
}

.faq__title-en {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-32%);
  font-size: clamp(10rem, 8.3333333333vw, 16rem);
  font-weight: 600;
  background-image: linear-gradient(90deg, rgba(212, 18, 99, 0.1), rgba(156, 17, 145, 0.1) 25%, rgba(23, 164, 183, 0.1) 50%, rgba(240, 152, 15, 0.1) 75%, rgba(240, 110, 17, 0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq__content {
  margin: 90px 0 58px;
}

.faq__details {
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

.visible-area .faq__details:first-of-type {
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}

.faq__details[open] .faq__q {
  background-color: #f5f5f5;
}

.faq__details[open] .faq__q .icon::after {
  transform: rotate(0) translateY(-50%);
}

.faq__q {
  position: relative;
  display: flex;
  padding: 30px 50px 30px 20px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.faq__q .def {
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 600;
  width: 40px;
  height: 40px;
  padding-top: 3px;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 50%;
}

.faq__q p {
  flex: 1;
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 20px;
  padding-top: 5px;
}

.faq__q .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}

.faq__q .icon::before, .faq__q .icon::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #333;
}

.faq__q .icon::after {
  transform: rotate(90deg);
  transition: transform 0.2s;
}

.faq__a-inner {
  display: flex;
  padding: 30px 20px;
}

.faq__a-inner .def {
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 600;
  width: 40px;
  height: 40px;
  padding-top: 4px;
  background-color: #f5f5f5;
  border-radius: 50%;
}

.faq__a-inner p {
  flex: 1;
  font-size: 1.6rem;
  padding-left: 20px;
  padding-top: 5px;
}

.faq__a-inner p a {
  text-decoration: underline;
}

.faq-box {
  text-align: center;
  margin-top: 50px;
  padding: 25px;
  border: 4px solid rgba(51, 51, 51, 0.1);
}

.faq-box__lead {
  display: inline;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: rgba(255, 255, 0, 0.2);
}

.faq-box__info {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 20px;
}

.faq-box__note {
  font-size: 1.6rem;
  margin-top: 20px;
}


/* -------------------------------------
  infos
------------------------------------- */

.infos {
  margin-top: 100px;
  padding: 57px 0 60px;
  background-color: #f5f5f5;
}

.infos__content {
  display: flex;
  padding: 40px 0;
}

.infos__content:nth-of-type(n+2) {
  border-top: 1px solid #fff;
}

.infos__title {
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
  width: 250px;
  padding-left: 30px;
}

.infos__title::before {
  position: absolute;
  content: "";
  top: calc(50% + 0.06em);
  left: 10px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 50%;
}

.infos__desc {
  flex: 1;
}

.infos-box {
  height: 400px;
  overflow-y: scroll;
  padding: 20px;
  background-color: #fff;
}

.infos-box ol > li {
  list-style-type: decimal;
  margin-left: 1em;
}

.infos-box ul > li {
  padding-left: 1em;
  text-indent: -1em;
}

.infos-box ul > li::before {
  content: "・";
}

.infos-box li {
  font-size: 1.3rem;
  line-height: 1.62;
}

.infos-box a {
  text-decoration: underline;
}

.infos-box__text {
  font-size: 1.3rem;
  line-height: 1.62;
}

.privacy .infos-box__text:last-of-type {
  margin-top: 1.5em;
}

.infos-box__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 1.5em 0 0.4em;
}

.infos-box__border {
  margin-top: 6px;
  padding: 12px 20px;
  border: 1px solid #ccc;
}

.info__text {
  font-size: 1.6rem;
}

.info-box {
  margin-top: 15px;
  padding: 20px 30px 30px;
  border: 2px solid rgba(51, 51, 51, 0.1);
}

.info-box a {
  text-decoration: underline;
}

.info-box__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 1em;
}

.info-box__title:first-of-type {
  margin-top: 0;
}

.info-box__text {
  font-size: 1.6rem;
}


/* -------------------------------------
  hellopro
------------------------------------- */

.hellopro {
  position: relative;
  padding: 167px 0 140px;
}

.hellopro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(212, 18, 99, 0.16), rgba(156, 17, 145, 0.16) 25%, rgba(23, 164, 183, 0.16) 50%, rgba(240, 152, 15, 0.16) 75%, rgba(240, 110, 17, 0.16));
  background-size: 200% 200%;
  animation: bggradient 20s ease infinite;
  z-index: -2;
}

.hellopro__hgroup {
  position: relative;
  text-align: center;
  margin-bottom: 45px;
}

.hellopro__title-en {
  width: 100%;
  font-size: clamp(8rem, 5.2083333333vw, 10rem);
  font-weight: 600;
  color: #fff;
}

.hellopro__banner-content {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.hellopro__banner {
  max-width: 285px;
  flex: 0 1 15.8%;
}

.hellopro-movie {
  margin-top: 84px;
}

.splide__slide iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.splide__pagination {
  gap: 10px;
  margin-top: 26px;
}

.splide__pagination li {
  position: relative;
}

.splide__pagination li:has(.is-active)::before {
  position: absolute;
  content: "";
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 21px;
  height: 21px;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: -1;
}

.splide__pagination li button {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
}

.splide__pagination li button.is-active {
  background-color: #fff;
}

.splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  cursor: pointer;
}

.splide__arrow::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.splide__arrow--prev {
  left: 2.0833333333%;
}

.splide__arrow--prev::before {
  background-image: url(../img/arrow-prev.png);
}

.splide__arrow--next {
  right: 2.0833333333%;
}

.splide__arrow--next::before {
  background-image: url(../img/arrow-next.png);
}


/* -------------------------------------
  footer
------------------------------------- */

.footer {
  text-align: center;
  color: #fff;
  padding: 60px 0 86px;
  background-color: #333;
}

.footer__text {
  font-size: 1.4rem;
  font-weight: 700;
}

.footer__icon {
  width: 60px;
  margin: 16px auto 0;
}

.footer__small {
  font-size: 1rem;
  margin-top: 50px;
}




/* -------------------------------------
  responsive
------------------------------------- */

@media screen and (min-width: 769px) {
  .is-sp {
    display: none;
  }
}


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

  .inner {
    padding: 0 5.33334vw;
  }

  .inner-s {
    padding: 0 5.33334vw;
  }

  .more-btn {
    width: min(315px, 100%);
  }

  .header {
    top: auto;
    bottom: 0;
    height: 75px;
    padding: 0;
  }

  .header__lists {
    justify-content: center;
    gap: 0;
  }

  .header__list {
    font-size: 1.2rem;
    text-align: center;
    width: 20%;
    height: inherit;
    background-color: #333;
  }

  .header__list:nth-of-type(-n+3) {
    border-right: 1px solid rgba(245, 245, 245, 0.08);
  }

  .header__list a, .header__list button {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
  }

  .mv {
    margin-top: 40px;
    padding: 0 5.3333vw;
  }

  .mv__content {
    display: block;
  }

  .mv__images {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    width: 89.3333333333%;
    margin-left: -5.3333vw;
  }

  .mv__image-wrap {
    display: flex;
    gap: 5px;
  }

  .mv__desc {
    margin-top: 10.6666666667vw;
  }

  .audition-title {
    font-size: 3rem;
  }

  .mv-bg {
    aspect-ratio: 300/660;
    max-height: 1000px;
  }

  .top-movie {
    margin-bottom: 85px;
  }

  .lead {
    margin-top: 140px;
    padding-bottom: 110px;
  }

  .lead__title {
    /* font-size: 3.6rem; */
    font-size: 1.9rem;
    letter-spacing: 0.1em;
    margin-top: 50px;
  }

  .lead__text {
    font-size: 1.8rem;
    line-height: 2;
    margin-top: 35px;
  }

  .lead__copyright {
    font-size: 1.1rem;
    margin-top: 70px;
  }

  .category {
    margin-top: -55px;
    padding: 120px 0 90px;
  }

  .category__lead {
    font-size: 2.6rem;
  }
  
  .category__content {
    padding: 0 5.33334vw;
    flex-direction: column;
    gap: 36px;
    margin-top: 25px;
  }

  .category__items {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }

  .category__head {
    height: 120px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .category__head::before {
    width: 23px;
    height: 11px;
  }

  .category__title {
    font-size: 2.4rem;
  }

  .category__title span {
    font-size: 2.2rem;
  }

  .category__text {
    height: auto;
    padding-bottom: 25px;
  }

  .category__items:nth-of-type(1) .category__text span {
    margin-bottom: 10px;
  }

  .category__text span {
    font-size: 1.6rem;
    margin: 0 0 10px;
    padding: 2px 10px;
  }

  .overview {
    margin-top: 15px;
    padding: 82px 0 74px;
  }

  .overview__box {
    padding: 0 15px 4px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }

  .overview__box + .overview__box {
    margin-top: 55px;
  }

  .overview__text {
    font-size: 1.4rem;
    margin-top: 0;
  }

  .overview__dt {
    font-size: 2rem;
    padding: 0 1em;
  }

  .overview__dd {
    font-size: 2.2rem;
    margin-top: 0;
  }

  .overview__lists {
    margin-top: 5px;
  }

  .overview__list {
    font-size: 1.6rem;
    padding: 16px 15px 16px 38px;
  }

  .overview__list::before {
    left: 4px;
  }

  .overview__list p + p {
    margin-top: 1em;
  }

  .overview__bg.bg-bottom {
    bottom: -3%;
  }

  .overview__bg-text {
    font-size: 13rem;
  }

  .news {
    padding: 35px 0 40px;
  }

  .news__wrap {
    flex-direction: column;
    gap: 16px;
  }

  .news__hgroup {
    writing-mode: horizontal-tb;
    padding-right: 0;
    padding-top: 25px;
  }

  .news__title-ja {
    font-size: 2.8rem;
  }

  .news__title-en {
    font-size: 5rem;
    top: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(212, 18, 99, 0.16)), color-stop(25%, rgba(156, 17, 145, 0.16)), color-stop(50%, rgba(23, 164, 183, 0.16)), color-stop(75%, rgba(240, 152, 15, 0.16)), to(rgba(240, 110, 17, 0.16)));
    background-image: linear-gradient(90deg, rgba(212, 18, 99, 0.16), rgba(156, 17, 145, 0.16) 25%, rgba(23, 164, 183, 0.16) 50%, rgba(240, 152, 15, 0.16) 75%, rgba(240, 110, 17, 0.16));
  }

  .news__box {
    margin-right: calc(50% - 50vw);
    padding: 30px 20px;
  }

  .news__items {
    display: block;
    padding: 20px 12px;
  }

  .news__date {
    font-size: 1.3rem;
  }

  .news__text {
    font-size: 1.3rem;
    margin-top: 10px;
  }

  .wayto {
    margin-top: 90px;
  }

  .wayto__title-ja {
    font-size: 2.8rem;
    padding-left: 0;
  }

  .wayto__title-en {
    font-size: 5rem;
  }

  .wayto__wrap {
    display: block;
    padding-top: 35px;
  }

  .wayto__side {
    position: sticky;
    top: 0;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0;
  }

  .wayto-side__lists {
    position: static;
    display: flex;
  }

  .wayto-side__list {
    position: relative;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-align: center;
    width: 33.3333333333%;
    margin: 0;
    padding: 0;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
  }

  .wayto-side__list::before {
    transition: background-color 0.1s;
  }

  .wayto-side__list:not(:last-child)::before, .wayto-side__list:not(:last-child)::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    border-radius: 0;
  }

  .wayto-side__list:not(:last-child)::before {
    left: calc(100% - 1px);
    background-color: #fff;
    z-index: 3;
  }

  .wayto-side__list:not(:last-child)::after {
    left: 100%;
    background-color: #f0f0f0;
    z-index: 2;
  }

  .wayto-side__list:nth-of-type(n+2) a {
    padding-left: 15px;
  }

  .wayto-side__list a {
    display: block;
    padding: 15px 0;
  }

  .wayto-side__list::before {
    top: 5px;
  }

  .wayto-side__list.is-current {
    color: #fff;
  }

  .wayto-side__list.is-current.examine {
    background-color: #ff5685;
  }

  .wayto-side__list.is-current.join {
    background-color: #8c55bf;
  }

  .wayto-side__list.is-current.apply {
    background-color: #fda440;
  }

  .wayto__main-contnt {
    width: 100%;
  }

  .wayto__content:first-of-type {
    padding-top: 36px;
  }

  .wayto__content:nth-of-type(n+2) {
    padding-top: 50px;
  }

  .wayto__content:not(:last-of-type) {
    padding-bottom: 50px;
  }

  .wayto__sub-title {
    font-size: 2rem;
    margin-bottom: 20px;
    padding-left: 20px;
  }

  .wayto__sub-title::before {
    height: 27px;
  }

  .wayto__exclamation p {
    font-size: 1.5rem;
  }

  #examine .flow {
    padding-bottom: 45px;
  }

  .flow__dt {
    width: 70px;
    min-height: 65px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }

  #examine .flow__dt {
    font-size: 1.8rem;
  }

  #apply .flow__dt {
    font-size: 1.8rem;
  }

  .flow__dt span {
    margin-left: 0;
  }

  .flow__dd {
    padding: 10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  #examine .flow__dd {
    display: block;
  }

  .flow__item {
    font-size: 1.8rem;
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .flow__item::before {
    width: 100%;
    height: 1px;
    top: 100%;
    left: 0;
    right: auto;
  }

  .flow__item span {
    font-size: 1.6rem;
  }

  .flow__text {
    font-size: 1.4rem;
  }

  #apply .flow__text {
    font-size: 1.5rem;
  }

  .flow__text-foot {
    font-size: 1.2rem;
  }

  .flow-examine__img {
    bottom: 8px;
    width: 24px;
    height: 24px;
  }

  .flow-examine__img.arrow01 {
    left: 24px;
  }

  .flow-examine__img.arrow03 {
    right: 12px;
  }

  .flow__last {
    font-size: 2rem;
    height: 60px;
    border-radius: 5px;
  }

  .flow-notes {
    margin-top: 20px;
  }

  .flow-notes__list {
    font-size: 1.3rem;
  }

  .wayto-join__content {
    padding: 22px 10px 20px;
  }
  
  .wayto-join__content + .wayto-join__content {
    margin-top: 30px;
  }

  .wayto-join__content:nth-of-type(n+2)::before {
    width: 32px;
    height: 46px;
  }

  .wayto-join__title {
    display: block;
  }

  .wayto-join__title span {
    font-size: 1.8rem;
    width: 80px;
    height: 28px;
  }

  .wayto-join__title p {
    font-size: 1.6rem;
    margin-top: 8px;
  }

  .join-pictures {
    flex-direction: column;
    gap: 26px;
    margin: 26px 0;
  }

  .join-pictures__title {
    font-size: 1.4rem;
    height: 24px;
    float: right;
    width: 65%;
  }

  .join-pictures__img {
    float: left;
    width: 30%;
    margin-top: 0;
  }

  .join-pictures__img img {
    padding: 4px;
  }

  .join-pictures__caption {
    float: right;
    width: 65%;
    text-align: left;
  }

  .wayto-notes {
    padding: 16px 10px;
  }

  .wayto-notes__title {
    font-size: 1.3rem;
  }

  .wayto-notes__list {
    font-size: 1.3rem;
  }

  .wayto-join__wrap {
    display: block;
  }

  .wayto-join__wrap-img {
    width: 64%;
    margin: 20px auto 0;
  }

  .wayto-box {
    padding: 0 10px 16px;
    border-radius: 5px;
  }

  #apply .wayto-box {
    margin-top: 60px;
  }

  .wayto-box__title {
    font-size: 1.8rem;
  }

  .join-movie__step {
    flex-direction: column;
    gap: 60px;
    width: max(225px, 71%);
    margin: 5px auto 0;
  }

  .join-movie__items:nth-of-type(n+2)::before {
    top: -50px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 46px;
  }

  .join-movie__title {
    font-size: 1.6rem;
    width: 70px;
    height: 24px;
  }

  .join-movie__img figcaption {
    font-size: 1.4rem;
  }

  .wayto-box__note {
    font-size: 1.4rem;
  }

  .apply-movie__steps {
    margin: 18px 0;
  }

  .apply-movie__steps::before {
    display: none;
  }

  .apply-movie__step {
    flex-direction: column;
    gap: 6px;
  }

  .apply-movie__step + .apply-movie__step {
    margin-top: 18px;
  }

  .apply-movie__dt {
    font-size: 1.6rem;
    width: 70px;
    height: 24px;
  }

  .apply-movie__dd {
    font-size: 1.4rem;
  }

  .faq {
    margin-top: 90px;
  }

  .faq__title-ja {
    font-size: 2.8rem;
    padding-left: 0;
  }

  .faq__title-en {
    font-size: 5rem;
  }

  .faq__content {
    margin: 36px calc(50% - 50vw) 32px;
  }

  .faq__q {
    padding: 20px 50px 20px 5.3333vw;
  }

  .faq__q p {
    font-size: 1.5rem;
    padding-top: 7px;
  }

  .faq__a-inner p {
    font-size: 1.4rem;
    padding-top: 7px;
  }

  .faq-box {
    margin-top: 30px;
  }
  
  .faq-box__lead {
    font-size: 1.4rem;
  }

  .faq-box__info {
    font-size: 1.6rem;
  }

  .faq-box__note {
    font-size: 1.4rem;
  }

  .infos {
    margin-top: 60px;
    padding: 30px 0;
  }

  .infos__content {
    display: block;
    padding: 30px 0;
  }

  .infos__title {
    font-size: 1.8rem;
    padding-left: 20px;
  }

  .infos__title::before {
    left: 0;
  }

  .infos__desc {
    margin-top: 20px;
  }

  .infos-box {
    height: 200px;
  }

  .info__text {
    font-size: 1.4rem;
  }

  .info-box {
    padding: 14px 20px 20px;
  }

  .info-box__title {
    font-size: 1.4rem;
  }

  .info-box__text {
    font-size: 1.4rem;
  }

  .hellopro {
    padding: 55px 0 64px;
  }

  .hellopro__hgroup {
    margin-bottom: 30px;
  }

  .hellopro__title-en {
    font-size: 3.8rem;
  }

  .hellopro__banner-content {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    max-width: 680px;
    margin: 15px auto 0;
    padding: 0 5.3333vw;
  }

  .hellopro__banner {
    flex: none;
    width: calc(50% - 7.5px);
  }

  .hellopro-movie {
    margin-top: 60px;
  }

  .splide__arrow {
    display: none;
  }

  .footer {
    padding: 60px 0 105px;
  }

  .footer__small {
    margin-top: 40px;
  }
}


@media screen and (max-width: 374px) {
  .wayto__title-en {
    font-size: 4rem;
  }

  .faq__title-en {
    font-size: 4rem;
  }

  .hellopro__title-en {
    font-size: 3.2rem;
  }
}


/* -------------------------------------
  copy protection
------------------------------------- */

.nocopy {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  position: relative;
}

.nocopy::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 10;
}

@media print {
  .no-print {
    display: none !important;
  }
}