@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --text-color: #0F0F0F;
    --theme-color: #0452D0;
    --theme-light-color: #E5EEFC;
    --gray: #F6F6F6;

    --base-font: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

    --transition: .2s;
    --font-poppins: "Poppins", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    
    --wrap: 1180px;
    --space: calc((100vw - var(--wrap))/2);
    --header-height: 80px;
}

/* common-css */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

input::placeholder{
	color: #ccc;
}
input::-ms-input-placeholder{
	color: #ccc;
}
input:-ms-input-placeholder{
	color: #ccc;
}

body{
    min-width: 1200px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    line-height: 1.8;
    color: #000;
    letter-spacing: .06em;
    font-family: var(--base-font);
    padding-top: var(--header-height);
}

.wrap{
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
}

a{
    cursor: pointer;
    transition: .2s;
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
@media screen and (min-width: 992px) {
    a:hover{
        opacity: .6;
    }
}
img{
    max-width: 100%;
    vertical-align: bottom;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.ps-re{
    position: relative;
    z-index: 0;
}
.ps-ab{
    position: absolute;
}


/* FADE */
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 600ms;
}
.fadeinr {
    opacity : 0;
    transform : translate(50px, 0);
    transition : all 600ms;
}
.fadeinb {
    opacity : 0;
    transform : translate(0, -50px);
    transition : all 600ms;
    }

.fadeinl {
    opacity : 0;
    transform : translate(-50px, 0);
    transition : all 600ms;
    }

.fadeino {
    opacity : 0;
    transition : all 600ms;
    }

.ts1 {
    transition-delay: 200ms;
}

.ts2 {
    transition-delay: 400ms;
}

.ts3 {
    transition-delay: 600ms;
}

.ts4 {
    transition-delay: 800ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }

.fadeino.scrollin {
   opacity : 1;
}


/* COMMON */
.pc-none{
    display: none;
}
.section-padding{
    padding: 100px 0 140px;
}
.bg-gray{
    background-color: var(--gray);
}
.bg-theme-color{
    background-color: #da005d;
}
.text-white{
    color: #fff;
}
.text-white .title-en span{
    color: #fff;
}
.text-white .title-en span::before{
    opacity: 0.2;
}
.title{
    text-align: center;
    margin-bottom: 60px;
}
.title-en span{
    font-size: 18px;
    color: #da005d;
    letter-spacing: 0.06em;
    font-weight: bold;
    font-family: var(--font-poppins);
    position: relative;
    line-height: 140px;
    z-index: 0;
    display: block;
    opacity: 0;
    filter: blur(10px);
    transition: .8s;
}
.title-en span::before{
    content: attr(data-text);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
    text-align: center;
    font-size: 100px;
    line-height: 1;
    color: #fff;
    width: max-content;
    z-index: -1;
    text-shadow:1px 1px 0 rgba(218,0,93,0.1), -1px -1px 0 rgba(218,0,93,0.1),
                -1px 1px 0 rgba(218,0,93,0.1), 1px -1px 0 rgba(218,0,93,0.1),
                0px 1px 0 rgba(218,0,93,0.1),  0-1px 0 rgba(218,0,93,0.1),
                -1px 0 0 rgba(218,0,93,0.1), 1px 0 0 rgba(218,0,93,0.1);
}
.title-en.scrollin span{
    opacity: 1;
    filter: blur(0);
}
.title-text{
    font-size: 50px;
    font-weight: bold;
    text-align: center;
}
.title-desc{
    margin-top: 60px;
    text-align: center;
}
.view-more a{
    display: block;
    text-align: center;
    font-weight: bold;
    font-family: var(--font-poppins);
    line-height: 1;
    padding: 30px 0;
    position: relative;
}
.view-more a::before{
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 20px;
    width: 14px;
    height: 14px;
    transition: var(--transition);
}
.view-more a span{
    display: block;
    font-size: 12px;
    margin-top: 10px;
}
.view-more.bg-bk a{
    background-color: var(--text-color);
    color: #fff;
    border: 1px solid var(--text-color);
}
.view-more.bg-theme a{
    background-color: #da005d;
    color: #fff;
    border: 1px solid #da005d;
}
.view-more.bg-bk a::before,
.view-more.bg-theme a::before{
    background: url(../img/common/arrow-wh.svg) no-repeat center center / contain;
}
@media screen and (min-width: 992px) {
    .view-more a:hover{
        opacity: 1;
        background-color: #fff !important;
        color: var(--text-color) !important;
    }
    .view-more a:hover::before{
        -webkit-filter: brightness(0) grayscale(100%) invert(0);
        -moz-filter: brightness(0) grayscale(100%) invert(0);
        -o-filter: brightness(0) grayscale(100%) invert(0);
        -ms-filter: brightness(0) grayscale(100%) invert(0);
        filter: brightness(0) grayscale(100%) invert(0);
    }
}


/* HEADER */
#header{
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}
.header-logo{
    width: 360px;
    height: 160px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.header-menu nav{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}
.header-menu ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 30px;
}
.header-menu ul li a{
    font-size: 14px;
    font-weight: 500;
    display: block;
}
.header-menu ul li.bg-bk a{
    color: #fff;
    background-color: var(--text-color);
    padding: 7px 19px;
    border-radius: 20px;
    border: 1px solid var(--text-color);
    display: block;
    line-height: 1;
}
@media screen and (min-width: 992px) {
    .header-menu ul li.bg-bk a:hover{
        opacity: 1;
        background-color: #fff;
        color: var(--text-color);
    }
}
.header-menu__btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #da005d;
    color: #fff;
    position: relative;
    width: 200px;
    text-align: center;
    height: var(--header-height);
    font-size: 14px;
    border: 1px solid #da005d;
    font-weight: bold;
}
.header-menu__btn a span{
    display: block;
    font-size: 13px;
    font-family: var(--font-poppins);
}
.header-menu__btn a::before{
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 16px;
    background: url(../img/common/arrow-wh.svg) no-repeat center center / contain;
    transition: var(--transition);
}
.header-menu__btn.bg-bk a{
    background-color: var(--text-color);
    color: #fff;
    border: 1px solid var(--text-color);
}
@media screen and (min-width: 992px) {
    .header-menu__btn a:hover{
        opacity: 1;
        color: var(--text-color);
        background-color: #fff;
    }
    .header-menu__btn a:hover::before{
        -webkit-filter: brightness(0) grayscale(100%) invert(0);
        -moz-filter: brightness(0) grayscale(100%) invert(0);
        -o-filter: brightness(0) grayscale(100%) invert(0);
        -ms-filter: brightness(0) grayscale(100%) invert(0);
        filter: brightness(0) grayscale(100%) invert(0);
    }
}
.nav-toggle-wrap{
    display: none;
}


/* FOOTER */
#footer{
    border-top: 4px solid #da005d;
    background-color: var(--gray);
    padding: 48px 0;
}
.footer-flex{
    justify-content: space-between;
    align-items: center;
}
.footer-flex__logo{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.footer-flex__logo-text a{
    font-size: 14px;
}
.footer-flex__logo-text a::after{
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    background: url(../img/common/icon-link-pink.png) no-repeat center center / contain;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.footer-flex__copyright{
    font-size: 12px;
}


/* INDEX */
.mv{
    padding-left: 60px;
    position: relative;
}
.mv-img video,
.mv-img img{
    width: 100%;
    vertical-align: bottom;
}
.mv-text{
    position: absolute;
    z-index: 1;
    right: 9.42%;
    bottom: 16.12%;
    line-height: 1;
    width: max-content;
}
.mv-text.sp{
    display: none;
}
.mv-text span{
    background-color: #fff;
    line-height: 1;
    display: inline-block;
    font-size: 2.63vw;
    font-weight: bold;
    margin-bottom: 1.1vw;
    padding: 0.694vw 1.042vw;
    letter-spacing: 0.06em;
}
.mv-text span:last-child{
    margin-bottom: 0;
}
.mv-scroll{
    position: absolute;
    transform: translateX(-50%);
    left: 30px;
    bottom: 0;
}
.mv-scroll__text{
    writing-mode: vertical-rl;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}
.mv-scroll__bar{
    width: 1px;
    height: 140px;
    background-color: #da005d;
    margin: 0 auto;
    position: relative;
}
.mv-scroll__bar span{
    position: absolute;
    top: 0;
    left: -1px;
    height: 140px;
    width: 3px;
    background: linear-gradient(to bottom, #da005d 50%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
    border-radius: 5px;
    background-position: 0 -140px;
    background-size: 100% 200%;
    animation: scrolldown 2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}
@keyframes scrolldown{
    0% {
        background-position: 0 -140px;
    }
    75% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 140px;
    }
}


/* TOP-MESSAGE */
.top-message__title{
    margin-bottom: 0;
}
.top-message__lead{
    font-size: 36px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 60px;
}
.top-message__lead span{
    font-size: 46px;
}
.top-message__text{
    text-align: center;
    margin-bottom: 60px;
}
.top-message__grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
}


/* TOP-WORKS */
.top-works__grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.top-works__grid-item a{
    display: block;
    height: 100%;
    background-color: #fff;
    padding: 40px 40px 65px;
    position: relative;
    border: 2px solid transparent;
}
.top-works__grid-item a::before{
    content: "";
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 14px;
    height: 14px;
    background: url(../img/common/arrow.png) no-repeat center center / contain;
    transition: var(--transition);
}
@media screen and (min-width: 992px) {
    .top-works__grid-item a:hover{
        opacity: 1;
        border: 2px solid #da005d;
    }
    .top-works__grid-item a:hover::before{
        right: 10px;
    }
}
.top-works__grid-item__flex{
    justify-content: space-between;
    margin-bottom: 20px;
}
.top-works__grid-item__flex-num{
    color: #da005d;
    font-weight: bold;
    font-family: var(--font-poppins);
}
.top-works__grid-item__flex-img{
    width: 100%;
    max-width: 160px;
}
.top-works__grid-item__ttl{
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}


/* TOP-PEOPLE */
.top-people__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.top-people__grid-item__img{
    margin-bottom: 32px;
    cursor: pointer;
}
.top-people__grid-item__img-inner{
    padding-top: 115.78%;
    position: relative;
    overflow: hidden;
}
.top-people__grid-item__img-inner::before{
    content: "";
    width: 40px;
    height: 30px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    background: url(../img/common/icon-youtube.svg) no-repeat center center / contain;
    z-index: 1;
}
.top-people__grid-item__img-inner img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}
@media screen and (min-width: 992px) {
    .top-people__grid-item__img:hover .top-people__grid-item__img-inner img{
        transform: scale(1.1);
    }
}
.top-people__grid-item__lead{
    margin-bottom: 20px;
}
.top-people__grid-item__lead span{
    display: inline-block;
    color: #da005d;
    font-size: 18px;
    font-weight: bold;
    background-color: #fff;
    margin-bottom: 10px;
    padding: 1px 14px;
}
.top-people__grid-item__lead span:last-child{
    margin-bottom: 0;
}
.top-people__grid-item__name{
    text-align: right;
    font-size: 14px;
}
.top-people__grid-item__name span{
    display: inline-block;
    font-size: 22px;
    font-weight: bold;
    margin-left: 20px;
}


/* TOP-COMPANY */
.top-company__flex{
    justify-content: space-between;
}
.top-company__flex-img{
    width: 100%;
    max-width: 380px;
}
.top-company__flex-cont{
    width: 100%;
    max-width: 700px;
}
.top-company__flex-cont ol li{
    font-size: 18px;
    font-weight: bold;
    counter-increment: list-counter;
    position: relative;
    padding: 30px 0 30px 60px;
    line-height: 1.33;
    border-bottom: 1px solid #eee;
}
.top-company__flex-cont ol li::after{
    content: "";
    width: 40px;
    height: 1px;
    background-color: #da005d;
    position: absolute;
    bottom: -1px;
    left: 0;
}
.top-company__flex-cont ol li::before{
    content: counter(list-counter, decimal-leading-zero);
    display: inline-block;
    position: absolute;
    top: 31px;
    left: 20px;
    font-family: var(--font-poppins);
    color: #da005d;
    font-size: 18px;
}


/* TOP-PICTURES */
.top-pictures__slider-wrap{
    padding-left: var(--space);
}
.top-pictures__slider-item{
    width: 420px;
    margin-right: 10px;
    position: relative;
}
.top-pictures__slider-item__img{
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}
.top-pictures__slider-item__img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-pictures__slider-item__text{
    position: absolute;
    right: 0;
    bottom: 20px;
    z-index: 1;
    background-color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 10px;
}
.top-pictures__nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 43px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.top-pictures__nav-arrow{
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    background-color: #eee;
    transition: var(--transition);
}
.top-pictures__nav-arrow::after{
    content: "";
    width: 14px;
    height: 14px;
    background: url(../img/common/arrow.png) no-repeat center center / contain;
    display: block;
    -webkit-filter: brightness(0) grayscale(100%) invert(1);
    -moz-filter: brightness(0) grayscale(100%) invert(1);
    -o-filter: brightness(0) grayscale(100%) invert(1);
    -ms-filter: brightness(0) grayscale(100%) invert(1);
    filter: brightness(0) grayscale(100%) invert(1);
    transition: var(--transition);
}
.top-pictures__nav-arrow.prev::after{
    transform: rotate(180deg);
}
@media screen and (min-width: 992px) {
    .top-pictures__nav-arrow:hover{
        background-color: #faeef3;
    }
    .top-pictures__nav-arrow:hover::after{
        -webkit-filter: initial;
        -moz-filter: initial;
        -o-filter: initial;
        -ms-filter: initial;
        filter: initial;
    }
}
.top-pictures__nav-bar{
    width: 100%;
    max-width: 460px;
    height: 1px;
    background-color: #da005d;
    position: relative;
}
.top-pictures__nav-bar span{
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #da005d;
    transition: var(--transition);
    border-radius: 5px;
}


/* TOP-NUMBERS */
.top-numbers__cont-flex{
    border: 1px solid rgb(250,238,243,0.2);
}
.top-numbers__cont-flex:not(:last-child){
    border-bottom: none;
}
.top-numbers__cont-flex__box{
    border-right: 1px solid rgb(250,238,243,0.2);
    height: 300px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.top-numbers__cont-flex__box:nth-of-type(2){
    border-right: none;
}
.top-numbers__cont-flex:nth-of-type(even) .top-numbers__cont-flex__box:nth-of-type(2),
.top-numbers__cont-flex:nth-of-type(odd) .top-numbers__cont-flex__box:nth-of-type(1){
    width: calc(100% / 3);
}
.top-numbers__cont-flex:nth-of-type(even) .top-numbers__cont-flex__box:nth-of-type(1),
.top-numbers__cont-flex:nth-of-type(odd) .top-numbers__cont-flex__box:nth-of-type(2){
    width: calc((100% / 3) * 2);
}
.top-numbers__cont-flex__box-ttl{
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
}
.top-numbers__cont-flex__box-ttl small{
    display: block;
    font-size: 16px;
    font-weight: bold;
}


/* TOP-RECRUITMENT */
.top-recruitment__grid{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
}
.top-recruitment__grid-item{
    width: calc((100% - 40px) / 3);
}
.top-recruitment__grid .view-more a{
    padding: 41px 0;
}


/* MODAL */
#modal-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    height: 100%;
    background-color: rgb(15 15 15 / .7);
}
#modal{
    display: none;
    position: fixed;
    z-index: 9999;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 1180px;
    background-color: #fff;
}
.modal-inner{
    padding: 100px 80px 110px;
    max-height: 80svh;
    overflow-y: scroll;
    overscroll-behavior: none;
}
.modal-content__grid{
    align-items: center;
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.modal-content__grid-img{
    padding-left: 60px;
}
.modal-content__btns{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
}
.modal-content__num{
    font-family: var(--font-poppins);
    font-weight: bold;
    color: #da005d;
    margin-bottom: 10px;
}
.modal-content__title{
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.4;
    font-size: 40px;
}
.modal-content__body{
    margin-top: 50px;
}
.modal-content__body-text{
    margin-bottom: 20px;
    letter-spacing: 0.014em;
}
.modal-content__body-text:last-child{
    margin-bottom: 0;
}
.modal-content__schedule{
    margin-top: 80px;
    background-color: #F6F6F6;
    padding: 80px;
}
.modal-content__schedule-ttl{
    text-align: center;
    margin-bottom: 40px;
}
.modal-content__schedule-ttl__en{
    font-family: var(--font-poppins);
    font-weight: bold;
    color: #da005d;
    margin-bottom: 14px;
}
.modal-content__schedule-ttl__text{
    font-size: 36px;
    line-height: 1.4;
    font-weight: bold;
}
.modal-content__schedule-flow__box{
    background-color: #fff;
    padding: 40px 40px 40px 100px;
    position: relative;
    margin-bottom: 10px;
}
.modal-content__schedule-flow__box:last-child{
    margin-bottom: 0;
}
.modal-content__schedule-flow__box-time{
    position: absolute;
    top: 40px;
    left: 40px;
    color: #da005d;
    font-weight: bold;
    font-family: var(--font-poppins);
}
.modal-content__schedule-flow__box-flex__img{
    width: 100%;
    max-width: 200px;
    padding-left: 60px;
}
.modal-content__schedule-flow__box-flex__item{
    width: calc(100% - 200px);
}
.modal-content__schedule-flow__box-item__ttl{
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.6;
}
.modal-content__schedule-flow__box-item__ttl:not(:first-child){
    margin-top: 20px;
}
.modal-content__schedule-flow__box-item__text{
    font-size: 14px;
    letter-spacing: 0.014em;
}
.modal-content__btns{
    max-width: 620px;
    width: 100%;
    margin: 40px auto 0;
}
.modal-content__close{
    text-align: center;
    margin-top: 60px;
}
.modal-content__close-text{
    display: inline-block;
    cursor: pointer;
    width: 100px;
    height: 38px;
    line-height: 38px;
    border-radius: 20px;
    border: 1px solid var(--text-color);
    font-size: 14px;
    font-weight: 500;
    background-color: #fff;
    color: var(--text-color);
    transition: var(--transition);
}
@media screen and (min-width: 992px) {
    .modal-content__close-text:hover{
        opacity: 1;
        background-color: var(--text-color);
        color: #fff;
    }
}
.modal-close{
    position: absolute;
    z-index: 1;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.modal-close img{
    display: block;
}
.modal-video-inner {
    width: 50%;
}

.pc-on{
    display: block;
}
.sp-on{
    display: none;
}
.font18{
    font-size: 18px;
}

@media(max-width:767px){
   .pc-on{
    display: none;
} 
.sp-on{
    display: block;
}
}

.center{
    text-align: center;
}
.pc-width50{
    width: 50%;
}
.pc-width55{
    width: 55%;
}
.pc-width46{
    width: 46%;
}
.pc-width47{
    width: 47%;
}
.pc-width75{
    width: 75%;
}
.pc-width76{
    width: 76%;
}
.pc-width53{
    width: 53%;
}
@media(max-width:767px){
 .sp-width85{
    width: 85%!important;
 }
 .sp-width100{
    width: 100%!important;
 }
 .sp-width73{
    width: 73%!important;
 }
 .sp-width68{
     width: 68%!important;
 }
 .sp-height280{
    height: 280px!important;
 }
}
@media (max-width: 767px) {
 .modal-video-inner {
     width: 90%; 
 } 
}

