@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab:ital,wght@0,100..700;1,100..700&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
@media(max-width:767px) {
    .hide-for-small {
        display: none !important;
    }
}

@media(min-width:768px) {
    .show-for-small {
        display: none !important;
    }
}

html {
    font-size: 62.5%;
    overflow-y: scroll;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    color: #333333;
    font-weight: 400;
    font-style: normal;
    overflow: hidden;
}

a {
    transition: all 0.5s;
}

a:not(.btn):hover {
    opacity: 0.6;
}

#go-top {
    position: fixed;
    bottom: -120px;
    right: 30px;
    opacity: 0;
    transition: all .3s;
    z-index: 99;
    border-radius: 50%;
}

#go-top.show {
    opacity: 1;
    bottom: 70px;
}

#go-top a {
    display: flex;
    flex-direction: column;
    width: 146px;
    height: 105px;
    overflow: hidden;
    position: relative;
}


/* #go-top a:hover {
    background-image: url(../images/index/btn-go-top-hover.svg);
    opacity: 1;
} */


/* #go-top a::after {
    content: "";
    width: 62px;
    height: 62px;
    background-color: #c4eeff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: -2;
    transition: .3s;
    border-radius: 50%;
} */


/* #go-top a:hover {
    opacity: 0.7;
    transform: scale(1.1);
} */

#go-top a:hover::after {}

#go-top a img {
    margin: 0 auto;
}

.ff-kaku {
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.ff-jose {
    font-family: "Josefin Slab", serif;
}
.ff-shuei,.interview-excerpt,.main-title-jp,.title-jp{
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 600;
    font-style: normal;
}
.ff-tsuku{
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
    font-style: normal;
}
/*ANIMATION*/

.anim {
    opacity: 0;
}

.anim.blur {
    opacity: 1;
}

.anim.blur.is-animated,
.add-animation .anim.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
    }
    to {
        filter: blur(0);
        transform: scale(1);
    }
}

.anim.fade {
    opacity: 0;
}

.anim.fade.is-animated {
    opacity: 1;
    animation-name: fade;
    animation-duration: 2s;
}

.anim.slideinBottom.is-animated {
    opacity: 1;
    animation-name: slideinBottom;
    animation-duration: 0.5s;
}

.anim.slidein.is-animated {
    animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.anim.zoomin.is-animated {
  animation: zoomIn 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideIn {
    0% {
        transform: translateX(180px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
    }
    40%,
    100% {
        opacity: 1;
    }
}

@keyframes slideinBottom {
    0% {
        transform: translateY(100px);
    }
    100% {
        transform: translateY(0);
    }
}

.anim.faderight.is-animated {
    opacity: 1;
    animation-name: faderight;
    animation-duration: 2s;
}

.anim.fade.is-animated {
    opacity: 1;
    animation-name: fade;
    animation-duration: 2s;
}

.anim.fadeleft.is-animated {
    opacity: 1;
    animation-name: fadeleft;
    animation-duration: 2s;
}

.anim.fadeup.is-animated {
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    opacity: 1;
}

.anim.fadeup-2.is-animated {
    opacity: 1;
    animation-name: fadeup-2;
    animation-duration: 0.5s;
}

.home .anim.fadedown.is-animated {
    opacity: 1;
    animation-name: fadedown;
    animation-duration: 0.5s;
}

.anim.zoomin.is-animated {
    animation: zoomIn 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes faderight {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadedown {
    from {
        opacity: 0;
        transform: translateY(-150px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeup {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeup-2 {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0px);
    }
}

@keyframes fadeleft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.anim.effectfade {
    opacity: 0;
    transform: translate(0, 20px);
    transition: all 1.5s ease;
}

.anim.effectfade.is-animated {
    opacity: 1;
    transform: translate(0, 0);
}


/*HEADER*/


/* .header-wrapper:after {
    content: "";
    height: 713px;
    width: 713px;
    background-image: url(../images/index/bg-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    border-radius: 50%;
    top: -202px;
    left: -108px;
    z-index: -5;
} */

.header-main .logo-left .logo {
    margin-right: 0px;
    width: 479px;
    line-height: 1;
    padding: 0;
    position: relative;
}

.header-main .logo-left .logo::after {
    content: "";
    width: calc(50vw - 140px);
    height: 120px;
    background-color: #fff;
    border-bottom-right-radius: 60px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
    position: absolute;
    right: -50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
@media (min-width: 768px) and (max-width: 1450px) {
    .header-main .logo-left .logo::after {
        width: 590px;
    }
}
.header-inner {
    position: static;
    padding: 28px 0;
    padding-left: 55px;
}

.header-main .main-menu {
    flex: 1;
    margin-left: 20px;
}

.header-main .main-menu .nav {
    position: static;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 0;
}

.header-main .main-menu .nav>li {
    margin: 0;
    position: static;
    transition: .3s;
    padding-bottom: 0px;
    margin-right: 26px;
}


/* .header-main .main-menu .nav>li:last-child {
    margin-right: 85px;
} */

.header-main .main-menu .nav>li>a {
    font-size: 1.8rem;
    font-weight: bold;
    padding: 0;
    color: #b10d15;
    text-align: center;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    font-family: "Josefin Slab", serif;
}

.header-main .main-menu .nav>li>a span {
    margin-top: 0;
}

.header-main .main-menu .nav>li>a::before {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 0%;
    width: 100%;
    height: 2px;
    background: #b10d15;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}


/* .header-main .main-menu .nav>li>a span {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    padding-top: 5px;
} */

.header-main .main-menu .nav>li:nth-last-child(1) {
    border-right: none;
}

.box-menu-phone {
    display: flex;
    padding-left: 0;
    align-items: center;
    padding: 0;
    position: static;
    display: none;
}

.header-main .main-menu .nav>li>a:hover,
.header-main .main-menu .nav>li.current>a {
    opacity: 1;
    color: #b10d15;
}

@media (min-width: 768px) {
    .header-main .main-menu .nav>li:not(.nav-mega).current>a::before,
    .header-main .main-menu .nav>li:not(.nav-mega):hover>a::before {
        transform: scale(1, 1);
    }
    .header-main .main-menu .nav>li.nav-mega>a::after {
        content: "";
        width: 30px;
        height: 12px;
        background-color: #fff;
        clip-path: polygon(100% 0, 0 0, 50% 100%);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -15px;
        opacity: 0;
        transition: .3s;
    }
    .header-main .main-menu .nav>li.nav-mega:hover>a::after {
        bottom: -25px;
        opacity: 1;
    }
}

a.menu-btn {
    width: 120px;
    min-height: 120px;
    border: none;
    z-index: 8999;
    transition: none;
    height: auto;
    box-shadow: none;
    background-color: transparent;
    background-color: #ffff;
    border-bottom-left-radius: 60px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

a.menu-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 53px;
    top: 27px;
    background-color: #0f388c;
    left: 35px;
    transition: all 0.5s;
}

a.menu-btn span:nth-child(2) {
    top: 43px;
}

a.menu-btn span:nth-child(3) {
    top: 58px;
}

a.menu-btn::after {
    content: 'Menu';
    left: calc(50%);
    transform: translateX(-50%);
    top: 70px;
    position: absolute;
    color: #0f388c;
    width: max-content;
    font-size: 1.9rem;
    text-align: center;
    letter-spacing: 0.075em;
    font-family: "Josefin Slab", serif;
    font-weight: 600;
}

a.menu-btn.open:after {
    content: "Close";
    color: #fff;
}
.box-features-img img{
    border:1px solid #333
}

body.menu-open header:before {
    display: none;
}

a.menu-btn.open {
    background-color: #f76f00;
}

a.menu-btn.open span {
    display: block;
    position: absolute;
    transform: rotate(45deg);
    top: 36px;
    background-color: #fff;
}

a.menu-btn.open span:nth-child(2) {
    display: none;
}

a.menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg);
}

@keyframes sdl {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    30% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    70% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

.main-menu li.nav-item:hover>a span::after,
.main-menu li.nav-item.current>a span::after {
    left: 50%;
    opacity: 1;
}

.loading-active main {
    opacity: 0;
}

.loading-active header {
    opacity: 0;
}

.loading-active footer {
    opacity: 0;
}

.breadcrums {
    position: relative;
    padding: 25px 0 0;
}

.breadcrums ul {
    display: flex;
    justify-content: flex-end;
    font-family: 'Noto Sans JP', sans-serif;
}

.breadcrums ul li>a {
    font-size: 1.5rem;
    color: #fd8359;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.breadcrums ul li {
    position: relative;
}

.breadcrums ul li:not(:last-child) {
    margin-right: 30px;
}

.breadcrums ul li span {
    color: #1c1d1d;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.breadcrums ul li span br {
    display: none;
}

.breadcrums ul li:not(:nth-last-child(1)):after {
    content: "▶";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -22px;
    font-size: 1.1rem;
    color: #fd8359;
    font-weight: 500;
}

ul.list-anchor {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

ul.list-anchor li {
    width: calc(25% - 20px);
    margin-right: 25px;
    margin-bottom: 30px;
}


/* ul.list-anchor li:first-child {
    margin-left: 0;
} */

ul.list-anchor li:last-child,
ul.list-anchor li:nth-child(4n) {
    margin-right: 0;
}

ul.list-anchor li a {
    display: flex;
    justify-content: center;
    color: #b10d15;
    position: relative;
    font-weight: 500;
    line-height: 1.1875;
    padding: 0 5px;
    font-size: 1.5rem;
    transition: .3s;
    align-items: center;
    text-align: center;
    min-height: 55px;
}

ul.list-anchor li a:hover {
    opacity: .7;
}

ul.list-anchor li a::before {
    content: "";
    width: 100%;
    height: 8px;
    background-image: url(../images/brand/icon-right-anchor.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .3s;
}

ul.list-anchor li a:hover span::after {
    width: 100%;
}

ul.list-anchor li a::after {
    content: "";
    width: 35px;
    height: 29px;
    position: absolute;
    background-image: url(../images/index/icon-right-3.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
}

.box-slide-banner {
    margin-top: 240px;
}

.box-scroll {
    position: absolute;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 90px;
    z-index: 2;
    bottom: 20px;
}

.loading-active main {
    opacity: 0;
}

.box-scroll::after {
    content: "";
    position: absolute;
    top: -90px;
    width: 1px;
    height: 90px;
    animation: pathmove 1.8s ease-in-out infinite;
    /* opacity: 0; */
    left: 50%;
    transform: translateX(-50%);
    background: #1d69c6;
}

a.scroll {
    color: #1d69c6;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
    letter-spacing: 0.05em;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    width: max-content;
}

.scroll_down {
    position: absolute;
    bottom: -30px;
    left: 50%;
}

.scroll_down a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    color: #1d69c6;
    font-size: 1.8rem;
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: .05em;
    text-decoration: none;
    width: max-content;
}

.scroll_down:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #1d69c6;
    animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
    0% {
        bottom: 160px;
    }
    100% {
        bottom: 0px;
    }
}

@keyframes cirlemovehide {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
    }
}

.scroll_down:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 160px;
    background: #1d69c6;
}

@keyframes pathmove {
    0% {
        height: 0;
        top: 10px;
        opacity: 0;
    }
    30% {
        height: 90px;
        opacity: 1;
    }
    100% {
        height: 0;
        top: 80px;
        opacity: 0;
    }
}

.main-menu {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

ul.slick-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    bottom: 30px;
    z-index: 2;
}

ul.slick-dots li {
    width: 15px;
    height: 15px;
    background-color: #fff;
    border: 1px solid #333333;
    border-radius: 50%;
    margin: 0 5px;
}

ul.slick-dots li.slick-active {
    background-color: #333333;
}

ul.slick-dots li button {
    opacity: 0;
    padding: 0;
    display: flex;
    width: 100%;
    height: 100%;
}


/* .header-wrapper {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 5;
    background-color: transparent;
} */

@media(min-width:768px) {
    .logged-in .header-main {
        top: 32px;
    }
}

header.UpMove .header-main {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

header.DownMove .header-main {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* a.btn.btn-contact::after {
    width: 33px;
    height: 10px;
    background-image: url(../images/index/icon-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 20px;
    bottom: 45px;
    transform: none;
    top: auto;
} */


/* .news-item.item-list:last-child {
    border-bottom: none;
} */

.news-item.item-list {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #b6b4b4;
    padding: 20px 33px;
    flex-wrap: wrap;
}


.news-item.item-list::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #f76f00;
    bottom: -1px;
    left: 0;
    transition: all 0.5s;
    width: 0;
}
.news-item.item-list:hover:after {
    width: 100%;
}
.news-item.item-list:hover .title a {
    opacity: 1;
}

.box-date-cat {
    display: flex;
    align-items: center;
}

.news-item .date {
    color: #f76f00;
    width: 117px;
    font-size: 1.7rem;
    font-weight: bold;
}

a.cat {
    display: flex;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    background-color: #ffeda2;
    border: 1px solid #f76f00;
    min-width: 100px;
    min-height: 23px;
    color: #f76f00;
    border-radius: 12px;
    padding-bottom: 2px;
}

.news-item.item-list .title {
    width: 100%;
    padding-top: 13px;
}

.news-item.item-list .title a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #222222;
    font-weight: 500;
    line-height: 1.56;
}

a.btn.btn-recruit {
    width: 227px;
    height: 65px;
    font-size: 1.7rem;
    font-family: "Zen Kaku Gothic New", serif;
    color: #fff;
    text-align: center;
    font-weight: bold;
    background-color: #123851;
    border: 5px solid #30b0ff;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    border-radius: 27px;
    padding-left: 30px;
}

a.btn.btn-recruit img {
    margin-right: 30px;
}

a.btn.btn-recruit:hover {
    background-color: #30b0ff;
}

.color-1 {
    color: #f76f00;
}

.color-2 {
    color: #4d382a;
}

.color-3 {
    color: #cd336b;
}

.color-4 {
    color: #1bb57b;
}

.bgextend {
    animation-name: bgextendAnimeBase;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    /*　はみ出た色要素を隠す　*/
    opacity: 0;
}

@keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/*中の要素*/

.bgappear {
    animation-name: bgextendAnimeSecond;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    opacity: 1;
}

@keyframes bgextendAnimeSecond {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/*左から右*/

.bgLRextend::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #30B0FF;
    /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
    0% {
        transform-origin: left;
        transform: scaleX(0);
    }
    50% {
        transform-origin: left;
        transform: scaleX(1);
    }
    50.001% {
        transform-origin: right;
    }
    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.bgappearTrigger,
.bgLRextendTrigger {
    opacity: 0;
}

@media(min-width:768px) {
    .news-item-imp>a {
        padding-right: 45px;
    }
}

.box-customer.biggerlink {
    transition: all 0.5s;
}

.box-customer.biggerlink:hover {
    opacity: 0.6;
}

.box-recruit.biggerlink::after {
    transition: all 0.3s;
}

.box-recruit.biggerlink:hover::after {
    transform: scale(1.1);
}

a.btn.btn-main::after {
    transition: all 0.5s;
}

footer {
    position: relative;
}

.fade-in-letter {
    opacity: 0;
    display: inline-block;
    animation: fadeInLetter 0.5s forwards;
}

@keyframes fadeInLetter {
    to {
        opacity: 1;
    }
}

.header-main {
    position: absolute;
    width: 100%;
    z-index: 10;
    top: 0;
}

.smooth {
    clip-path: inset( 0 0 100% 0);
    display: inline-block;
    transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
    transition-property: clip-path;
}

.smooth.is-animated {
    clip-path: inset(0);
    opacity: 1;
}

.text-banner h2 span {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.qa-post .date {
    display: none;
}


/*FIX CSS OF WORDPRESS - SEND TO CUSTOMER 10/7*/

.news-item {
    transition: all 0.5s;
}

.news-item:hover {
    opacity: 0.6;
}

body.page-news .header-main {
    background-color: transparent;
}

body.page-news .header-main .main-menu .nav>li>a {
    color: #fff;
}

body.page-news a.btn.btn-mail {
    color: #B10D15;
    background-color: white;
}

body.page-news header a.btn.btn-mail svg * {
    stroke: #B10D15 !important;
}

body.page-news a.btn.btn-mail:hover {
    opacity: 0.8;
}

.img-timeline img {
    border-radius: 5px;
}

.post-type-archive-recruit ul.list-anchor {
    justify-content: space-between;
    max-width: 810px;
    margin-left: auto;
    margin-right: auto;
}
.post-content table {
    width: 100%;
    border: none;
    border-spacing: 5px;
    border-collapse: separate;
}
.post-content table th{
    background-color: #FFD871;
    border: none;
    padding: 15px;
    border: none !important; 
}
.post-content table td{
    background-color: #FFF3C9;
    border: none !important; 
    padding: 15px;
}
.post-content ol{
    list-style-type: decimal;
    padding-left: 15px;
}
.post-content ul li::after{
    width: 5px;
    height: 5px;
    background-color: #0f388c;
    top: 12px;
}
.post-content ul li{
    padding-left: 15px;
}
body.home .box-cont-interview{
    width: fit-content;
}
.menu-logo{
    width: 479px;
    position: absolute;
    top: 28px;
    left: 55px;
}