/*********** General ***********/

html {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    background-color:#4A4547;
}

html, body {
    width:100%;
    height:100%;
    padding:0;
    margin:0;
}

img {
    pointer-events: none;
}

body::-webkit-scrollbar {
  width: 10px;
}
 
body::-webkit-scrollbar-track {
    background-color:#FCFCF7;
}
 
body::-webkit-scrollbar-thumb {
  background-color: #99966A;
    border-radius:5px;
}

.bg {
    margin: 0;
    padding: 0;
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    background-image: url("img/bg-scrapbook.png"), url("img/bg-cloth.png"), url("img/bg-desk.png");
    background-size: auto, auto, cover;
    background-position: top left, bottom right, center;
    background-repeat:no-repeat, no-repeat, no-repeat;
    z-index:0;
    filter: blur(2px);
}

.main-container {
    position:relative;
    width:1200px;
    height:auto;
    margin: 50px auto;
    z-index:1;
}

.team-banner {
    width:665px;
    height:380px;
    position:fixed;
    left:0;
    bottom:0;
    z-index:2;
    padding:0;
}

.team-banner, .main-container, .menu-banner {
    filter: drop-shadow(0 0 0.25rem rgba(0,0,0,0.6));
}

.otherwork {
    width:42px;
    height:30px;
    position:absolute;
    bottom: 18px;
    display:block;
    background-image:url(img/next_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
}

.prev {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
    left:24px;
}

.next {
    left:90px;
}

.disabled {
    opacity: 0.4;
}


/*********** Index Page ***********/

.index-page {
    margin: 0 auto;
    padding: 0;
    width:100%;
    min-width:1400px;
    min-height:700px;
    height:100%;
    position:relative;
    top:0;
    left:0;
    background-image: url(img/bg-index.png);
    background-repeat:no-repeat;
    background-position:center;
    filter: drop-shadow(0 0 0.25rem rgba(0,0,0,0.6));
    z-index:2;
    overflow:hidden;
}

.bg-index {
    margin: 0;
    padding: 0;
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    background-image: url("img/bg-cloth2.png"), url("img/bg-cloth.png"), url("img/bg-desk.png");
    background-size: auto, auto, cover;
    background-position: top left, bottom right, center;
    background-repeat:no-repeat, no-repeat, no-repeat;
    z-index:0;
}

#menu-list-index {
    position:absolute;
    width:700px;
    height:700px;
    top: 50%;
    left: 50%;
    margin: -313px 0px 0px 14px;
    z-index:11;
    text-align:center;
    transform: rotate(8deg);
}

#menu-list-index .menu-group1 {
    margin: 12px 0 0 -20px;
}

#menu-list-index .menu-group2 {
    margin: 100px 0 0 0;
}

#menu-list-index .menu-group3 {
    margin: 0 0 12px -16px;
}

.bgm-button-index {
    position:fixed;
    width:85px;
    height:85px;
    top:101px;
    right:0px;
    background-image:url(img/bgm_banner.png);
    background-repeat: no-repeat;
    background-position: left;
    z-index:12;
    cursor:pointer;
}

/*********** Menu Banner ***********/

.menu-banner {
    width:360px;
    height:252px;
    position:fixed;
    right:0;
    top:0;
    z-index:2;
    padding:0;
}

.menu-banner img {
    position:absolute;
    top:0;
    right:0;
}

.menu-button {
    width: 258px;
    height:185px;
    cursor: pointer;
    position:absolute;
    top:0;
    right:0;
    background-image: url(img/next_banner.png);
}

.bgm-button-main {
    position:absolute;
    width:85px;
    height:85px;
    bottom:66px;
    right:0px;
    z-index:3;
    cursor:pointer;
}

.musicplayer {
    width:40px;
    height:40px;
    margin:22px 20px 0 auto;
    background-size:cover;
    cursor:pointer;
}

#playing {
    background-image:url(img/playing.png);
    display:block;
}

#notplaying {
    background-image:url(img/notplaying.png);
    display:none;
}


/*********** Menu Overlay ***********/

.overlay {
    position: fixed;
    display:none;
}

#menu-bg {
    width: 100%;
    height: 100%;
    margin:0;
    padding:0;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 10;
    cursor: pointer;
}

#menu-list-overlay {
    width:720px;
    height:560px;
    top: 50%;
    left: 50%;
    margin: -280px 0px 0px -360px;
    z-index:11;
    background-image:url(img/menu_list.png);
    text-align:center;
}

.menu-list div {
    position:absolute;
    width:225px;
    display:grid;
}

.menu-list li {
    height:25px;
}

#long-menu-item {
    height: 40px;
    line-height: 1.2em;
}

.menu-list * {
    display:inline-block;
    text-decoration: none;
    color:#5C4B4C;
    font-family: "Noto Serif KR", serif;
    font-weight:500;
    font-size:17px;
}

.menu-list a:hover {
    text-shadow: 0 0 2px #5C4B4C;
}

.menu-group1 {
    top:62px;
    left:175px;
}

.menu-group2 {
    top:114px;
    right:62px;
}

.menu-group3 {
    bottom:60px;
    left:163px;
}


/*********** Text Style ***********/

.text-wrapper {
    position:relative;
    width:1000px;
    height:auto;
    z-index: 1;
    border-width: 50px;
    padding-left:10px;
    border-style: solid;
    border-image: url("img/container-border.png") 60 fill round;
    box-sizing: border-box;
    margin: 30px auto 300px auto;
}

.text-container {
    position:relative;
    width: 1000px;
    height: auto;
    z-index:1;
    border-width: 50px;
    border-style: solid;
    border-image: url("img/bg-paper.png") 60 fill round;
    box-sizing: border-box;
    padding: 80px;
    margin: -30px auto auto auto;
    font-size:17px;
    line-height: 2;
    font-family: "Gowun Batang", serif;
    font-weight: 700;
    color:#5C4B4C;
}

.text-container p {
    margin:0;
    text-indent:4em;
}

.text-container .aligncenter {
    text-align: center;
    text-indent:0em;
}

.text-container .caution {
    color:#a18f90;
}

.text-container hr {
    border: 0;
    height: 2px;
    background-color: #a18f90;
    filter: blur(0.5px);
}

.sanserif {
    font-family: "Noto Sans KR", sans-serif;
    font-weight:400;
}

.sanserif p {
    text-indent: 0em;
}

.elve p {
    text-indent:1em !important;
    margin-bottom:1em;
}