@charset "UTF-8";


/* Key Visual
---------------------------------------- */
.kv {
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 96vh;
  font-family: 'Oswald', sans-serif;
}

.kv video {
  min-width: 100%;
  min-height: 96vh;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 1;
}

.kv::before {
  content: '';
  display: block;
  width: 100%;
  height: 96vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0,0,0,0.55);
}

.kv__title {
  position: absolute;
  top: 24%;
  z-index: 3;
  line-height: 1.25;
  text-align: center;
  font-weight: 500;
  font-size: 12rem;
  letter-spacing: 6px;
  color: #fff;
}

.kv__scroll {
  position: absolute;
  bottom: 30px;
  z-index: 2;
  padding-top: 70px;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
}

.kv__scrollIcon {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

@media screen and (max-width:1280px) {
  .kv__title {
    font-size: 8.6rem;
    /* top: 20%; */
  }

  .kv video {
    transform: translateX(-50%) translateY(-10%);
    -webkit-transform: translateX(-50%) translateY(-10%);
  }
}

@media screen and (max-width:1024px) and (min-width:768px) {
  .kv video {
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }

  .kv__title {
    top: 27%;
  }
}

@media screen and (max-width:767px) {
  .kv__title {
    top: 35.5%;
    font-size: 4.6rem;
    letter-spacing: 2px;
  }

  .kv video {
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
}


/* Lead section
---------------------------------------- */
.lead__content {
  margin: 100px 0;
  text-align: center;
}

.lead__text {
  margin: 40px 0;
  line-height: 2.25;
  font-size: 1.4rem;
  font-weight: bold;
}

.lead__textLarge {
  margin: 0 0 60px;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width:767px) {
  .lead__content {
    padding: 0 20px;
    margin: 60px 0 100px;
  }

  .lead__text {
    margin: 30px 0;
    line-height: 2;
    text-align: left;
  }

  .lead__textLarge {
    margin: 0 0 30px;
  }
}


/* Topics section
---------------------------------------- */
.topics__content {
  max-width: 1024px;
  margin: 0 auto 60px;
}

.topics__box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 0 40px;
}

.topics__box .title {
  width: 20%;
  padding-top: 10px;
  line-height: 1;
}

.topics__list {
  width: 80%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.topics__item {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
  padding: 15px 0;
  border-bottom: solid 1px #bfbfbf;
}

.topics__itemDate {
  width: 15%;
  font-weight: bold;
}

.topics__itemText {
  width: 85%;
}

.topics__itemText a {
  position: relative;
  color: #000;
}

.topics__itemText a:hover {
  color: #000;
}

.topics__newIcon {
  display: inline-block;
  padding: 0px 10px;
  background-color: #333;
  color: #fff;
  margin-right: 10px;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.topics__img .topics__list{
  width: 100%;
}

.topics__img .topics__list .topics__itemDate{
  width: 100%;
}
    
.topics__img .topics__list .topics__itemText{
  width: auto;
}
    
.topics__img .topics__list .topics__item{
  border-bottom: none
}
    
.topics__img .topics__list .topics__itemImg{
  margin-top: 20px;
}

@media screen and (max-width:1024px) and (min-width:768px) {
  .topics__content {
    padding: 0 20px;
  }
}

@media screen and (max-width:767px) {
  .topics__content {
    padding: 0 20px;
    margin: 0 auto 70px;
  }

  .topics__box .title {
    width: 100%;
  }

  .topics__list {
    width: 100%;
    margin-top: 15px;
  }

  .topics__item {
    padding: 20px 0;
  }

  .topics__itemDate {
    width: 100%;
    margin-bottom: 10px;
  }

  .topics__itemText {
    width: 100%;
  }
}


/* Concept section
---------------------------------------- */
@media screen and (max-width:1024px) and (min-width:768px) {
  .concept .col2 .box {
    width: 100%;
  }

  .concept .col2 .box.-text {
    padding: 50px 70px;
  }
}

/* Projects section
---------------------------------------- */
@media screen and (max-width:1024px) and (min-width:768px) {
  .project .col2 {
    flex-direction: column-reverse;
  }

  .project .col2 .box {
    width: 100%;
  }

  .project .col2 .box.-text {
    padding: 50px 70px;
  }
}

@media screen and (max-width:767px) {
  .project .col2 {
    flex-direction: column-reverse;
  }
}


/* Donate section
---------------------------------------- */
.donate__content {
  margin: 110px 0;
  text-align: center;
}

@media screen and (max-width:1024px) and (min-width:768px) {
  .donate__content {
    padding: 0 20px;
  }
}

@media screen and (max-width:767px) {
  .donate__content {
    padding: 0 20px;
    margin: 80px 0 100px;
  }

  .donate__content .text {
    text-align: left;
  }
}
