@charset "UTF-8";

header {
    top: 0px;
    left: 0px;
    position: fixed;
    /* line-height: 75px; */
    width: 100%;
    z-index: 1000;
    transition: all .5s ease-out;
}

nav{
    width: 100%;
    height: 70px;
    position: relative;
    background: #FFFFFF;
    box-shadow: 0 5px 10px 0 rgba(50, 50, 50, 0.06);
}
nav .drawer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 70px;
    padding: 0 1em;
}

.navbar_toggle{
    z-index:9999;
}
.navbar_toggle_icon {
    position: relative;
    display: block;
    height: 2px;
    width: 30px;
    background: #5c6b80;
    -webkit-transition: ease .5s;
    transition: ease .5s;
}
.navbar_toggle_icon:nth-child(1) {
    top: 0;
}
.navbar_toggle_icon:nth-child(2) {
    margin: 8px 0;
}
.navbar_toggle_icon:nth-child(3) {
    top: 0;
}

/*OPEN時の動き*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
    top: -10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu{
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition:ease .5s;
    transition:ease .5s;
    z-index:1000;
}
.menu ul{
    margin: 0;
    /* margin-right: 100px; */
    padding: 0;
    list-style: none;
}

.menu ul li{
    padding: 2em;
    border-bottom: 1px solid #CCC;
}

.menu ul li a {
    color: #333333;
    padding-left: 17px;
    padding-right: 17px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    zoom: 1;
    letter-spacing: 1px;    
}

/* アクセスのリンク先をスマホとブラウザで切り替える */
.li_access {
    display:none;
}
.li_access_sp {
    display:block;
}
@media (min-width: 768px) {
    .li_access {
        display:block;
    }
    .li_access_sp {
        display:none;
    }
}


/*OPEN時の動き*/
.menu.open {
    -webkit-transform:translateX(0);
    transform:translateX(0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #FFFFFF;
}

@media (min-width: 768px) {
    nav{
        display: flex;
        flex-direction: row;
    }
    .navbar_toggle{
        display: none;
    }
    .menu{
        width: 100%;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    .menu ul{
        height: 70px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
    }
    .menu ul li{
        padding: 0 1em;
        border-bottom: none;
    }
}

/* body */
body {
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    /* font-family: "Roboto", Sans-serif; */
    font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;

}

main {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
}

a {
    color: #018282;
}

h2 {
    text-align: center;
}

h3 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

footer {
    text-align: center;
}


.space_area_small {
    height: 50px;
}

.space_area_large {
    height: 80px;
}
/*TOP*/
.top_area {
    text-align:center;
}

/*ミッション*/
.mission_area {
    text-align:center;
}

.mission_text {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.7;
}

/*開発分野*/
.develop_area {
    color: white;
}

.dev_box {
    max-width: 1140px;
    background-size: cover;
    background-position: center center;
    transition: background 0.3s ease 0s, border 0.3s ease 0s, border-radius 0.3s ease 0s, box-shadow 0.3s ease 0s;
    margin : 0px ;
    padding-top : 10px ;
    padding-left : 40px ;
    padding-right : 40px ;
    padding-bottom : 40px ;
}

.dev_text {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.7;
}



.dev_title {
    background-image: url('../img/dev_title.png');
    text-align:center;
}

.dev_smartphone {
    background-image: url('../img/dev_smartphone.png');
}

.dev_websystem {
    background-image: url('../img/dev_websystem.png');
}

.dev_fintech {
    background-image: url('../img/dev_fintech.png');
}

.dev_vrar {
    background-image: url('../img/dev_vrar.png');
}

.dev_etc {
    background-image: url('../img/dev_etc.png');
}

.works {
    text-align:center;
}

/*会社概要とアクセス　エリア　スマホ向け*/
.company_access {
    display: block;
}
/*会社概要*/
.company {
    width: 100%;
    /* height: 500px; */
}
.company_td_left {
    text-align: right; vertical-align: top; padding: 0px 80px 0px 0px;
    width: 50%
}
.company_td_right {
    vertical-align: top;
}

/*会社概要 SP*/
@media (max-width: 768px) {
    .company_td_left {
        padding: 0px 20px 0px 0px;
        width: 40%
    }
}

/*アクセス*/
.access {
    width: 100%;
    /* height: 500px; */
}
.access iframe {
    width: 100%;
    height: 400px;
}
/*会社概要とアクセス　エリア　ブラウザ向け*/
@media (min-width: 768px) {
    .company_access {
        display: flex;
    }
    .company {
        width: 50%;
    }
    .access {
        width: 50%;
    }
}

/*技術者募集*/
.recruit {
    display: block;
    text-align:center;
}
.recruit_table {
    margin-top: 30px;
}
.recruit_td {
    text-align: right; vertical-align: top; padding: 0px 80px 0px 0px;
    width: 50%
}

/*技術者募集 SP*/
@media (max-width: 768px) {
    .recruit_td {
        padding: 0px 20px 0px 0px;
        width: 40%
    }
}



/*主要取引先 エリア　スマホ向け*/
.main_customer {
    display: block;
}
.main_customer_title {
    width: 100%;
    text-align:center;
}
.main_customer_title h2{
    margin-bottom: 0;
}
.main_customer_list {
    width: 100%;
    text-align:center;
}
/*主要取引先エリア　ブラウザ向け*/
@media (min-width: 768px) {
    .main_customer {
        display: flex;
    }
    .main_customer_title {
        width: 50%;
    }
    .main_customer_list {
        width: 50%;
        text-align:left;
    }
}

footer {
    background: #000;
    color: #FFFFFF;
    font-size: 0.8em;
}
.footer-link {
    padding-top: 10px;
}
.footer-link a {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 20px;
    display: inline-block;
}
@media (min-width: 768px) {
    .footer-link a {
        padding: 0 20px;
    }
}

.copyright{
    padding: 10px;
    font-size: 0.8em;
}
