/* ▼全ページ共通 */
.bgGradient {
    position: relative;
    overflow: visible;
    border-radius: 10rem;
    padding-top: 0.6rem;
    padding-bottom: 20rem;
}

.bgGradient::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* background-image: linear-gradient(to bottom right, #fffdfd 15%, #d8e5f7 100%); */
    background-image: url(../img/common/bgBoby.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    z-index: -999;
    pointer-events: none;
}

@media only screen and (max-width:1215px) {
    .bgGradient {
        order: 1;
        padding-top: 11.4rem;
        padding-bottom: 8rem;
    }

    .bgGradient::before {
        /* background-image: linear-gradient(to bottom right, #fffdff 15%, #d8e5f7 100%); */
        background-image: url(../img/common/bgBoby_sp.png);
    }
}

.cmnRecruit_title {
    z-index: 2;
    position: relative;
}

.cmnRecruit_title .title_jpn {
    margin-left: 5rem;
}

@media only screen and (max-width:1215px) {
    .cmnRecruit_title .title_jpn {
        margin-left: 0rem;
    }
}

/*-----------------------------------------------
    secHero
-----------------------------------------------*/
.secHero {
    position: relative;
    top: -13rem;
}

.copyTextWrapper {
    /* opacity: 0; */
    position: absolute;
    bottom: -3rem;
    right: -0.5rem;
    text-align: right;
    display: flex;
    flex-direction: column;
}

/* 発火用クラス */
.copyTextWrapper.animate {
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.copyLine {
    font-size: var(--pcFontSize80);
    position: relative;
    white-space: nowrap;
    opacity: 0;
    display: inline-block;
    transform: skewX(-10deg);
    z-index: 2;
    letter-spacing: -0.5rem;
}

.copyLine.secondLine {
    margin-top: 2.5rem;
}

.copyLine.txtMin {
    font-size: var(--pcFontSize30);
    letter-spacing: 0;
    margin-top: 5rem;
}

.copyLine .markWhite:before {
    content: '';
    position: absolute;
    top: 4.5rem;
    left: 0rem;
    width: 100%;
    height: 6rem;
    background: var(--Colorwhite);
    transform: skewX(10deg);
    z-index: -1;
    transform-origin: left center;
}

.copyLine.txtMin .markWhite:before {
    top: 1rem;
    left: 0;
    height: 3rem;
}

.copyLine .markWhite {
    position: relative;
    z-index: 2;
}

.copyTextWrapper.animate .firstLine {
    transform: rotate(-5deg) skewX(-10deg);
    animation: fadeSlideRight 0.6s ease-out 0.6s forwards;
}

.copyTextWrapper.animate .secondLine {
    transform: rotate(-5deg) skewX(-10deg);
    animation: fadeSlideLeft 0.6s ease-out 0.7s forwards;
}

.copyTextWrapper.animate .ThirdLine {
    transform: rotate(-5deg) skewX(-10deg);
    animation: fadeSlideRight 0.6s ease-out 0.6s forwards;
}

/* フェードイン共通 */
@keyframes fadeInUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 左→右＋フェードイン＋回転保持 */
@keyframes fadeSlideRight {
    from {
        transform: translateX(-50px) rotate(-5deg) skewX(-10deg);
        opacity: 0;
    }

    to {
        transform: translateX(0) rotate(-5deg) skewX(-10deg);
        opacity: 1;
    }
}

/* 左→右＋フェードイン＋回転保持 */
@keyframes fadeSlideLeft {
    from {
        transform: translateX(50px) rotate(-5deg) skewX(-10deg);
        opacity: 0;
    }

    to {
        transform: translateX(0) rotate(-5deg) skewX(-10deg);
        opacity: 1;
    }
}

@media only screen and (max-width:1215px) {
    .secHero {
        top: 0;
        margin-top: 4rem;
    }

    .copyLine {
        letter-spacing: 0;
        font-size: var(--spFontSize30);
    }

    .copyLine.secondLine {
        margin-top: 1rem;
    }

    .copyLine.ThirdLine {
        margin-top: 2.2rem;
    }

    .copyLine.txtMin {
        font-size: var(--spFontSize13);
        left: -0.6rem;
    }

    .copyLine .markWhite:before {
        top: 1.5rem;
        width: 100%;
        height: 2.5rem;
    }

    .copyLine.txtMin .markWhite:before {
        top: 0.5rem;
        left: 0;
        height: 1rem;
    }

    .copyTextWrapper {
        bottom: -6.5rem;
        right: -0.5rem;
    }
}

/*-----------------------------------------------
    secTab
-----------------------------------------------*/
.secTab {
    margin-top: 20rem;
}

.secTab .listTab {
    display: flex;
    gap: 4.5rem;
    justify-content: center;
}

.secTab .itemTab {
    width: 47rem;
    height: 15rem;
    background: var(--Colorwhite);
    border-radius: 4rem;
    box-shadow: 0px 10px 0px 0px rgba(0, 0, 0, 0.05);
    position: relative;
}

.secTab .linkTab {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secTab .titTab {
    font-size: var(--pcFontSize22);
    letter-spacing: var(--pcLetterSpacing22_30);
    font-weight: bold;
    margin-bottom: 1.3rem;
}

.secTab .txtTab {
    font-size: var(--pcFontSize30);
    letter-spacing: var(--pcLetterSpacing30_50);
    font-weight: bold;
}

.secTab .iconArrow {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(45deg, rgb(45, 120, 232) 0%, rgb(61, 213, 131) 99%);
    position: absolute;
    top: calc(50% - 1rem);
    right: 4rem;
}

.secTab .iconArrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/career-up/iconArrowUnder.png) center center / cover no-repeat;
    width: 1rem;
    height: 2.2rem;
}

@media only screen and (max-width:1215px) {
    .secTab {
        margin-top: 14rem;
    }

    .secTab .itemTab {
        width: 30.285%;
        height: 13.6rem;
        border-radius: 1.5rem;
        text-align: center;
        box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.05);
    }

    .secTab .listTab {
        gap: 1.6rem;
    }

    .secTab .titTab {
        font-size: var(--spFontSize13);
        line-height: var(--spLineHeight13_20);
        letter-spacing: var(--spLetterSpacing13_30);
        margin-bottom: 0.3rem;
        min-height: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .secTab .txtTab {
        font-size: var(--spFontSize16);
        line-height: var(--spLineHeight16_24);
        letter-spacing: var(--spLetterSpacing16_50);
        min-height: 4.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .secTab .iconArrow {
        width: 3rem;
        height: 3rem;
        top: unset;
        bottom: -1.4rem;
        right: unset;
        left: calc(50% - 1.5rem);
    }

    .secTab .iconArrow::before {
        width: 8px;
        height: 18px;
    }
}


/*-----------------------------------------------
    secCareerModel
-----------------------------------------------*/
.cmnRecruit_title.min .title_eng {
    font-size: var(--pcFontSize80);
    margin-bottom: 3.2rem;
}

.cmnRecruit_title.min .title_jpn {
    font-size: var(--pcFontSize18);
    padding-left: 1.3rem;
    margin-left: 4.2rem;
}

@media only screen and (max-width:1215px) {
    .cmnRecruit_title.min .title_eng {
        font-size: var(--spFontSize36);
        margin-bottom: 1rem;
    }

    .cmnRecruit_title.min .title_jpn {
        font-size: var(--spFontSize18);
        padding-left: 0;
        margin-left: 0;
    }
}

.secCareerModel {
    margin-top: 19rem;
    position: relative;
    z-index: 2;
}

.secCareerModel .titRight {
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_30);
    letter-spacing: var(--pcLetterSpacing16_50);
}

.secCareerModel .titRight+.titRight {
    margin-top: 3rem;
}

.secCareerModel .cmnRecruit_title {
    display: flex;
    gap: 30.7rem;
}

.secCareerModel .boxRight {
    margin-top: 5rem;
}

.secCareerModel .boxModel {
    padding: 8rem 16rem 10rem;
    box-shadow: 0 0px 10px var(--box-shadow_Color_10);
    background: var(--Colorwhite);
    border-radius: 10rem;
    margin-top: 8rem;
}

.secCareerModel .boxTit {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.secCareerModel .boxTit .tit {
    font-size: var(--pcFontSize25);
    letter-spacing: var(--pcLetterSpacing25_50);
    font-weight: bold;
}

.secCareerModel .boxTit .txtTag {
    width: 11.4rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    background: #6d8a99;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--pcFontSize18);
    letter-spacing: var(--pcLetterSpacing18_50);
    color: var(--Colorwhite);
    font-weight: bold;
}

.secCareerModel .imgModel {
    display: flex;
    gap: 8rem;
    margin-top: 5rem;
}

@media only screen and (max-width:1215px) {
    .secCareerModel {
        margin-top: 9rem;
    }

    .secCareerModel .cmnRecruit_title {
        gap: 3rem;
        flex-direction: column;
    }

    .secCareerModel .boxRight {
        margin-top: 0;
    }

    .secCareerModel .titRight {
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_26);
        letter-spacing: var(--spLetterSpacing14_30);
    }

    .secCareerModel .titRight+.titRight {
        margin-top: 2.4rem;
    }

    .secCareerModel .boxModel {
        padding: 6rem 0;
        border-radius: 4.5rem;
        margin-top: 5rem;
    }

    .secCareerModel .boxTit .tit {
        font-size: var(--spFontSize18);
        letter-spacing: var(--spLetterSpacing18_30);
    }

    .secCareerModel .boxTit .txtTag {
        width: 9.9rem;
        height: 3.3rem;
        font-size: var(--spFontSize16);
        letter-spacing: var(--spLetterSpacing16_30);
    }

    .secCareerModel .boxTit {
        gap: 1.5rem;
    }

    .secCareerModel .imgModel {
        gap: 2rem;
        margin-top: 3rem;
        flex-direction: column;
    }
}

/*-----------------------------------------------
    secNurturing
-----------------------------------------------*/
.secNurturing {
    /* margin-top: 15rem; */
    padding-top: 15rem;
    position: relative;
}
.secNurturing.lazyloaded:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 138.6rem;
    background: url(../img/career-up/bgLight.png) center top / cover no-repeat;
    top: -50rem;
}

.secNurturing .imgTit {
    text-align: center;
    margin-bottom: 11rem;
    position: relative;
}

.secNurturing .titUnder {
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_30);
    letter-spacing: var(--pcLetterSpacing16_50);
}

.secNurturing .titUnder+.titUnder {
    margin-top: 3rem;
}

.secNurturing .boxUnder {
    margin-top: 6.5rem;
    position: relative;
}

.secNurturing .imgNurturing {
    position: relative;
    top: -0.8rem;
}

@media only screen and (max-width:1215px) {
    .secNurturing {
        /* margin-top: 8rem; */
        padding-top: 8rem;
    }
    .secNurturing.lazyloaded:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100vh;
        background: url(../img/career-up/bgLight_sp.png) center center / cover no-repeat;
        top: -12rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .secNurturing .imgTit {
        margin-bottom: 5.4rem;
    }

    .secNurturing .boxUnder {
        margin-top: 3rem;
    }

    .secNurturing .titUnder {
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_26);
        letter-spacing: var(--spLetterSpacing14_30);
    }

    .secNurturing .boxUnder {
        margin-top: 3rem;
    }

    .secNurturing .titUnder+.titUnder {
        margin-top: 2.4rem;
    }

    .secNurturing .imgNurturing {
        position: relative;
        top: 0;
        margin-top: 3.4rem;
    }
}
@media only screen and (max-width:500px) {
    .secNurturing.lazyloaded:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 50.4rem;
        background: url(../img/career-up/bgLight_sp.png) center center / cover no-repeat;
        top: -17rem;
    }
}
/*-----------------------------------------------
    secTicker
-----------------------------------------------*/
.secTicker {
    overflow: hidden;
    margin-top: 20rem;
}

.secTicker .boxTicker {
    display: flex;
}

.secTicker .itemTicker:nth-child(odd) {
    animation: loop 160s -80s linear infinite;
    backface-visibility: hidden;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.secTicker .itemTicker:nth-child(even) {
    animation: loop2 160s linear infinite;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}


@media only screen and (max-width:1215px) {
    .secTicker {
        margin-top: 8rem;
}
    .secTicker .imgTicker {
        height: 24rem;
        width: 247.2rem;
    }
}

/*-----------------------------------------------
    secEvaluation
-----------------------------------------------*/
.secEvaluation{
    margin-top: 21rem;
}
.secEvaluation .innerEvaluation{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.secEvaluation .innerEvaluation{
    margin-top: 5.2rem;
}
.secEvaluation .titUnder {
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_30);
    letter-spacing: var(--pcLetterSpacing16_50);
}
.secEvaluation .titUnder+.titUnder {
    margin-top: 3rem;
}
@media only screen and (max-width:1215px) {
    .secEvaluation{
        margin-top: 7.4rem;
    }
    .secEvaluation .innerEvaluation{
        margin-top: 3rem;
    }
    .secEvaluation .titUnder {
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_26);
        letter-spacing: var(--spLetterSpacing14_30);
    }
    .secEvaluation .titUnder+.titUnder {
        margin-top: 2.4rem;
    }
    .secEvaluation .innerEvaluation {
        flex-direction: column;
        gap: 3.5rem;
    }
}

/*-----------------------------------------------
    secListEvaluation
-----------------------------------------------*/
.secListEvaluation{
    margin-top: 10rem;
}
.secListEvaluation .itemList{
    margin-top: 10rem;
    padding: 12rem 0;
    box-shadow: 0 0px 10px var(--box-shadow_Color_10);
    background: var(--Colorwhite);
    border-radius: 10rem;
}
.secListEvaluation .boxTit{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.secListEvaluation .boxTit .titNum{
    font-size: var(--pcFontSize45);
    font-weight: bold;
    background: linear-gradient(90deg, #2d78e8, #3dd583); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}
.secListEvaluation .boxTit .titItem{
    font-size: var(--pcFontSize40);
    letter-spacing: var(--pcLetterSpacing40_50);
    font-weight: bold;
}
.secListEvaluation .boxInner{
    position: relative;
    margin-top: 6rem;
    padding-top: 8rem;
    border-top: 0.1rem solid rgba(37, 46, 51, 0.3);
}
.secListEvaluation .itemList:nth-child(n+2) .boxInner{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.secListEvaluation .boxInnerTit{
    display: flex;
    gap: 5rem;
    align-items: center;
    justify-content: center;
}
.secListEvaluation .boxInnerTit .titInner{
    font-size: var(--pcFontSize50);
    font-weight: bold;
}
.secListEvaluation .boxInnerTit .titInner:nth-child(2){
    position: relative;
}
.secListEvaluation .boxInnerTit .titInner:nth-child(2)::before{
    content: '';
    position: absolute;
    background: url(../img/career-up/iconInnerTit.png) center center / cover no-repeat;
    width: 2rem;
    height: 2rem;
    top: calc(50% - 1rem);
    left: -3.5rem;
}
.secListEvaluation .titSub{
    font-size: var(--pcFontSize18);
    font-weight: bold;
    letter-spacing: var(--pcLetterSpacing18_50);
    text-align: center;
    margin-top: 4rem;
}
.secListEvaluation .listInner{
    display: flex;
    flex-wrap: wrap;
    gap: 4rem ;
    margin-top: 6rem;
}
.secListEvaluation .listInner .itemInner{
    width: calc((100% - 4rem) / 2);
    border-radius: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 2rem 6rem;
    background: linear-gradient(90deg, #d9e5f7, #f8f8fd); 
}
.secListEvaluation .listInner .titList{
    font-size: var(--pcFontSize25);
    line-height: var(--pcLineHeight25_45);
    letter-spacing: var(--pcLetterSpacing25_50);
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 2rem;
}
.secListEvaluation .listInner .imgRight{
    width: 41.09%;
    max-width: 30rem;
}
.secListEvaluation .boxLeft{
    width: 55rem;
    flex-shrink: 0;
}
.secListEvaluation .secMovie{
    width: 57.334%;
}
.secListEvaluation .boxLeft .titEng{
    font-size: var(--pcFontSize22);
    letter-spacing: 0;
    font-weight: bold;
    background: linear-gradient(90deg, #2d78e8, #3dd583); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}
.secListEvaluation .boxLeft .itemTit{
    font-size: var(--pcFontSize26);
    letter-spacing: var(--pcLetterSpacing26_50);
    font-weight: bold;
    margin-top: 2.2rem;
}
.secListEvaluation .boxLeft .itemTxt{
    font-size: var(--pcFontSize18);
    line-height: var(--pcLineHeight18_34);
    letter-spacing: var(--pcLetterSpacing18_50);
    font-weight: bold;
    padding: 2rem 3rem;
    border-radius: 2rem;
    background: linear-gradient(90deg, #d9e5f7, #f8f8fd); 
    margin-top: 6rem;
}

@media only screen and (max-width:1215px){
    .secListEvaluation {
        margin-top: 5rem;
    }
    .secListEvaluation .itemList {
        margin-top: 3rem;
        padding: 5.4rem 0 6rem;
        border-radius: 4.5rem;
    }
    .secListEvaluation .boxTit .titNum {
        font-size: var(--spFontSize22);
        flex-shrink: 0;
        padding-top: 0.7rem;
    }
    .secListEvaluation .boxTit .titItem {
        font-size: var(--spFontSize20);
        line-height: var(--spLineHeight20_36);
        letter-spacing: var(--spLetterSpacing20_36);
    }
    .secListEvaluation .boxTit {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .secListEvaluation .boxInnerTit {
        display: flex;
        gap: 2.2rem;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .secListEvaluation .boxInnerTit .titInner:nth-child(2)::before {
        width: 1rem;
        height: 1rem;
        top: -1.5rem;
        left: calc(50% - 0.5rem);
    }
    .secListEvaluation .boxInnerTit .titInner {
        font-size: var(--spFontSize26);
    }
    .secListEvaluation .boxInner {
        margin-top: 1.6rem;
        padding-top: 2.7rem;
    }
    .secListEvaluation .titSub {
        margin-top: 2.7rem;
    }
    .secListEvaluation .listInner .itemInner {
        width: 100%;
        border-radius: 2.5rem;
        padding: 1rem 1rem 1rem 2.4rem;
    }
    .secListEvaluation .listInner .titList {
        font-size: var(--spFontSize20);
        line-height: var(--spLineHeight20_32);
        letter-spacing: var(--spLetterSpacing20_30);
        margin-right: 2rem;
    }
    .secListEvaluation .listInner .imgRight {
        width: 45.57%;
        max-width: 14.4rem;
    }
    .secListEvaluation .listInner {
        gap: 2rem;
        margin-top: 4rem;
    }
    .secListEvaluation .boxLeft .titEng {
        font-size: var(--spFontSize16);
    }
    .secListEvaluation .boxLeft .itemTit {
        font-size: var(--spFontSize16);
        line-height: var(--spLineHeight16_22);
        letter-spacing: var(--spLetterSpacing16_30);
        margin-top: 1.2rem;
    }
    .secListEvaluation .boxLeft .itemTxt {
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_26);
        letter-spacing: var(--spLetterSpacing14_30);
        padding: 1.6rem 2rem;
        border-radius: 2.5rem;
        margin-top: 2.6rem;
    }
    .secListEvaluation .boxLeft {
        width: 100%;
    }
    .secListEvaluation .itemList:nth-child(n+2) .boxInner {
        flex-direction: column;
        gap: 3rem;
    }
    .secListEvaluation .secMovie {
        width: 100%;
    }
}
@media only screen and (max-width:380px){
    .secListEvaluation .titSub {
            font-size: var(--spFontSize16);
    }
}
/*-----------------------------------------------
    secMovie
-----------------------------------------------*/
.boxYoutube{
    width: 100%;
}
.boxYoutube .img{
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.28%;
}
.boxYoutube .img::after,
.boxYoutube .img::before{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
/* .boxYoutube .img::before{
    background-color: #000;
    opacity: 0.6;
} */
.boxYoutube .img::after{
    width: 7rem;
    height: 5rem;
}
.secMovie .boxYoutube.lazyloaded .img::after{
    background: url(../img/career-up/iconMovie.png) center top / cover no-repeat;
}
@media only screen and (max-width:1215px){
    /* boxYoutube */
    .boxYoutube{
        width: 100%;
    }
    .boxYoutube .img{
        padding-top: 56.276%;
    }
    .boxYoutube .img::after{
        width: 3.5rem;
        height: 2.5rem;
    }
}

/*-----------------------------------------------
    youtube_popup
-----------------------------------------------*/
#youtube_popup{
    display: none;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    position: fixed;
    top: 0;
    left: 0;
}
#youtube_popup .popupContainer{
    display: table;
    width: 100%;
    height: 100%;
}
#youtube_popup .popupContents{
    display: table-cell;
    vertical-align: middle;
}
#youtube_popup .popupMain{
    padding: 30px;
}
@media only screen and (max-width:1215px){
    #youtube_popup .popupMain{
        width: 100%;
        margin: 0 auto;
        padding: 15px;
    }
}

/* secPopup */
#youtube_popup .popup{
    margin: 0 auto;
    position: relative;
}
#youtube_popup .btnClose{
    width: 30px;
    height: 30px;
    background: #000;
    border: 2px solid #fff;
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 9999;
    box-shadow: 0 0 3px 3px rgba(0,0,0,0.2);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 100%;
}
#youtube_popup .boxYouTube{
    position: relative;
    background: #000;
}
#youtube_popup .boxYouTube iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
@media only screen and (max-width:1215px){
    #youtube_popup .btnClose{
        width: 20px;
        height: 20px;
        top: -10px;
        right: -10px;
        font-size: 10px;
    }
}