@charset "utf-8";

.header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 35px;
}

@media screen and (min-width: 1024px) {
    .header {
        display: inline-block;
        width: auto;
        padding-top: 88px;
        padding-bottom: 50px;
        /*background: rgb(255,255,255);
        background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);*/
    }

    .header.no-bg {
        background: none;
    }
}

.company-name {
    margin-left: 80px;
    font-size: 0;
}

.company-name p {
    position: absolute;
    top: 36px;
    display: inline-block;
    font-weight: 600;
    line-height: 1.2;
    font-size: 22px;
}

.company-name p.logo-title {
    width: 92px;
    height: 83px;
    background-image: url(../../images/logo_eluo.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.company-name p.logo-title.active {
    display: inline-block;
}

.bg-white .company-name p.logo-title,
.bg-gray .company-name p.logo-title {
    /*transition: all 1s ease;*/
}

.bg-gray .company-name p.logo-title,
.white .company-name p.logo-title {
    background-image: url(../../images/logo_eluo_white.svg);
}

.company-name p.logo-title a {
    display: block;
    height: 100%;
    text-indent: -999px;
    overflow: hidden;
    white-space: nowrap;
}

.company-name p.page-title {
    /*display: inline-block;*/
    opacity: 0;
    display: none;
    /*transition:opacity 0.5s ease-in-out;*/
}

.company-name p.page-title.active {
    opacity: 1;
}

.hide {
    animation-name: bounceOutUp;
    animation-duration: 2s;
    animation-fill-mode: both;
}

@keyframes bounceOutUp {
    20% {
        opacity: 1;
        transform: translate3d(0, 10px, 0);
    }
    40% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: translate3d(0, -200px, 0);
    }
}

.show {
    animation-name: bounceInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -200px, 0);
    }
    30% {
        opacity: 0;
    }
    80% {

        transform: translate3d(0, 10px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0px, 0);
    }
}

@media screen and (min-width: 1024px) {
    .company-name {
        margin-left: 160px;
        /*margin-top: 5px;*/
    }

    .company-name p {
        position: static;
        font-size: 28px;
        vertical-align: top;
    }

    .company-name p.logo-title {
        display: inline-block;
        width: 102px;
        height: 93px;
        margin-top: 0;
        /*background-image: url(../../images/logo_eluo_pc.png);*/
        transition: all .7s ease;
    }

    .bg-gray .company-name p.logo-title,
    .white .company-name p.logo-title {
        
    }

    .company-name p.page-title {
        margin-left: 96px;
    }
}

.navigation-toggle {
    position: fixed;
    z-index: 150;
    top: 30px;
    left: 18px;
    width: 43px;
    height: 40px;
    padding: 10px;
    background: transparent;
    border: none;
    overflow: hidden;
    cursor: pointer;
}

.navigation-toggle > span,
.navigation-toggle:before,
.navigation-toggle:after {
    content: '';
    display: block;
    width: 100%;
    border-top: 3px solid #000;
    height: 0;
    transition: all .7s;
}

.bg-gray .navigation-toggle > span,
.bg-gray .navigation-toggle:before,
.bg-gray .navigation-toggle:after {
    border-color: #fff;
}

.white .navigation-toggle > span,
.white .navigation-toggle:before,
.white .navigation-toggle:after {
    border-color: #fff;
}

.navigation-toggle > span {
    margin: 6px 0;
    text-indent: -999px;
    white-space: nowrap;
}

.navigation-toggle.actived > span,
.navigation-toggle.actived:before,
.navigation-toggle.actived:after {
    border-color: #000;
}

.navigation-toggle.actived:before {
    transform: translateY(9px) rotate(-315deg);
}

.navigation-toggle.actived > span {
    opacity: 0;
}

.navigation-toggle.actived:after {
    transform: translateY(-9px) rotate(315deg);
}

@media screen and (min-width: 1024px) {
    .navigation-toggle {
        top: 86px;
        left: 70px;
        width: 30px;
        padding: 0;
    }

    .navigation-toggle > span,
    .navigation-toggle:before,
    .navigation-toggle:after {
        border-top-width: 4px;
    }

    .navigation-toggle.actived:before {
        transform: translateY(10px) rotate(-315deg);
    }

    .navigation-toggle.actived:after {
        transform: translateY(-10px) rotate(315deg);
    }
}

.navigation {
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 100;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all .7s ease-in-out;
}

.navigation-inner {
    padding-left: 80px;
}

.navigation.actived {
    display: flex;
    left: 0;
    transition: all .7s ease-in-out;
}

.navigation-menu li {
    margin-bottom: 26px;
    line-height: 1;
}

.navigation.actived .navigation-menu li {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: .5s;
}

.navigation.actived .navigation-menu li:nth-child(2) {
    animation-delay: .6s;
}

.navigation.actived .navigation-menu li:nth-child(3) {
    animation-delay: .7s;
}

.navigation.actived .navigation-menu li:nth-child(4) {
    animation-delay: .8s;
}

.navigation.actived .navigation-menu li:nth-child(5) {
    animation-delay: .9s;
}

.navigation.actived .navigation-menu li:nth-child(6) {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

.navigation-menu a {
    display: block;
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
}

.navigation-links {
    margin-top: 60px;
}

.navigation-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #7d7d7d;
}

@media screen and (min-width: 1024px) {
    .navigation-inner {
        padding-left: 360px;
    }

    .navigation-menu li {
        margin-bottom: 27px;
    }

    .navigation-menu a {
        font-size: 46px;
        /*animation: color-change-hover 0.3s ease-in both;*/
    }

    .navigation-menu .unhover a {
        /*color: #e0e0e0;*/
        /*animation: color-change-unhover 0.3s ease-in both;*/
    }

    @keyframes color-change-hover {
        0% {
            color: #e0e0e0;
        }
        100% {
            color: #000;
        }
    }

    @keyframes color-change-unhover {
        0% {
            color: #000;
        }
        100% {
            color: #e0e0e0;
        }
    }

    .navigation-links {
        margin-top: 98px;
    }

    .navigation-links a {
        margin-right: 15px;
        font-size: 20px;
    }
}

.go-back {
    display: none;
    position: fixed;
    top: 39px;
    left: 27px;
    z-index: 100;
    width: 25px;
    height: 22px;
    background: url(../../images/btn_goback.png) no-repeat;
    background-size: cover;
    text-indent: -999px;
    overflow: hidden;
}

.white .go-back {
    background-image: url(../../images/btn_goback_white.png);
}

.work.detail .go-back {
    display: block;
}

@media screen and (min-width: 1024px) {
    .go-back {
        top: 96px;
        left: 70px;
        width:32px;
        height:28px;
        z-index: 10;
    }
}

.navigation-toggle {

}

.contents {
    position: relative;
    line-height: 1.7;
}

.contents-inner {
    position: relative;
	min-height: 500px!important;
	padding-top: 150px;
	text-align: center;
}
@media screen and (max-width:768px){
	.contents-inner {
		height: 50vh;
	min-height:0px!important;
	padding-top: 0px;
}
}

.headline-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: #000;
}

.headline-inner.white {
    color: #fff;
}

@media screen and (min-width: 1024px) {
    .contents .headline {
        padding-top: 200px;
		text-align: center;
    }
}
