@import url('reset.css');


/* ↓↓↓↓↓↓↓↓↓↓ COMMON AREA ↓↓↓↓↓↓↓↓↓↓ */
.wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-family: 'Montserrat', 'Noto Sans KR', 'Times New Roman';
    font-size: 16px;
}
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}
.clearfix:after {
    content: "";
    clear: both;
    display: block;
}
.zoom {
    transition: transform .2s;
}
.zoom:hover {
    transform: scale(1.5);
}
.section-title {
    width: 100%;
    float: left;
    font-size: 10rem;
    font-style: italic;
    color: #ffffff;
    text-align: right;
}
.center-position{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.font-color-black {
    color: #000000;
}
.text-center {
    text-align: center;
}
.display-block {
    display: block;
}
/* ↑↑↑↑↑↑↑↑↑↑ COMMON AREA ↑↑↑↑↑↑↑↑↑↑ */



/* ↓↓↓↓↓↓↓↓↓↓ HEADER AREA ↓↓↓↓↓↓↓↓↓↓ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 10rem;
    background-color: rgba(00, 00, 00, 0.8);
    z-index: 1000;
}
.logo {
    position: relative;
    width: 20%;
    height: 10rem;
    float: left;
}
.logo > a {
    position: relative;
    width: 100%;
    height: inherit;
    display: block;
}
.logo > a > img {
    width: 100%;
}
.navi {
    position: relative;
    width: 70%;
    height: 10rem;
    margin-right: 5rem;
    float: right;
    color: #ffffff;
}
.navi > .menu {
    width: 100%;
    height: 5rem;
    line-height: 5rem;
    margin: 2.5rem 0;
}
.navi > .menu > ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.navi > .menu > ul > li {
    width: 20%;
    text-align: center;
}
.navi > .menu > ul > li > a {
    font-size: 100%;
    display: block;
}
.navi > .menu > ul > li > a:hover {
    font-weight: bold;
    color: #333333;
    border-radius: 2.5rem;
    background-color: #ffffff;
    box-shadow: 0 0 1rem #1199ee inset;
}



/* Hamburger button styles. */
.hamburger-button {
    position: absolute;
    display: block;
    width: 5rem;
    height: 4rem;
    top: 3rem;
    right: 3rem;
    z-index: 100;
    transition: .3s ease-in-out;
}
.hamburger-button span {
    position: absolute;
    top: 0;
    width: 100%;
    height: 0.5rem;
    background-color: #eeeeee;
    border-radius: 0.5rem;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
.hamburger-button:hover span {
    box-shadow: 0 0 0.2rem 0.5rem #1199ee;
}
.hamburger-button span:nth-child(1) {
    top: 0rem;
}
.hamburger-button span:nth-child(2),
.hamburger-button span:nth-child(3) {
    top: 1.5rem;
}
.hamburger-button span:nth-child(4) {
    top: 3rem;
}
.hamburger-button.active span {
    background-color: #ffffff;
    border: 1px solid red;
}
.hamburger-button.active span:nth-child(1),
.hamburger-button.active span:nth-child(4) {
    opacity: 0;
}
.hamburger-button.active span:nth-child(2) {
    transform: rotate(45deg);
}
.hamburger-button.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* 1. Style the overlay & navigation. */
.overlay {
    position: fixed;
    width: 100%;
    height: 0%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    background-color: #000000;
    opacity: 0;
    border: 1px solid red;
    transition: opacity .3s, visibility .3s, height .3s;
}
.ghostmenu {
    font-size: 3rem;
    /* font-family: 'Roboto', Arial, Helvetica, sans-serif; */
    font-family: 'Montserrat', 'Noto Sans KR', 'Times New Roman';
    text-align: center;
}
.ghostmenu > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ghostmenu > ul > li {
    opacity: 0;
    margin: 2rem 0;
}
.ghostmenu > ul > li:hover {
    border: 1px solid red;
}
.ghostmenu > ul > li > a {
    text-decoration: none;
    color: #ffffff;
    opacity: .5;
    transition: opacity .2s ease;
}
.ghostmenu > ul > li > a:hover {
    opacity: 1;
}

/* 2. Add the animation. */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-25%, 0, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* 3. Style the visible overlay. */
.overlay.visible {
    visibility: visible;
    height: 100%;
    opacity: .85;
}
.overlay.visible li {
    animation: fadeInLeft .3s ease forwards;
}
.overlay.visible li:nth-of-type(1) {
    animation-delay: 0.30s;
}
.overlay.visible li:nth-of-type(2) {
    animation-delay: 0.35s;
}
.overlay.visible li:nth-of-type(3) {
    animation-delay: 0.40s;
}
.overlay.visible li:nth-of-type(4) {
    animation-delay: 0.45s;
}
.overlay.visible li:nth-of-type(5) {
    animation-delay: 0.50s;
}
/* ↑↑↑↑↑↑↑↑↑↑ HEADER AREA ↑↑↑↑↑↑↑↑↑↑ */



/* ↓↓↓↓↓↓↓↓↓↓ SECTION MAIN AREA ↓↓↓↓↓↓↓↓↓↓ */
#main {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    /* min-height: 937px; */
    background-color: #000000;
    background-attachment: fixed;
    overflow: hidden;
}
.mainbox {
    position: relative;
    width: 100%;
    height: 100vh;
    -webkit-perspective: 50rem;
    perspective: 50rem;
}
.mainbox-L {
    position: absolute;
    width: 50%;
    bottom: 12rem;
    left: -5rem;
    color: transparent;
    text-align: center;
    float: left;
    z-index: 102;
}
.mainbox-R {
    position: absolute;
    width: 100%;
    right: 0;
    bottom: 0;
    color: transparent;
    text-align: center;
    float: right;
    z-index: 101;
}
.mainbox-L > img {
    height: 100%;
}
.mainbox-R > img {
    width: 100%;
}

.main_slide {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
}
.main_slide > div {
    position: absolute;
    width:100%;
    height:100%;
}
.main_slide:nth-of-type(1) {
    -webkit-animation:slideTop 20s 16s ease-out infinite;
    animation:slideTop 20s 16s ease-in-out infinite;
}
.main_slide:nth-of-type(2) {
    -webkit-animation:slideRight 20s 12s ease-out infinite;
    animation:slideRight 20s 12s ease-in-out infinite;
}
.main_slide:nth-of-type(3) {
    -webkit-animation:slideLeft 20s 8s ease-out infinite;
    animation:slideLeft 20s 8s ease-in-out infinite;
}
.main_slide:nth-of-type(4) {
    -webkit-animation:slideBottom 20s 4s ease-out infinite;
    animation:slideBottom 20s 4s ease-in-out infinite;
}
.main_slide:nth-of-type(5) {
    -webkit-animation:slideBottom 20s ease-out infinite;
    animation:slideBottom 20s ease-in-out infinite;
}

@-webkit-keyframes slideBottom {
    0%,5% { -webkit-transform: rotateX(0); z-index:1; }
    10% { -webkit-transform: rotateX(90deg); }
    13% { z-index:1; -webkit-transform: rotateX(90deg) translateY(100%); }
    50% { z-index:-1; -webkit-transform: rotateX(90deg) translateY(100%); }
    53%,73% { z-index:-1; -webkit-transform:rotateX(0) translateY(0); }
}

@keyframes slideBottom {
    0%,5% { transform: rotateX(0); z-index:1; }
    10% { transform: rotateX(90deg); }
    13% { z-index:1; transform: rotateX(90deg) translateY(100%); }
    50% { z-index:-1; transform: rotateX(90deg) translateY(100%); }
    53%,80% { z-index:-1; transform:rotateX(0) translateY(0); }
    81%,100% { z-index:0; }
}
/* Alternate directions: Use class or :nth-child to select the correct slide you want to affect,
    otherwise it will affect all of them */
/* .slide { to apply to all */
/* Left */
.main_slide:nth-of-type(3) {
    -webkit-transform-origin: left center;
    transform-origin: left center;
}
@-webkit-keyframes slideLeft {
    0%,5% { -webkit-transform: rotateY(0); z-index:1; }
    10% { -webkit-transform: rotateY(90deg); }
    13% { z-index:1; -webkit-transform: rotateY(90deg) translateX(-100%); }
    50% { z-index:-1; -webkit-transform: rotateY(90deg) translateX(-100%); }
    53%,73% { z-index:-1; -webkit-transform:rotateY(0) translateX(0); }
}
@keyframes slideLeft {
    0%,5% { transform: rotateY(0); z-index:1; }
    10% { transform: rotateY(90deg); }
    13% { z-index:1; transform: rotateY(90deg) translateX(-100%); }
    50% { z-index:-1; transform: rotateY(90deg) translateX(-100%); }
    53%,80% { z-index:-1; transform:rotateY(0) translateX(0); }
    81%,100% { z-index:0; }
}
/* Right */
.main_slide:nth-of-type(2) {
    -webkit-transform-origin: right center;
    transform-origin: right center; 
} 
@-webkit-keyframes slideRight {
    0%,5% { -webkit-transform: rotateY(0); z-index:1; }
    10% { -webkit-transform: rotateY(-90deg); }
    13% { z-index:1; -webkit-transform: rotateY(-90deg) translateX(100%); }
    50% { z-index:-1; -webkit-transform: rotateY(-90deg) translateX(100%); }
    53%,73% { z-index:-1; -webkit-transform:rotateY(0) translateX(0); }
}
@keyframes slideRight {
    0%,5% { transform: rotateY(0); z-index:1; }
    10% { transform: rotateY(-90deg); }
    13% { z-index:1; transform: rotateY(-90deg) translateX(100%); }
    50% { z-index:-1; transform: rotateY(-90deg) translateX(100%); }
    53%,80% { z-index:-1; transform:rotateY(0) translateX(0); }
    81%,100% { z-index:0; }
}
/* Top */
.main_slide:nth-of-type(1) { 
    -webkit-transform-origin: top center;
    transform-origin: top center;
}
@-webkit-keyframes slideTop {
    0%,5% { -webkit-transform: rotateX(0); z-index:1; }
    10% { -webkit-transform: rotateX(-90deg); }
    13% { z-index:1; -webkit-transform: rotateX(-90deg) translateY(-150%); }
    50% { z-index:-1; -webkit-transform: rotateX(-90deg) translateY(-150%); }
    53%,73% { z-index:-1; -webkit-transform:rotateX(0) translateY(0); }
} 
@keyframes slideTop {
    0%,5% { transform: rotateX(0); z-index:1; }
    10% { transform: rotateX(-90deg); }
    13% { z-index:1; transform: rotateX(-90deg) translateY(-150%); }
    50% { z-index:-1; transform: rotateX(-90deg) translateY(-150%); }
    53%,80% { z-index:-1; transform:rotateX(0) translateY(0); }
    81%,100% { z-index:0; } 
}

/* End alternate directions */

/* STYLISTIC THINGS: Photos from http://unsplash.com/ */
.main_slide > div {
    color: #ffffff;
    text-align: center;
    padding-top: 10rem;
    font-size: 3rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.main_slide:nth-of-type(1) div {
    background-image: url("../img/1. Main/MainSlide1.jpg");
}
.main_slide:nth-of-type(2) div {
    color:#333333;
    background-image: url("../img/1. Main/MainSlide2.jpg");
}
.main_slide:nth-of-type(3) div {
    background-image: url("../img/1. Main/MainSlide3.jpg");
}
.main_slide:nth-of-type(4) div {
    background-image: url("../img/1. Main/MainSlide4.jpg");
}
.main_slide:nth-of-type(5) div {
    background-image: url("../img/1. Main/MainSlide5.jpg");
}
/* ↑↑↑↑↑↑↑↑↑↑ SECTION MAIN AREA ↑↑↑↑↑↑↑↑↑↑ */



/* ↓↓↓↓↓↓↓↓↓↓ SECTION ABOUT AREA ↓↓↓↓↓↓↓↓↓↓ */
#about {
    width: 100%;
    height: 100%;
    min-height: 937px;
    background-color: #ffffff;
}
.aboutbox {
    position: relative;
    width: 100%;
    margin: 10rem auto 0;
}
/* Style the tab buttons */
.tablink {
    background-color: #333333;
    color: #ffffff;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 1.5rem 2rem;
    font-size: 2rem;
    width: 25%;
}
/* Change background color of buttons on hover */
.tablink:hover {
    font-weight: bold;
    background-color: #999999;
    box-shadow: 0 0 10px #1199ee inset;
}
/* Set default styles for tab content */
.tabcontent {
    width: 100%;
    height: 70rem;
    padding: 5rem;
    color: #ffffff;
    /* text-align: center; */
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
}
/* Style each tab content individually */
.tabcontent > h1 {
    font-size: 5rem;
    margin-bottom: 5rem;
}
.tabcontent > address {
    font-size: 1.6rem;
}
.tabcontent > p {
    font-size: 1.6rem;
}
.tabcontent > p > img {
    width: 100%;
}
#CI {background-color:red;}
#mission {background-color:green;}
#history {background-color:blue;}
#location {background-color:orange;}
#location > p {
    margin: 2.5rem auto;
}
#location > iframe {
    width: 100%;
    height: 40rem;
}
/* ↑↑↑↑↑↑↑↑↑↑ SECTION ABOUT AREA ↑↑↑↑↑↑↑↑↑↑ */



/* ↓↓↓↓↓↓↓↓↓↓ SECTION ARTIST AREA ↓↓↓↓↓↓↓↓↓↓ */
#artist {
    width: 100%;
    height: 100%;
    padding-bottom: 5rem;
    background-color: #000000;
    background-attachment: fixed;
}
.artistbox {
    position: relative;
    width: 100%;
    margin: 10rem auto 5rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}
.artist-card {
    position: relative;
    flex: 1;
    min-width: 30rem;
    height: 15rem;
    margin: 0.5rem;
    border: 1px solid #1199ee;
    border-radius: 0.5rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    overflow: hidden;
}

@media (min-width: 900px) {
    .artist-card {
        height: 25rem
    }
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 80%);;
    z-index: 0;
}

.artist-card__card-link {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
/*     background: rgba(255,0,0,.5); */
}

.artist-card__image {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: block;
    object-fit: cover;
    transition: transform 3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.artist-card__text-wrapper {
    position: absolute;
    bottom: 0rem;
    padding: 1rem;
    color: #ffffff;
/*     background-color: rgba(0, 0, 0, 0.4); */
    transition: background-color 1.5s ease;
}

.artist-card__title {
    transition: color 1s ease;
    margin-bottom: .5rem;
}

.artist-card__post-date {
    font-size: .8rem;
    margin-bottom: .5rem;
    color: #cccccc;
}

.artist-card__details-wrapper {
    width: 100%;
    max-height: 0;
    opacity: 0;
    transition: max-height 1.5s ease, opacity 1s ease;
}

@media (min-width: 900px) {
    .artist-card:hover .artist-card__details-wrapper {
        width: 100%;
        max-height: 20rem;
        opacity: 1;
    }
    .artist-card:hover .artist-card__text-wrapper {
        background-color: rgba(0, 0, 0, 0.6);
    }
    .artist-card:hover .artist-card__title {
        color: #11ee99;
        font-weight: bold;
    }
    .artist-card:hover .artist-card__image {
        z-index: -1;
        transform: scale(1.2);
    }
}

.artist-card__excerpt {
    font-size: 0.8em;
}
@media (min-width: 1200px) {
    .artist-card__excerpt {
        font-size: 1em;
        font-weight: 300;
    }
}
/* .artist-card__read-more {
    background: black;
    color: #bbb;
    display: block;
    padding: 0.4rem 0.6rem;
    border-radius: 0.3rem;
    margin-top: 1rem;
    border: 1px solid #444;
    font-size: 0.8rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-decoration: none;
    width: 7rem;
    margin-left: auto;
    position: relative;
    z-index: 5;
} */

/* .artist-card__read-more i {
    position: relative;
    left: 0.2rem;
    color: #888;
    transition: left 0.5s ease, color 0.6s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
} */

/* .artist-card__read-more:hover i {
    left: 0.5rem;
    color: yellow;
} */

/* ↑↑↑↑↑↑↑↑↑↑ SECTION ARTIST AREA ↑↑↑↑↑↑↑↑↑↑ */



/* ↓↓↓↓↓↓↓↓↓↓ SECTION NEWS AREA ↓↓↓↓↓↓↓↓↓↓ */
#news {
    width: 100%;
    background-color: #ffffff;
}
.newsbox {
    position: relative;
    width: 60rem;
    height: 40rem;
    margin: 20rem auto 10rem;
}
.news-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.news-items {
    position: absolute;
    width: 50rem;
    height: 30rem;
    background: #333333;
    display: inline-block;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    overflow: hidden;
    border-radius:2.5rem;
}
.news-items > p {
    color: #ffffff;
    font-weight: bold;
    font-size: 5rem;
    text-align: center;
    align-items: center;
    margin-top: 5rem;
}
.news-items > a {
    display: block;
}
.news-items > a > img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.news-items > a > h3 {
    position: absolute;
    right: 3rem;
    bottom: 3rem;
    left: 3rem;
    height: auto;
    line-height: normal;
    font-size: 2rem;
    color: #eeeeee;
    background-color: rgba(00, 00, 00, 0.7);
}
.news-items > iframe {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.main-pos {
    margin-left: 2em !important;
    z-index: 3000;
    background-image: url('../img/4. News/News BG.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.left-pos {
    margin-left: -17em !important;
    opacity: .3;
    z-index: 1000;
    -webkit-transform: scale(.75);
    -moz-transform: scale(.75);
    transform: scale(.75);
}
.back-pos {
    margin-left: 2em !important;
    opacity: .05;
    -webkit-transform: scale(.5);
    -moz-transform: scale(.5);
    transform: scale(.5);
}
.right-pos {
    margin-left:  21em !important;
    opacity: .3;
    z-index: 1000;
    -webkit-transform: scale(.75);
    -moz-transform: scale(.75);
    transform: scale(.75);
}
.news_slidebtn {
    position: absolute;
    bottom: 10rem;
    width: 100%;
}
.news_slidebtn > input:focus,
.news_slidebtn > input:hover {
    color: red;
    cursor: pointer;
}
.news_prev {
    position: absolute;
    left: 20%;
    font-size: 5rem;
    color: #1199ee;
    background-color: transparent;
    border: none;
}
.news_next {
    position: absolute;
    right: 20%;
    font-size: 5rem;
    color: #1199ee;
    background-color: transparent;
    border: none;
}
/* ↑↑↑↑↑↑↑↑↑↑ SECTION NEWS AREA ↑↑↑↑↑↑↑↑↑↑ */



/* ↓↓↓↓↓↓↓↓↓↓ SECTION AUDITION AREA ↓↓↓↓↓↓↓↓↓↓ */
#audition {
    width: 100%;
    background-color: #000000;
    background-attachment: fixed;
}
.auditionbox {
    position: relative;
    width: 100%;
    height: 70rem;
    margin: 10rem auto;
    background-image: url('../img/5. Auditions/Audition BG.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.audition-btn-trigger{
    border: 1px solid #1199ee;
    background: transparent;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 300;
    padding: 1.5rem 3rem;
    display: inline-block;
    margin: 0 auto;
    margin-top: 4rem;
    border-radius: 4px;
    cursor: pointer;
}
.audition-btn-trigger:hover{
    text-decoration: none;
    color: #1199ee;
    background-color: #ffffff;
    transition: background 0.5s ease, padding 0.8s linear;
}


.audition-btn {
    border: 1px solid #1199ee;
    background-color: rgba(0, 0, 0, 0);
    font-size: 2rem;
    color: #1199ee;
    font-weight: 500;
    padding: 1rem 2rem;
    text-align: center;
    width: 15rem;
    display: block;
    margin: 0 auto;
    margin-top: 2rem;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
}
.audition-btn:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #333333;
    transition: background 0.2s ease, padding 0.8s linear;
}
.audition_overlay {
    background-color: rgba(33, 33, 33, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.audition_modal {
    visibility: hidden;
}

.audition_modal_contents {
    background: #FFF;
    -webkit-box-shadow: 0 0 8px 2px rgba(182, 182, 182, 0.75);
    -moz-box-shadow: 0 0 8px 2px rgba(182,182,182, 0.75);
    -o-box-shadow: 0 0 8px 2px rgba(182,182,182,0.75);
    box-shadow: 0 0 8px 2px rgba(182, 182, 182, 0.75);
    width: 50%;
    position: absolute;
    left: 42%;
    margin-left: -16%;
    top: 15%;
    min-height: 450px;
}
.audition_modal-header{
    border-bottom: 1px solid #ccc;
}
.audition_modal-header h3{
    color: #34495E;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
}
.audition_modal-header .mobile-close{
    display: none;
}
.audition_modal-header span{
    font-weight: 200;
}
.audition_modal-body{
    width: 100%;
}
.audition_modal-body p{
    color: #34495E;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
}
.audition_modal-body .content-left {
    height: 225px;
    width: 50%;
    position: relative;
    top: 55px;
    float: left;
    border-right: 1px solid #CCC;
}

.audition_modal-body .content-right{
    height: 225px;
    width: 50%;
    position: relative;
    top: 55px;
    float: left;
}
.audition_modal_contents h1 {
    margin: 0;
    padding: 0;
    line-height: 32rem;
    text-align: center;
    display: block;
}

.audition_modal_close {
    position: absolute;
    right: 2rem;
    top: 2rem;
    text-decoration: none;
    display: none;
}

.audition_modal-show {
    visibility: visible;
}

.audition_modal-transition {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.audition_modal-show .audition_modal-transition {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

@media (max-width: 1139px){
    .audition_modal p{
        text-align: center;
    }
    .audition_modal:after {
        clear: both;
        content: '';
        display: table;
    }
    .audition_modal-body .content-left{
        width: 80%;
        display:block;
        float: none;
        margin: 0 auto;
        border-right: none;
        border-bottom: 1px solid #ccc;
    }
    .audition_modal-body .content-right{
        width: 80%;
        display: block;
        margin: 40px auto;
        float: none;
        border-right: none;
    }
}
@media(max-width: 1027px){
    .audition_modal-header h3{
        font-size: 18px;
    }
}
@media (max-width : 767px) {
    .audition_modal_contents {
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        margin: 0;
    }
    .audition_modal-header h3{
        font-size: 22px;
    }
    .audition_modal-header .mobile-close{
        display: block;
        position: absolute;
        right: 10px;
        top: 10px;
        cursor: pointer;
    }
    .audition_modal_close {
        display: block;
    }

    .audition_modal-transition {
        -webkit-transform: translateX(-0) translateY(150%);
        -moz-transform: translateX(-0) translateY(150%);
        -ms-transform: translateX(-0) translateY(150%);
        transform: translateX(-0) translateY(150%);
    }
}
@media (max-width: 495px){
    .audition_modal-header h3{
        font-size: 18px;
    }
}
@media (max-width: 415px){
    .audition_modal-header h3{
        font-size: 15px;
    }
}
/* ↑↑↑↑↑↑↑↑↑↑ SECTION AUDITION AREA ↑↑↑↑↑↑↑↑↑↑ */



/* ↓↓↓↓↓↓↓↓↓↓ FOOTER AREA ↓↓↓↓↓↓↓↓↓↓ */
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 10rem;
    background-color: #000000;
}
.f-logo {
    position: relative;
    width: 20%;
    height: 10rem;
}
.f-logo > a {
    position: relative;
    width: 100%;
    height: inherit;
    display: block;
}
.f-logo > a > img {
    width: 100%;
}
.f-sns {
    width: 60%;
    max-width: 60rem;
}
.f-sns > ul {
    width: 100%;
    height: 10rem;
    padding: 1rem 0 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.f-sns > ul > li {
    width: 100%;
}
.f-sns > ul > li > a {
    position: relative;
    width: 100%;
    display: block;
}
.f-sns > ul > li > a:hover {
    padding: 50%;
    border: 2px solid white;
}
.f-sns > ul > li > a > img {
    max-width: 5rem;
}
.copyright {
    position: relative;
    width: 20%;
    max-width: 10rem;
    float: right;
}
.copyright > h3 {
    width: 100%;
    height: 10rem;
    font-size: 1.2rem;
    color: #ffffff;
}
/* ↑↑↑↑↑↑↑↑↑↑ FOOTER AREA ↑↑↑↑↑↑↑↑↑↑ */



/* ↓↓↓↓↓↓↓↓↓↓ parallax scrolling AREA ↓↓↓↓↓↓↓↓↓↓ */
/* ↑↑↑↑↑↑↑↑↑↑ parallax scrolling AREA ↑↑↑↑↑↑↑↑↑↑ */



/* ↓↓↓↓↓↓↓↓↓↓ MEDIA QUERY AREA ↓↓↓↓↓↓↓↓↓↓ */
@media (max-width: 1280px) {}
@media (max-width: 960px) {}
@media (max-width: 720px) {
    html, body {
        font-size: 8px;
    }
    .ghostbox {
        display: block;
        border: 2px solid #ffffff;
    }
    .sidenav {}
    .sidenav a {font-size: 2rem;}
}
@media (max-width: 640px) {
    html, body {
        font-size: 6px;
    }
}
@media (max-width: 360px) {
    html, body {
        font-size: 5px;
    }
}
@media (max-width: 240px) {
    html, body {
        font-size: 4px;
    }
}
/* ↑↑↑↑↑↑↑↑↑↑ MEDIA QUERY AREA ↑↑↑↑↑↑↑↑↑↑ */