@charset "UTF-8";
/* CSS Document */
.section-main {
  margin-bottom: 60px;
}
.top-main img {
  height: 70vh;
  width: 100%;
  margin: 0 auto;
  object-fit: cover;
}
@media(min-width:900px) {
  .section-main {
    margin-bottom: 100px;
  }
}
/* sub title*/
.sub-title {
  color: #333333;
  font-family: 'Poppins', sans-serif;
  font-size: 3.6rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.3s 0s ease-out;
}
@keyframes fadein-right {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media(min-width:900px) {
  .sub-title {
    font-size: 5.0rem;
    text-align: left;
  }
}
/*NEWS*/
.section-news {
  margin: 0 20px;
  padding-bottom: 100px;
  text-align: left;
}
.section-news ol {
  margin: 30px 0;
  list-style: none;
}
.section-news li {
  padding: 20px 0;
  border-bottom: 1px #d1d1d1 solid;
}
.section-news li:first-child {
  padding-top: 0;
}
.section-news__date {
  color: #666666;
  font-size: 1.2rem;
  font-weight: 600;
}
.section-news__catrgory {
  font-size: 1.4rem;
  font-weight: 600;
}
.section-news__catrgory a {
  display: inline-block;
  text-decoration: none;
  color: #333333;
  padding-bottom: 5px;
  position: relative;
}
.section-news__catrgory a::before {
  background: #8c2ddd;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.section-news__catrgory a:hover {
  color: #8c2ddd;
}
.section-news__catrgory a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.link-viewall a {
  color: #333333;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  position: relative;
  z-index: 1;
  padding: 10px;
}

.link-viewall a::before {
  background: #8c2ddd;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
  z-index: -1;
}
.link-viewall a:hover {
  color: #fafafa;
}
.link-viewall a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media(min-width:900px) {
  .section-news {
    display: flex;
    justify-content: space-between;
    margin: 0 100px;
  }
  .ttl-area {
    width: 40vw;
    margin-top: 10px;
  }
  .text-description {
    width: 60vw;
  }
  .section-news ol {
    margin: 0;
  }
  .section-news li {
    padding: 50px 0;
  }
  .section-news li:first-child {
    padding-top: 0;
  }
  .section-news__date {
    font-size: 1.4rem;
  }
  .section-news__catrgory {
    font-size: 2.0rem;
    padding-top: 10px;
  }
  .link-viewall {
    font-size: 2.0rem;
    text-align: right;
    margin-top: 50px;
  }
}
/*SCHEDULE*/
.section-schedule {
  margin: 0 20px;
  padding-bottom: 100px;
  text-align: left;
}
.section-schedule ol {
  margin: 30px 0;
  list-style: none;
}
.section-schedule li {
  padding: 20px 0;
  border-bottom: 1px #d1d1d1 solid;
}
.section-schedule li:first-child {
  padding-top: 0;
}
.section-schedule__date {
  color: #666666;
  font-size: 1.2rem;
  font-weight: 600;
}
.section-schedule__tag {
  display: inline-block;
  color: #FAFAFA;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  background-color: #261b49;
  padding: 0 10px;
  margin-left: 10px;
}
.section-schedule__catrgory {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 5px;
}

.section-schedule__catrgory a {
  display: inline-block;
  text-decoration: none;
  color: #333333;
  padding-bottom: 5px;
  position: relative;
}
.section-schedule__catrgory a::before {
  background: #8c2ddd;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.section-schedule__catrgory a:hover {
  color: #8c2ddd;
}
.section-schedule__catrgory a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

@media(min-width:900px) {
  .section-schedule {
    display: flex;
    justify-content: space-between;
    margin: 0 100px;
  }
  .ttl-area {
    width: 40vw;
    margin-top: 10px;
  }
  .text-description {
    width: 60vw;
  }
  .section-schedule ol {
    margin: 0;
  }
  .section-schedule li {
    padding: 50px 0;
  }
  .section-schedule li:first-child {
    padding-top: 0;
  }
  .section-schedule__catrgory {
    font-size: 2.0rem;
    padding-top: 10px;
  }
  .link-viewall {
    font-size: 2.0rem;
    text-align: right;
    margin-top: 50px;
  }
}
/*VIDEO*/
.section-video {
  text-align: left;
  color: #333333;
  font-size: 1.2rem;
  font-weight: 600;
  padding-bottom: 100px;
}
.section-video__mv {
  width: 100%;
  margin: 30px 0;
}
.section-video__textarea {
  margin: 30px 20px 20px 20px;
}
.section-video__text {
  margin-bottom: 20px;
}
.link-viemore a {
  color: #333333;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  position: relative;
  z-index: 1;
  padding: 10px;
}

.link-viemore a::before {
  background: #8c2ddd;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
  z-index: -1;
}
.link-viemore a:hover {
  color: #fafafa;
}
.link-viemore a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media(min-width:900px) {
  .section-video {
    display: flex;
    justify-content: space-between;
    font-size: 2.0rem;
    margin: 0 100px;
  }
  .section-video__content {
    width: 40vw;
    padding: 0;
  }
  .section-video__textarea {
    margin: 50px 0 0 0;
  }
  .section-video__text {
    margin: 20px 0 50px 0;
  }
  .section-video__mvcontent {
    width: 60vw;
    margin: 0;
  }
  .section-video__mv {
    margin: 0;
  }
}
/*FC*/
.section-fc {
  background-color: #dcd8ea;
  padding: 50px 20px;
}
.section-fc__title {
  padding: 30px 0;
}
.section-fc__title h4 {
  font-size: 2.0rem;
  font-weight: 600;
  color: #261b49;
  font-family: 'Poppins', sans-serif;
}
.section-fc__logo {
  width: 221px;
  height: 154px;
}
a.fc-btn {
  text-decoration: none;
}
.fc-btn {
  width: 100px;
  text-align: center;
  display: inline-block;
  color: #261b49;
  font-size: 20px;
  border: 2px solid #261b49;
  padding: 15px 70px;
}
.join {
  margin-bottom: 20px;
}
.fc-btn:hover {
  background-color: #261b49;
  transition: .3s ease-out;
  color: #FAFAFA;
}
@media(min-width:900px) {
  .section-fc {
    padding: 50px 100px;
    margin: 0;
  }
  .section-fc__title {
    padding: 50px 0;
  }
  .section-fc__title h4 {
    font-size: 3.0rem;
    font-weight: 600px
  }
  .join {
    margin: 0 30px 0 0;
  }
}