*{
	margin: 0;
	padding: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
  -webkit-tap-highlight-color : rgba(0,0,0,0.0);
}

@font-face{
    font-family: 'Kranky';
    src:url('../fonts/Kranky.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face{
    font-family: 'CoveredByYourGrace';
    src:url('../fonts/CoveredByYourGrace.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face{
    font-family: 'SquadaOne';
    src:url('../fonts/SquadaOne.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

.main_title{
	font-family: 'SquadaOne';
	color: #262626;
	font-size: 175px;
	margin-top: 450px;
  justify-content: left;
  line-height: 1.2;
}
.main_section{
	position: relative;
	width: 100%;
}

.main_top_text{
  position: relative;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
}

.main_top_text>p{
  color: #262626;
  font-size: 32px;
  font-family: 'CoveredByYourGrace';
  letter-spacing: .15rem;
}

.main_section_wrap{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
}
.main_section_btn{
	position: relative;
	width: 100%;
	height: 600px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.main_bg{
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("../images/bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 110%;
  pointer-events: none;
  z-index: -1;
}

.main_body{
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}





/*라디오 버튼*/
.switch {
  position: relative;
  display: inline-block;
  width: 130px;
  height: 70px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #13264E;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  left: 4px;
  bottom: 23px;
  background-color: #EDEDEB;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #262626;
}

input:focus + .slider {
  box-shadow: 0 0 1px #262626;
}

input:checked + .slider:before {
  -webkit-transform: translateX(92px);
  -ms-transform: translateX(92px);
  transform: translateX(92px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}



/*select 페이지*/
.select_section,
.select_list_wrap,
.select_list,
.select_list > ul,
.select_list > ul > li {
    position: relative;
    width: 100%;
}

.select_section {
    margin-top: 200px;
}

.select_top {
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
}
.select_top > p{
  position: absolute;
  width: 100%;
  height: 200px;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: end;
  margin-bottom: 40px;
}
.select_top > p > img {
  position: relative;
  bottom: 0;
  width: 700px;
}

.select_list_wrap {
    height: 1300px;
    margin-top: 63px;
    display: flex;
    justify-content: center;
}

.select_list {
    width: 700px;
    height: 1300px;
    overflow: hidden;
    z-index: 999;
}

.select_list > ul {
    width: calc(700px * 4);
    height: 1300px;
    display: flex;
    transition: transform 0.5s ease;
}

.select_list > ul > li {
    width: 700px;
    height: 100%;
    flex-shrink: 0;
    background-size: 700px;
    background-repeat: no-repeat;
}

.select_list > ul > #frame1 { background-image: url('../images/view_frame1.jpg'); }
.select_list > ul > #frame2 { background-image: url('../images/view_frame2.jpg'); }
.select_list > ul > #frame3 { background-image: url('../images/view_frame3.jpg'); }

.slide-button {
    position: absolute;
    top: 50%;
    width: 37px;
    height: 47px;
    padding: 40px;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.0);
}
.prev-button {
  left: 80px; 
  
}
.next-button {
 right: 80px; 
 
}

.select_list {
    overflow: hidden;
}

.select_list > ul {
    display: flex;
    transition: transform 0.5s ease;
}

.select_list > ul > li {
    flex: 0 0 100%;
    width: 100%;
}
.select_submit{
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.select_submit_btn{
  font-family: 'Kranky';
  font-size: 50px;
  color: #13264E;
}