/*
=======================================

Filename: top.css

=======================================
Table of Contents:
// top common style
// top__kv
*/

/* ==========================

// top common style

========================== */
.top #common_scroll_content {
  margin-top: -10rem;
}

/* ==========================
// loading style
========================== */
.loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.5s linear;
  z-index: 100;

  background: url('../img/common/common_main_bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: repeat-y;
}

/*ローディング画面を非表示にする*/
.loading.loaded {
  opacity: 0;
  visibility: hidden;
}


/* ==========================

// top__kv

========================== */
.top_kv {
  position: relative;
  height: 100%;
  width: 100vw;
  z-index: 1;
}

#responsive_video {
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0% 100%);
}

.top_kv_title {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 20%;
  width: 18%;
  min-width: 28.4rem;
  z-index: 100;
}

.top_kv_marquee {
  position: absolute;
  width: 100%;
  background-color: var(--sub_color);
  white-space: nowrap;
  overflow: hidden;
  transform: rotate(2.5deg);
  bottom: 3%;
}

.top_kv_marquee_content {
  font-family: "Comfortaa", sans-serif;
  display: flex;
  font-size: 2.2rem;
  width: 200%;
  padding: .7rem 0 .3rem;
  animation: marquee-loop 20s infinite linear;
}

@keyframes marquee-loop {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}

@media screen and (max-width:767px) {
  #responsive_video {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
  }

  .top_kv_title {
    width: 23rem;
    min-width: initial;
  }

  .top_kv_marquee {
    transform: rotate(5deg);
    bottom: 0;
    left: -5%;
    width: 110%;
  }
}


/* ==========================

// top_ambassador

========================== */
.top_ambassador {
  padding-top: 15rem;
  opacity: 0;
}

.top_ambassador.active {
  animation: slideUpFadeIn 0.8s ease-out forwards;
}

.top_ambassador h2::after {
  content: "";
  display: block;
  width: 40rem;
  height: 40rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -13rem;
  opacity: .7;
  z-index: -1;

  background-image: url("../img/top/top_title_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.top_ambassador_introduction_wrap {
  margin: 4rem auto;
}

.top_ambassador_introduction {
  width: 37rem;
  margin: 0 auto 2.4rem;

  --x-gradient: linear-gradient(90deg, var(--sub_color) 0 4rem, transparent 0 calc(100% - 4rem), var(--sub_color) calc(100% - 4rem));
  --y-gradient: linear-gradient(var(--sub_color) 0 4rem, transparent 0 calc(100% - 4rem), var(--sub_color) calc(100% - 4rem));
  position: relative;
  padding: 1rem;
  background-image:
    var(--x-gradient),
    var(--y-gradient),
    var(--x-gradient),
    var(--y-gradient);
  background-repeat: no-repeat;
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  background-position: top, right, bottom, left;
}

.top_ambassador_introduction_main_img {
  width: 100%;
}

.top_ambassador_introduction_main_txt {
  position: relative;
  font-family: "Comfortaa", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  background-color: var(--sub_color);
  padding: 2rem;
  height: 12rem;
}

.top_ambassador_introduction_ambassador_name::after {
  content: "";
  display: inline-block;
  background-image: url("../img/top/top_ambassador_link_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 1.7rem;
  width: 1.7rem;
  margin-left: .5rem;
}

.top_ambassador_introduction_sns_wrap {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 1rem;
}

.top_ambassador_introduction_sns_wrap a img {
  height: 2rem;
}

.top_ambassador_introduction__btn {
  position: absolute;
  width: 9rem;
  bottom: 1.4rem;
  right: 1rem;
}

.top_ambassador_introduction__btn .main_img {

  width: 9rem;
}

.top_ambassador_introduction_main_txt .sub_img {
  position: absolute;
  width: 7.5rem;
  height: auto;
  top: 7.5%;
  left: 0;
  right: 0;
  margin: auto;
  animation: 10s linear infinite rotation;
}

.top_ambassador_introduction__btn:hover .sub_img {
  animation-play-state: paused;
}

.top_ambassador_introduction_marquee {
  position: relative;
  width: 100%;
  white-space: nowrap;
  transform: rotate(-10deg);
  margin-top: 7rem;
  z-index: 10;
}

.top_ambassador_introduction_marquee_content {
  font-family: "Comfortaa", sans-serif;
  display: flex;
  font-size: 2.2rem;
  width: 200%;
  padding: 1rem 0;
  background-color: var(--sub_color);
  animation: marquee-loop02 20s infinite linear;
}

@keyframes marquee-loop02 {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0%);
  }
}

@media screen and (max-width:767px) {
  .top_ambassador_introduction {
    width: 37rem;
  }
}


/* ==========================

// top_news

========================== */
.top_news {
  padding: 9rem 2rem 10rem;
  background-color: rgba(255, 255, 255, 0.5);
  clip-path: polygon(0 0, 100% 6rem, 100% 100%, 0 calc(100% - 6rem));
  margin-top: -6rem;
  opacity: 0;
}

.top_news.active {
  animation: slideUpFadeIn 0.8s ease-out forwards;
}

.top_news h2 {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 2;
  margin-bottom: 1rem;
}

.top_news_list {
  margin-bottom: 1rem;
}

.top_news_list li {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.top_news_list li:not(:last-of-type) {
  margin-bottom: 3rem;
}

.top_news_date {
  font-size: 2rem;
  color: #8E8E8E;
}

.top_news_date span {
  display: block;
  font-size: 1.1rem;
  text-align: center;
}

.top_news_txt {
  font-size: 1.3rem;
  width: 28rem;
}

.top_news_btn {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  transition: .3s;
  cursor: pointer;
}

.btn_text {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: initial;
}

.top_news_btn:hover {
  opacity: .7;
}

.top_news_open {
  font-size: 1rem;
  border-radius: .3rem;
  margin-top: 1rem;
}

.toggle__icon {
  position: relative;
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  border: solid var(--color-main) 1px;
  border-radius: 50%;
  transition: all 0.4s;
}

.toggle__icon:before,
.toggle__icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.1rem;
  height: 1px;
  background: var(--color-main);
  transition: all 0.4s;
  transform: translate(-50%, -50%);
}

.toggle__icon:before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.toggle__icon.open:before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.top_news_none_txt {
  text-align: center;
  color: var(--font_color);
  font-size: 1.4rem;
}

/* ==========================

// top_about

========================== */
.top_about {
  background-color: var(--color-main);
  clip-path: polygon(100% 0, 0 6rem, 0 100%, 100% calc(100% - 6rem));
  padding: 9rem 3rem;
  margin-top: -6rem;
  opacity: 0;
}

.top_about.active {
  animation: slideUpFadeIn 0.8s ease-out forwards;
}

.top_about_main_txt {
  font-size: 1.4rem;
  width: 33rem;
  margin: 3rem auto;
  line-height: 1.8;
  letter-spacing: 0.7px;
}

.top_about_main_txt span {
  font-weight: bold;
}

.top_about .sub_img {
  width: 100%;
}


/* ==========================

// top_benefit

========================== */
.top_benefit {
  padding: 3rem 2rem 3.6rem;
  opacity: 0;
}

.top_benefit.active {
  animation: slideUpFadeIn 0.8s ease-out forwards;
}

.top_benefit h2::after {
  content: "";
  display: block;
  width: 36rem;
  height: 36rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -7rem;
  opacity: .9;
  z-index: -1;

  background-image: url(../img/top/top_title_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.top_benefit_list {
  width: 100%;
  margin: 3rem auto 0;
  border-radius: .5rem;
  overflow: hidden;
}

.top_benefit_list li {
  display: flex;
  margin-bottom: .1rem;
}

.top_benefit_list_num {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Comfortaa", sans-serif;
  font-size: 1.9rem;
  text-align: center;
  line-height: 2;
  background-color: var(--color-main);
  width: 4rem;
}

.top_benefit_list_txt {
  font-size: 1.5rem;
  background-color: var(--sub_color);
  padding: 1rem;
  width: 100%;
}

.top_benefit_list_attention {
  font-size: 1.2rem;
  text-align: center;
  line-height: 2;
  margin: .3rem auto 3rem;
}

/* top_benefit_plize */
.top_benefit_plize {
  border-radius: .5rem;
  overflow: hidden;
  width: 25rem;
  margin: auto;
}

.top_benefit_plize_title {
  background-color: var(--color-main);
  padding: 1rem 0;
  font-size: 1.3rem;
  text-align: center;
}

.top_benefit_plize_title span {
  font-family: "Comfortaa", sans-serif;
  font-size: 2rem;
}

.top_benefit_plize_txt_wrap {
  background-color: var(--sub_color);
  padding: 1rem 1.5rem;
  font-size: 1.8rem;
}

.top_benefit_plize_txt_wrap p {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top_benefit_plize_txt_wrap p:first-child {
  margin-bottom: 1rem;
}

.top_benefit_plize_txt_wrap p::before {
  content: "";
  display: block;
  height: 1rem;
  width: 1rem;
  background-color: var(--color-main);
  border-radius: 5rem;
}


/* ==========================

// top_audition_detail

========================== */
.top_audition_detail {
  background-color: var(--color-main);
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
  opacity: 0;
}

.top_audition_detail.active {
  animation: slideUpFadeIn 0.8s ease-out forwards;
}

.top_audition_detail_table_wrap {
  padding: 7rem 2rem 2rem;
}

.top_audition_detail_table {
  font-family: "Comfortaa", "Noto Sans JP", sans-serif;
  overflow: hidden;
  border-radius: .5rem;
  font-weight: 500;
  margin: 2.5rem auto 0;
}

.top_audition_detail_table tr {
  display: flex;
  border-bottom: solid 1px #EEDFE2;
}

.top_audition_detail_table th,
.top_audition_detail_table td {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 6rem;
  height: auto;
}

.top_audition_detail_table th {
  justify-content: center;
  background-color: #FFF2F5;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: left;
  width: 6.6rem;
}

.top_audition_detail_table td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: normal;
  background-color: var(--sub_color);
  font-size: 1.4rem;
  padding: 1rem;
}

.top_audition_detail_table td span {
  font-size: 1.2rem;
}

.top_audition_detail_entry_btn_wrap {
  background-image: url("../img/top/top_audition_detail_entry_btn_wrap_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 16.5rem 0 13rem;
}

.top_audition_detail_entry_btn {
  width: 33rem;
  margin: 0 auto;
}


/* ==========================

// top_audition_schedule

========================== */
.top_audition_schedule {
  padding: 9rem 2rem 10rem;
  background-color: rgba(255, 255, 255, 0.2);
  clip-path: polygon(0 0%, 100% 0, 100% 95%, 0% 100%);
  opacity: 0;
}

.top_audition_schedule.active {
  animation: slideUpFadeIn 0.8s ease-out forwards;
}

.top_audition_schedule_title_wrap {
  position: relative;
  text-align: center;
}

.top_audition_schedule_title_wrap::after {
  content: "";
  display: block;
  width: 36rem;
  height: 36rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -6rem;
  opacity: .9;
  z-index: -1;

  background-image: url("../img/top/top_audition_schedule_title_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.top_audition_schedule_title_attention {
  font-size: 1.3rem;
  text-align: center;
  color: #444;
  margin-top: 3rem;
}

.top_audition_schedule_period_title {
  font-size: 1.4rem;
  background-color: var(--color-main);
  width: 10rem;
  border-radius: 5rem;
  padding: .3rem 0;
  margin: 3rem auto 1rem;
}

.top_audition_schedule_period {
  font-size: 2.2rem;
}

.top_audition_schedule_period span,
.top_audition_schedule_main_item_txt span {
  font-size: 1.4rem;
}

/* top_audition_schedule_main */
.top_audition_schedule_main {
  position: relative;
  margin: 3rem auto 0;
}

.top_audition_schedule_main_item {
  text-align: center;
  overflow: hidden;
  border-radius: .5rem;
  margin-top: -.2rem;
}

.top_audition_schedule_main_item.after_line::after {
  content: "";
  display: inline-block;
  background-image: url("../img/top/top_audition_schedule_main_item_after_line.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  height: 2rem;
  width: 1rem;
  margin-top: .2rem;
}

.top_audition_schedule_main_item.after_arrow::after {
  content: "";
  display: inline-block;
  background-image: url("../img/top/top_audition_schedule_main_item_after_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  height: 3rem;
  width: 2.5rem;
  margin-top: .2rem;
}

.top_audition_schedule_main_item_title {
  font-size: 1.6rem;
  background-color: var(--color-main);
  padding: 1rem 0;
}

.top_audition_schedule_main_item_txt_wrap {
  font-family: 'Comfortaa', Noto Sans JP, serif;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.8rem;
  background-color: var(--sub_color);
  padding: .6rem 2.6rem;
}

.top_audition_schedule_main .step_tag {
  display: inline-block;
  color: var(--color-main);
  font-size: 1.4rem;
  font-weight: 700;
  border: solid 2px var(--color-main);
  border-radius: .5rem;
  padding: .2rem .3rem 0;
}

.top_audition_schedule_main_item_txt.txt_size2 {
  font-size: 1.4rem;
}

.top_audition_schedule_main_item:last-of-type .top_audition_schedule_main_item_txt_wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top_audition_schedule_main_item:last-of-type .step_tag {
  border: none;
  padding: 0;
}


/* ==========================

// top_winners

========================== */
.top_winners {
  background-color: rgba(248, 90, 124, 0.45);
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  padding: 7rem 0;
  margin-top: -5rem;
  opacity: 0;
}

.top_winners.active {
  animation: slideUpFadeIn 0.8s ease-out forwards;
}

.top_winners h2 {
  font-size: 3rem;
}

/* top_winners_item_wrap */
.top_winners_item_wrap {
  margin: 3rem auto;
  text-align: center;
}

.top_winners_item {
  width: 35rem;
  margin: 0 auto 3rem;
  border-radius: 2rem 0;
  overflow: hidden;
}

.top_winners_item_main_img {
  width: 100%;
}

.top_winners_item_main_txt {
  position: relative;
  font-family: "Comfortaa", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background-color: var(--sub_color);
  padding: 2rem;
  height: 12rem;
}

.top_winners_item_ambassador_name::after {
  content: "";
  display: inline-block;
  background-image: url("../img/top/top_ambassador_link_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 1.7rem;
  width: 1.7rem;
  margin-left: .5rem;
}

.top_winners_item_sns_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 1rem;
}

.top_winners_item_sns_wrap a img {
  height: 2rem;
}

.top_winners_item__btn {
  position: absolute;
  width: 9rem;
  bottom: 1.4rem;
  right: 1rem;
}

.top_winners_item__btn .main_img {
  width: 9rem;
}

.top_winners_item_main_txt .sub_img {
  position: absolute;
  width: 7.5rem;
  height: auto;
  top: 7.5%;
  left: 0;
  right: 0;
  margin: auto;
  animation: 10s linear infinite rotation;
}

.top_winners_item__btn:hover .sub_img {
  animation-play-state: paused;
}

.top_winners_item_marquee {
  position: relative;
  width: 100%;
  white-space: nowrap;
  transform: rotate(-10deg);
  margin-top: 7rem;
  z-index: 10;
}

.top_winners_item_marquee_content {
  font-family: "Comfortaa", sans-serif;
  display: flex;
  font-size: 2.2rem;
  width: 200%;
  padding: 1rem 0;
  background-color: var(--sub_color);
  animation: marquee-loop02 20s infinite linear;
}


/* ==========================

  common_page_bottom_contents Topver

========================== */
.top .common_page_bottom_contact {
  background-color: initial;
}

.top .common_page_bottom_contents {
  position: relative;
  margin-top: -5rem;
  z-index: -1;
}

.top .common_page_bottom_contact_precaution_bg {
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
  background-color: rgba(255, 255, 255, 0.80);

}

.top .common_page_bottom_contact_inner {
  background-color: initial;
  padding-bottom: 0;
  clip-path: initial;
}

.top .common_page_bottom_contact::before {
  background-color: initial;
}

.top .common_page_bottom_contact h2 {
  color: var(--color-main);
}

.top .common_page_bottom_contact_txt {
  font-weight: 400;
  color: var(--font_color);
}

.top .common_page_bottom_contact_info {
  background-color: initial;
  border: solid 1px var(--color-main);
}

.top .common_page_bottom_precaution {
  background-color: initial;
}