@charset "utf-8";
/* CSS Document */

* {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;

    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;

    padding: 0;
    margin: 0;

    font-size: 18px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

main {
    padding-top: 83px;
    height: 100%;
}

li {
    list-style-type: none;
}

.sp {
    display: none;
}

/* 要素センター */
.contcent {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* フェードイン表示 */
.fadein,
.fadein_right {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 300ms;
}

.fadein.scrollin,
.fadein_right.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

.top_service .fadein_right.scrollin {
    transform: skew(0deg, 5deg) translate(0, 0);
}

/*
.fadein_right {
    transform : translate(100%, 0);
	-webkit-transition: all 1s;
}
.fadein_right.scrollin {
	transform : translate(0, 0);
}
.top_service .fadein_right {
    transform: skew(0deg, 5deg) translate(100%, 0);
	-webkit-transition: all 1s;
}
.top_service .fadein_right.scrollin {
	transform : skew(0deg, 5deg) translate(0, 0);
}
*/

h4 {
    font-size: 30px;
    font-weight: 900;
    color: #ffad38;
    border-left: 5px solid #ffad38;
    padding: 10px;
    line-height: 1em;
    margin-bottom: 50px;
}

/*
.fadein_right {
  -webkit-transition: all 1s;
  -webkit-transform: translate(0, 0);
  opacity: 0;
}
.fadein_right.move {
  -webkit-transform: translate(10px, 0);
  opacity: 1;
}*/

.info a {
    color: #ff6500;
}

.info a:hover {
    text-decoration: underline;
}

/*****************************************

header

*****************************************/

header {
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
    left: 0;
    background-color: white;
    display: block;
    zoom: 1;
    padding: 0.5em 0;
}

header section {
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

.menu-container {
    width: 50%;
    float: right;
}

h1 {
    width: 30%;
    max-width: 200px;
    float: left;
}

h1 a {
    height: 0;
    overflow: hidden;
    display: inline-block;
    /*background-image: url('../images/crest_logo.svg');*/
    background-image: url('../images/crestlogo.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: 10px;
    padding-top: 60px;
}




/*****************************************

gnavi

*****************************************/

header ul li:last-child {
    background-color: #f28f1c;
}

header ul li:last-child a {
    color: white;
}

header ul li:last-child:hover {
    background-color: #de7a06;
}

/* 
- Name: megamenu.js - style.css
- Version: 1.0
- Latest update: 29.01.2016.
- Author: Mario Loncarek
- Author web site: http://marioloncarek.com
*/


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Body - not related to megamenu
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body {
    font-family: 'Source Sans Pro', sans-serif;
}

* {
    box-sizing: border-box;
}

a {
    color: #333;
}

.description {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
megamenu.js STYLE STARTS HERE
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */


.menu-mobile {
    display: none;
    padding: 20px;
}

.menu-mobile:after {
    /*content: "\f394";*/
    content: "≡";
    font-family: "Ionicons";
    font-size: 2.5rem;
    padding: 0;
    float: right;
    position: relative;
    top: 0;
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
}

.menu-dropdown-icon {
    position: relative;
}

.menu-dropdown-icon::before {
    /*content: "\f489";*/
    content: "+";
    font-family: "Ionicons";
    display: none;
    cursor: pointer;
    background-color: #d3d3d3;
    padding: 1.5em 2em;
    font-weight: 900;
    color: #6c6c6c;

    position: absolute;
    right: 0;
}



.menu>ul {
    margin: 0 auto;
    width: 100%;
    list-style: none;
    padding: 0;
    position: relative;
    /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
    box-sizing: border-box;
}

.menu>ul:before,
.menu>ul:after {
    content: "";
    display: table;
}

.menu>ul:after {
    clear: both;
}

.menu>ul>li {
    float: left;
    width: 25%;
    padding: 0;
    margin: 0;
    text-align: center;
}

.menu>ul>li a {
    text-decoration: none;
    padding: 0.5em 0;
    display: block;
    font-size: 22px;
    color: #4b9ed7;
    line-height: 1em;
}

.menu>ul>li a span {
    font-size: 15px;
}

.menu>ul>li:hover {
    background: #f0f0f0;
}

.menu>ul>li>ul {
    display: none;
    width: 100%;
    background: #f0f0f0;
    padding: 20px;
    position: absolute;
    z-index: 99;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}

.menu>ul>li>ul:before,
.menu>ul>li>ul:after {
    content: "";
    display: table;
}

.menu>ul>li>ul:after {
    clear: both;
}

.menu>ul>li>ul>li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    width: 25%;
    background: none;
    float: left;
}

.menu>ul>li>ul>li:hover {
    background-color: #d1d1d1;
}

.menu>ul>li>ul>li a {
    color: #777;
    padding: .2em 0;
    /*width: 95%;*/
    width: 100%;
    display: block;
    border-bottom: 1px solid #ccc;
}

.menu>ul>li>ul>li>ul {
    display: block;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    box-sizing: border-box;
}

.menu>ul>li>ul>li>ul:before,
.menu>ul>li>ul>li>ul:after {
    content: "";
    display: table;
}

.menu>ul>li>ul>li>ul:after {
    clear: both;
}

.menu>ul>li>ul>li>ul>li {
    float: left;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    font-size: .8em;
}

.menu>ul>li>ul>li>ul>li a {
    border: 0;
}

.menu>ul>li>ul.normal-sub {
    width: 300px;
    left: auto;
    padding: 10px 20px;
}

.menu>ul>li>ul.normal-sub>li {
    width: 100%;
}

.menu>ul>li>ul.normal-sub>li a {
    border: 0;
    padding: 1em 0;
}


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 959px) {
    .menu-container {
        width: 100%;
    }

    .menu-mobile {
        display: block;
        padding: 20px;
        width: 100px;
        height: 65px;
        margin-left: auto;
    }

    .menu-dropdown-icon:before {
        display: block;
    }

    .menu>ul {
        display: none;
    }

    .menu>ul>li {
        width: 100%;
        float: none;
        display: block;
    }

    .menu>ul>li a {
        padding: 1.5em;
        width: 100%;
        display: block;
        width: 100%;
        display: block;
        height: 90px;
        box-sizing: border-box;
    }

    .menu>ul>li>ul {
        position: relative;
    }

    .menu>ul>li>ul.normal-sub {
        width: 100%;
    }

    .menu>ul>li>ul>li {
        float: none;
        width: 100%;
        margin-top: 20px;
    }

    .menu>ul>li>ul>li:first-child {
        margin: 0;
    }

    .menu>ul>li>ul>li>ul {
        position: relative;
    }

    .menu>ul>li>ul>li>ul>li {
        float: none;
    }

    .menu .show-on-mobile {
        display: block;
        background-color: white;
    }

    .menu>ul>li>ul>li a {
        width: 100%;
    }

    /* 社内開発 */
    .menu.recruit_menu>ul>li {
        width: 100%;
        float: none;
        display: block;
    }

    img.develop_img {
        max-width: 100%
    }
}


/*****************************************

pagetop

*****************************************/


@keyframes byon2 {
    0% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}


#top_scroll {
    width: 162px;
    display: block;
    margin: auto;
    animation: byon2 1s ease-in-out infinite alternate;
    position: fixed;
    z-index: 998;
    bottom: -250px;
    right: 20px;
}

#top_scroll a {
    display: block;
}

#top_scroll img {
    width: 80px;
}

#top_scroll:hover {
    background-image: url(../images/crest_top.png);
    background-repeat: no-repeat;
    background-position: top right;
}


/*****************************************

footer_box1

*****************************************/
.footer_box1 {
    background-color: #bee5ff;
    font-size: 20px;
}

.footer_box2 {
    background-color: #4b9ed7;
    font-size: 16px;
}

.footer_box2 a {
    color: white;
}

.footer_box1 ul,
.footer_box2 ul,
.footer_box3,
.footer_box4 {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    /*並列*/
    flex-wrap: wrap;
    /*折り返し指定*/
    padding: 10px 0 0;
    zoom: 1;
}

.footer_box1 ul {
    padding: 0;
}

.footer_box1 ul li {
    flex: auto;
    line-height: 2.5em;
    position: relative;
}

.footer_box2 ul li {
    flex: auto;
    padding-bottom: 10px;
    position: relative;
}

.footer_box2 ul li a {
    display: block;
}

#footer .facebook {
    margin: 35px 10%;
}

.footer_icon img {
    padding: 0 0 40px;
    max-height: 143px;
    margin: 0 1%;
}

.footer_icon {
    width: 46%;
    max-width: 365px;
    margin: 0 2% 0 5%;
}

.footer_box3 {
    margin-top: 30px;
    max-width: 800px;
}

.footer_box4 {
    max-width: 600px;
}

.footer_box3 p:first-child img,
.footer_box4 p:first-child img {
    /*width: 130px;*/
    width: 100px;
}

.footer_box4 p:first-child img {
    margin-top: 10px;
}

.footer_box3 p a:hover img,
.footer_box4 p a:hover img {
    opacity: 0.7;
}

.copyright {
    color: #4b9ed7;
    border-top: 1px solid #4b9ed7;
    font-size: 16px;
    text-align: center;
    padding: 5px;
    margin-top: 30px;
}

.line_s {
    margin: 0 0 0 20px;
}

.jisa {
    width: 34%;
    max-width: 365px;
}

.jisa img {
    width: 100%;
    margin-top: -25px;
}

/*----------------------------;*/
.footer_box5,
.footer_box5 .footer_icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 56%;
    align-items: center;
    justify-content: center;
}

.footer_box5 .footer_icon {
    width: 100%;
}

.footer_box5 {
    width: 90%;
    max-width: 1000px;
    margin: 3% auto 2%;
    justify-content: space-around;
    clear: both;
}

.footer_box5 a,
footer_box6 a {
    display: block;
}

.footer_box5 a img,
.footer_box6 a img {
    width: 100%;
    max-height: inherit;
    padding: 0;
}

.footer_icon a:nth-child(1) {
    width: 30%;
}

.footer_icon a:nth-child(2) {
    width: 20%;
}

.footer_icon a:nth-child(3) {
    width: 30%;
}

.footer_icon a:nth-child(4) {
    width: 20%;
}

.footer_icon a:nth-child(1) img {
    padding: 8% 6%;
}

.footer_icon a {
    width: 33%;
    padding: 0 4%;
}

.footer_icon {
    width: 60%;
    max-width: inherit;
    margin: 0;
}

.jisa {
    width: 30%;
}

.jisa img {
    width: 100%;
    margin-top: 0;
}

.footer_box6 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 670px;
    margin: 0 auto;
}

.footer_box6 p {
    margin: 0 2%;
}

.footer_box6 p a img {
    max-height: 100px;
}

.footer_box6 p:nth-of-type(2) a img {
    max-height: 100%;
    max-width: 100px;
}

.footer_box6 .line_s a img {
    max-height: 100%;
    max-width: 230px;
}

/*
.footer_box6 p:nth-of-type(3) {
	width:30%;
	max-width: 104px;
}

.mjs {
	width:20%;
	max-width: 107px;
}
.footer_box6 .mjs a img {
	padding-top: 30px;
}
.line_s {
    margin: 0;
    width: 40%;
	max-width: 240px;
}*/

#footer .facebook {
    padding: 1% 12% 2% 4%;
    width: 30%;
    max-width: 84px;
    margin: 0;
}