@charset "UTF-8";
@media screen and (min-width: 769px) {
  .pc-none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .mtop1 {
    margin-top: 1rem !important;
  }
}

:-webkit-any(article, aside, nav, section) h1 {
  margin-block-end: 0;
}

@media screen and (min-width: 769px) {
  .main-visual {
    text-align: center;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
    overflow: hidden;
  }
  .main-visual .visual-content {
    position: relative;
    max-height: 100%;
  }
  .main-visual .visual-content img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.youtube {
  padding: 2rem;
  text-align: center;
  background: url(/assets/img/bg-youtube.webp) no-repeat;
  background-size: contain;
  background-position: bottom;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .youtube {
    padding: 1rem;
  }
}
.youtube .video {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.youtube .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-aqua {
  background: url(/assets/img/bg-aqua.webp) no-repeat;
  background-size: cover;
}

.bg-blue {
  background-color: #F3F8F9;
}

.accent {
  font-size: 1.2rem;
  letter-spacing: 10px;
  text-align: center;
  color: #737373;
}
.accent span {
  color: #65ADFF;
}
@media screen and (max-width: 768px) {
  .accent {
    font-size: 0.8rem;
    padding: 0 16px;
    letter-spacing: 6px;
  }
}

.note {
  font-size: 0.8rem;
}

.apply-button {
  padding: 32px 0;
  margin: 16px 0;
}
@media screen and (max-width: 768px) {
  .apply-button {
    padding: 32px 16px;
    margin: 0px;
  }
}

.apply-button,
.fixed-apply-button {
  text-align: center;
}
.apply-button p,
.fixed-apply-button p {
  text-align: center;
}
.apply-button .button,
.fixed-apply-button .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.2s ease;
  pointer-events: none;
  margin: 1rem 0;
  padding: 24px;
  background: #ccc; /*オーディション終了時*/
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .apply-button .button,
  .fixed-apply-button .button {
    width: 680px;
  }
}
@media screen and (max-width: 768px) {
  .apply-button .button,
  .fixed-apply-button .button {
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
    font-size: 1.8rem;
    margin: 1rem 0 0.5rem;
  }
}
.apply-button .button::before,
.fixed-apply-button .button::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("/assets/img/mic-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.apply-button .button::after,
.fixed-apply-button .button::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin: 0 0 4px 10px;
  background-image: url("/assets/img/arrow-icon-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  position: relative;
  left: inherit;
  transform: none;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.2s ease;
  pointer-events: none;
  border: 2px #388BF3 solid;
  color: #388BF3;
  font-size: 1.5rem;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .secondary-button {
    width: 698px;
    padding: 16px;
    margin: 1.8rem 0 1rem;
  }
}
@media screen and (max-width: 768px) {
  .secondary-button {
    font-size: 1.2rem;
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    margin: 0;
  }
}
.secondary-button:hover {
  background: #388BF3;
  color: #fff;
  transform: translateY(-2px);
}
.secondary-button:hover:after {
  background-image: url("/assets/img/arrow-icon-white.svg");
}
.secondary-button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 0 4px 10px;
  background-image: url("/assets/img/arrow-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  position: relative;
  left: inherit;
  transform: none;
}

.about {
  padding-bottom: 4rem;
}
.about .video-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  list-style: none;
  padding: 0;
}
.about .video-list iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 8px;
}
.about li {
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .about {
    padding-bottom: 1rem;
  }
  .about .video-list {
    grid-template-columns: 1fr;
  }
  .about li:last-of-type {
    margin-top: 1rem;
  }
}
.about .inner {
  border-radius: 10px;
  max-width: 900px;
  margin: 0px auto;
  padding: 32px;
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about .inner {
    margin: 16px;
    padding: 16px;
  }
}
.about .inner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #737373;
  font-family: "Genei latego";
  border-bottom: 1px dotted #8ECFFF;
  padding-bottom: 0.8rem;
  border-width: 4px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .about .inner h2 {
    font-size: 1.8rem;
    margin: 0.8rem 0;
  }
}
.about .inner p {
  padding: 1rem;
}

.requirements {
  padding: 1rem 0 0;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .requirements {
    padding: 0.5rem 0 0;
  }
}
.requirements h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #737373;
}
@media screen and (max-width: 768px) {
  .requirements h2 {
    font-size: 1.8rem;
    margin: 0.8rem 0;
  }
}
.requirements .subtitle {
  text-align: center;
  font-weight: bold;
  font-size: 1.8em;
  padding-bottom: 20px;
  color: #EC5A97;
}
@media screen and (max-width: 768px) {
  .requirements .subtitle {
    font-size: 1.3em;
  }
}
@media screen and (min-width: 769px) {
  .requirements .fish-circle-bg {
    background: url(/assets/img/fish-circle-bg.webp) no-repeat;
    position: absolute;
    z-index: -1;
    background-size: contain;
    width: 800px;
    height: 800px;
    left: 100px;
    top: 120px;
  }
  .requirements .fish-circle-bg02 {
    background: url(/assets/img/fish-circle-bg.webp) no-repeat;
    position: absolute;
    z-index: -1;
    background-size: contain;
    width: 800px;
    height: 800px;
    right: 100px;
    top: 820px;
  }
  .requirements .fish-circle-bg03 {
    background: url(/assets/img/fish-circle-bg.webp) no-repeat;
    position: absolute;
    z-index: -1;
    background-size: contain;
    width: 800px;
    height: 800px;
    left: 100px;
    top: 1620px;
  }
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  .requirements .rotate {
    animation: rotate 12s infinite linear;
  }
  .requirements.scroll-end {
    background-attachment: scroll;
  }
}
.requirements .req-inner:first-of-type {
  margin-top: 2rem;
}
.requirements .req-inner {
  border-radius: 8px;
  background-color: #fff;
  padding: 32px;
  text-align: center;
  margin: 0px auto 32px;
  max-width: 900px;
  /*選考フロー*/
}
@media screen and (max-width: 768px) {
  .requirements .req-inner {
    padding: 16px;
    margin: 0px 16px 16px;
    max-width: 100%;
    box-sizing: border-box;
  }
}
.requirements .req-inner h3 {
  font-weight: bold;
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #20313d;
  margin: 0;
  /*下線*/
  padding-bottom: 5px;
  position: relative;
  border-bottom: 2px solid #ededed; /*右：グレー*/
}
.requirements .req-inner h3 svg {
  width: 25px;
  height: 18px;
  fill: #65adff;
  background-image: url(/assets/img/fish-icon.svg);
  background-size: 100%;
}
.requirements .req-inner h3::before {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 30%;
  height: 2px;
  background: #65adff; /*左：ブルー*/
}
.requirements .req-inner ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: block;
}
.requirements .req-inner ul li {
  position: relative;
  padding-left: 24px;
  font-size: 0.875rem;
  color: #20313d;
  text-align: left;
  margin: 0.5rem 0;
}
.requirements .req-inner ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 0.75em;
  height: 0.75em;
  background-color: #65adff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .requirements .req-inner h3 {
    font-size: 1.25rem;
  }
  .requirements .req-inner h3::after {
    background-color: #65adff;
  }
  .requirements .req-inner ul li {
    font-size: 0.75rem;
  }
}
.requirements .req-inner p.schedule {
  color: #EC5A97;
  font-size: 1.2rem;
  margin: 1rem 0.5rem;
}
@media screen and (max-width: 768px) {
  .requirements .req-inner p.schedule {
    font-size: 1rem;
  }
}
.requirements .req-inner .selection-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0px 16px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .requirements .req-inner .selection-flow {
    gap: 32px;
  }
}
.requirements .req-inner .selection-flow .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  width: calc(33.3333333333% - 44px);
}
@media screen and (max-width: 768px) {
  .requirements .req-inner .selection-flow .step {
    width: 100%;
    text-align: left;
  }
}
.requirements .req-inner .selection-flow .step .step-header {
  background-color: #fff;
  border: 2px solid #65ADFF;
  border-radius: 8px;
  padding: 16px;
  width: calc(100% - 16px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .requirements .req-inner .selection-flow .step .step-header {
    padding: 8px;
  }
}
.requirements .req-inner .selection-flow .step .step-header .step-label {
  display: inline-block;
  background-color: #65ADFF;
  color: #fff;
  border-radius: 9999px;
  padding: 4px 12px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .requirements .req-inner .selection-flow .step .step-header .step-label {
    margin: 0px 8px 0px 0px;
  }
}
.requirements .req-inner .selection-flow .step .step-header .step-title {
  font-size: 1.5rem;
  color: #20313D;
}
@media screen and (max-width: 768px) {
  .requirements .req-inner .selection-flow .step .step-header .step-title {
    font-size: 1rem;
  }
}
.requirements .req-inner .selection-flow .step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -38px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #F1A5DE;
  display: block;
}
@media screen and (max-width: 768px) {
  .requirements .req-inner .selection-flow .step::after {
    transform: rotate(90deg);
    top: 110%;
    right: 50%;
  }
}
.requirements .req-inner .selection-flow .step:last-child::after {
  display: none;
}
@media (max-width: 798px) {
  .requirements .req-inner .selection-flow {
    flex-direction: column;
    align-items: center;
  }
  .requirements .req-inner .selection-flow .step::after {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .fixed-apply-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #388BF3, #72F0FE);
    color: #fff;
    text-align: center;
    padding: 0;
    font-size: 16px;
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }
  .fixed-apply-button .button {
    margin: 0;
  }
  .fixed-apply-button.visible {
    transform: translateY(0);
    opacity: 1;
  }
  .fixed-apply-button a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
  }
}
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
  will-change: opacity, transform;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease-out forwards;
}

.footer-space {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .footer-space {
    padding-bottom: 60px;
  }
}

#footer {
  background: #65ADFF !important;
  color: #fff;
  margin-top: 0px !important;
}
@media screen and (max-width: 768px) {
  #footer {
    padding-bottom: 80px;
  }
}
#footer a {
  color: #fff;
}
#footer svg path {
  fill: #65ADFF;
}
#footer #footer-inner .footer-nav li a::after {
  background: #fff !important;
}
#footer #footer-inner, #footer .logo, #footer .footer-links {
  background: #65ADFF !important;
}
#footer .logo a > img {
  filter: brightness(1000%);
}
#footer .footer-links a {
  color: #fff !important;
}
#footer .footer-links a:hover {
  color: #fff !important;
  opacity: 0.7;
}

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