.hidden-block{
    display: none;
}

/*fixed bg*/
.fixed_bg{
    position: fixed;
    width: 1780px;
    top: 70px;
    z-index: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
}
/*interview header*/
.interview-header{
    padding-top: var(--variableSpaceS);
}
/*Interview Popup
---------------------------------------------------------------------*/
/*POPUP BASE*/
body.fixed{ overflow: hidden; margin-right: 17px; }


body.fixed #popup_background{
	position: fixed;
    width: 100%;
    height: 100vh;
	top: 0;
	z-index: 3;
    background-color: var(--themeColor);
    opacity: 0.8;
}

#popup_background .fixed_bg{
    opacity: 0;
    transition: opacity 0.3s 0.5s ease;
}

body.fixed #popup_background .fixed_bg{
    opacity: 1;
}

#popup_base{
    position: fixed;
    top: 0;
    z-index: 3;
	overflow-y: scroll;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.5s ease;
}

#popup_base.active{
    transform: none;
}

/* .interview-wrap
-------------------------------------------*/
.interview-wrap{
    margin-top: 65px;
    position: relative;
}

@media(min-width: 1000px){
    .interview-wrap{
        margin-top: 120px;
    }
}

.interview-wrap .close-btn{
    display: flex;
    width: var(--variableSpaceS);
    height: var(--variableSpaceS);
    background-color: var(--themeColor);
    color: white;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
}

.interview-wrap .post-link{
    display: flex;
    width: 80%;
    max-width: 500px;
    justify-content: space-around;
    margin: var(--variableSpaceS) auto;
}

.interview-wrap .post-link .hover-item{
    cursor: pointer;
    color: var(--themeColor);
    transition: all 0.3s ease;
}

.interview-wrap .post-link .hover-item:hover{
    color: var(--themeColorLight);
}

.interview-wrap header{
    max-width: 1400px;
    margin: auto;
    position: relative;
}

.interview-wrap .profile{
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0 5%;
    padding: var(--variableSpaceS);
    color: white;
}

@media(min-width: 1000px){
    .interview-wrap .profile{
        position: absolute;
        left: 0;
        bottom: 0;
        width: 23em;
    }
}
.interview-wrap .profile::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--themeColor);
    mix-blend-mode: multiply;
}

.interview-wrap .profile > *{ position: relative;}

.interview-wrap p{
    margin-bottom: 0.3em;
}

.interview-wrap .profile p{
    line-height: 1;
}

.interview-wrap .entry{ margin-bottom: 1.2em;}

.interview-wrap .license{ margin-bottom: 1em;}

.interview-wrap .name{ font-size: 1.35em;margin-bottom: 1em;}

.interview-wrap .rome{
    font-family: var(--englishFont);
    margin-bottom: 1em;
    font-weight: var(--lightFontWeight);
}

.interview-wrap .catch{
    color: var(--themeColor);
    font-size: var(--fontSize30);
    padding: var(--variableSpaceS) 0;
}

.interview-wrap section{
    margin-bottom: var(--variableSpaceS);
}

.interview-wrap h2{
    font-size: var(--fontSize24);
    color: var(--themeColor);
    margin-bottom: 1em;
}

.interview-wrap .from-team{
    padding: 1em;
    background-color: #E3F6FF;
}