@charset "UTF-8";
/* CSS Document */
.section-fanclub {
  padding-bottom: 60px;
}
.section-fanclub__main-image img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}
.section-fanclub__container {
  padding: 60px 20px 0;
}
.section-fanclub__signin {
  justify-content: center;
  margin-bottom: 60px;
}
.fanclab-logo {
  width: 221px;
  height: 154px;
}
.section-fanclub__signin ul {
  list-style: none;
}
.section-fanclub__signin h4 {
  font-size: 2.0rem;
  font-weight: 600;
  color: #261b49;
  font-family: 'Poppins', sans-serif;
  margin-top: 10px;
}
/* BUTTON */
.section-fc__button {
  margin-top: 30px;
}
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;
}
/* BUTTON END */
@media(min-width: 900px) {
  .section-fanclub {
    padding-bottom: 100px;
  }
  .section-fanclub__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 100px 100px 0;
  }
  .section-fanclub__signin {
    margin-bottom: 100px;
  }
  .section-fanclub__signin ul {
    display: flex;
    justify-content: space-between;
  }
  .section-fanclub__signin li {
    display: inline-block;
    width: 50vw;
  }
  .fanclab-logo {
    width: 400px;
    height: 278px;
  }
  .section-fanclub__signin h4 {
    font-size: 3.0rem;
    margin-top: 10px;
  }
  .section-fc__button {
    display: inline-block;
    margin-top: 100px;
  }
  .fc-btn {
    display: block;
  }
}

/* FC NEWS */
.section-fanclub__news {
  text-align: left;
  margin-bottom: 60px;
}
.section-fanclub__news ul {
  list-style: none;
  margin-bottom: 30px;
}
.section-fanclub__news li {
  display: block;
  padding: 30px 0;
  border-bottom: solid 1px #666666;
}
.section-fanclub__news li a {
  display: block;
  color: #333333;
  text-decoration: none;
}
.section-fanclub__news-date {
  font-size: 1.2rem;
  font-weight: 600;
  color: #666666;
}
.section-fanclub__news-text {
  font-size: 1.4rem;
  font-weight: 600;
}
.section-fanclub__news li a {
  display: inline-block;
  text-decoration: none;
  color: #333333;
  position: relative;
}
.section-fanclub__news li 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-fanclub__news li a:hover {
  color: #8c2ddd;
}
.section-fanclub__news li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

@media(min-width: 900px) {
  .section-fanclub__news-date {
    font-size: 1.6rem;
  }
  .section-fanclub__news-text {
    font-size: 2.0rem;
    margin-top: 10px;
  }
  .section-fanclub__news {
    margin-bottom: 100px;
  }
}

/* FC BLOG */

.section-fanclub__blog {
  text-align: left;
}
.section-fanclub__blog ul {
  list-style: none;
}
.section-fanclub__blog li {
  display: inline-block;
  margin-bottom: 30px;
}

.section-fanclub__blog li a {
  display: inline-block;
  text-decoration: none;
  color: #333333;
  padding-bottom: 5px;
  position: relative;
}
.section-fanclub__blog li 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-fanclub__blog li a:hover {
  color: #8c2ddd;
}
.section-fanclub__blog li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.section-fanclub__blog-image {
  width: 100%;
  margin-bottom: 10px;
  transition-duration: .5s;
}
.section-fanclub__blog-image:hover {
  opacity: 50%;
  transform: scale(1.1);
}
@media(min-width: 900px) {
  .section-fanclub__blog ul {
  display: flex;
    justify-content: space-between;
}
  .section-fanclub__blog li {
    width: 30%;
}
  .section-fanclub__blog {
    margin-bottom: 100px;
  }
}
/* VIEW ALL */

.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) {
  .link-viewall {
    text-align: right;
  }
}
