@charset "utf-8";
*{box-sizing:border-box;word-break:keep-all}
html{width:100%;height:100%;-webkit-overflow-scrolling:touch;-webkit-text-size-adjust:none}
body{width:100%;height:100%;line-height:1.5;font-family:'Pretendard','-apple-system','system-ui','BlinkMacSystemFont','Roboto','Malgun Gothic',sans-serif;color:#242424}

.container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #000;
}
.container:before,
.container:after{
  z-index: 1;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  display: block;

}
.container:before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
}
.container:after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
}
.content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 20px;
  animation: 30s credits linear infinite;
}
.title {
  font-size: 56px;
  font-weight: 400;
  margin: 100px auto;
}
.box {
  overflow: hidden;
  margin-bottom: 120px;
}
.box h3 {
  font-size: 28px;
  font-weight: 500;
  color: #fed636;
  margin-bottom: 20px;
}
.box dl {
  position: relative;
  padding-left: calc(50% + 10px);
  font-size: 36px;
  font-weight: 300;
}
.box dl:not(:first-of-type) {
  margin-top: 20px;
}
.box dl dt {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  text-align: right;
  color: #999;
  padding-right: 10px;
}
.box dl dd {
  width: 50%;
  text-align: left;
}
.box dl:after {
  content: '';
  display: block;
  clear: both;
}
.end {
  margin-top: 200px;
}

@keyframes credits {
  0% {
    top: 100%;
  }
  100% {
    top: -650%;
  }
}

@keyframes creditsMobile {
  0% {
    top: 100%;
  }
  100% {
    top: -500%;
  }
}


@media all and (max-width:1023px) {
	.content{
		animation: 20s creditsMobile linear infinite;
	}
	.title{
		font-size: 36px;
		margin: 40px auto;
	}
	.box{
		margin-bottom: 80px;
	}
	.box h3 {
		font-size: 16px;
	}
	.box dl{
		font-size: 22px;
	}
	.box dl:not(:first-of-type){
		margin-top: 10px;
	}

}


.image{
  max-width: 400px;
  margin: 0 auto;
}
.image p {
  display: none;
}
.image div{
  position: relative;
  height: 0;
  padding-bottom: 70.25%;
}
.image iframe{
  position: absolute;
  top: 0;
  left: 0;
}