@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: inherit;
}

.visual{
    width: 1000px; /* 1000px에 맞춰서 16 : 9로 비율 맞춰주기 */
/*  height: 1000px; */
    background-color: aqua;
    position: relative;
}
.visual .inner{
    padding-bottom: 56.25%; /* 16 : 9로 비율 맞춰주기 56.25% 아래쪽 확장영역 */
}
.visual iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}