@charset "UTF-8";

body{
    font-family: sans-serif;
    color: #5c5c5c;
}

#container{
    width: 100%;
}


/* headerのCSS */

header{
    width: 100%;
}

#header{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img{
    width: 90px;
    height: auto;
    padding: 20px 0;
}

nav ul{
    display: flex;
    list-style: none;
}

nav a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-size: 20px;
    text-align: center;
    letter-spacing: 2px;
    margin: 0 23px;
}

nav span{
    font-size: 10px;
    margin-top: 1px;
}


/* contentのCSS */

.content{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.h2_p{
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

h2{
    font-size: 40px;
    letter-spacing: 2px;
}


/* topのCSS */

.top{
    position: relative;
    color: #fff;
}

.top_bg{
    height: 475px;
    width: auto;
    margin: 0 40px;
    background-image: url(../images/bg_1.jpg);
    background-size: cover;
    background-position: center;
}

.top_text{
    position: absolute;
    top: 75px;

}

.top h1{
    font-size: 50px;
    margin-bottom: 25px;
    text-shadow: 0 0 3px gray;
}

.top p{
    font-size: 25px;
    text-shadow: 0 0 3px gray;
}


/* aboutのCSS */

.about{
    padding: 80px 0;
}

.about .content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about img{
    width: 365px;
}

.about_img{
    position: relative;
    width: 595px;
    height: 420px;
    margin: 0 auto;
}

.about_img2{
    position: absolute;
    top: 135px;
    left: 230px;
}

.about_inner{
    width: 595px;
    padding: 0 30px;
    margin: 0 auto;
}

.about .h2_p{
    color: #32a6cf;
    padding-top: 20px;
}

.about_text{
    font-size: 14px;
    line-height: 2.6;
}

.about_sp{
    display: none;
}


/* jobsのCSS */

.jobs{
    background-image: url(../images/bg_2.jpg);
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.jobs .h2_p{
    color: #fff;
}

.jobs_inner{
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.jobs_item{
    display: flex;
    max-width: 490px;
    margin: 30px auto 0;
}

.jobs_item:nth-child(n+3){
    margin-bottom: 0;
}

.jobs_text h3{
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.jobs_text p{
    font-size: 12px;
    /* transform:scale(0.9); */
    letter-spacing: 2px;
    line-height: 2.6;
    width: 95%;
}

.jobs img{
    width: 250px;
    height: 167px;
    border-radius: 25px;
}

.jobs_sp{
    display: none;
}


/* companyのCSS */

.company{
    padding: 80px 0;
}

.company_inner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.company h2{
    color: #32a6cf;
    text-align: center;
    margin-bottom: 30px;
}

tr{
    height: 70px;
}

td:nth-child(1){
    width: 160px;
}

table li{
    list-style: none;
}

iframe{
    width: 800px;
    height: 510px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.company_sp{
    display: none;
}


/* contactのCSS */

.contact{
    clear: both;
    background-color: #eff3f6;
    padding: 80px 0;
}

.contact .h2_p{
    color: #32a6cf;
}

form input{
    width: 100%;
    height: 50px;
    border-radius: 8px;
    border: solid 1px #6e6f71;
    box-sizing: border-box;
}

form table{
    width: 100%;
}

form th, form td{
    display: block;
}

form table th{
    margin-top: 20px;
}

form th{
    text-align: left;
}
form textarea{
    width: 100%;
    height: 200px;
    border-radius: 8px;
    border: solid 1px #6e6f71;
    box-sizing: border-box;
}

form p{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

form p input{
    text-decoration: none;
    color: #5c5c5c;
    background-color: #fff;
    font-weight: bold;
    display: block;
    width: 105px;
    border: solid 1px #6e6f71;
    border-radius: 8px;
    cursor: pointer;
}


/* footerのCSS */

footer{
    color: #fff;
    font-size: 16px;
    background-color: #10A0DC;
    text-align: center;
    padding: 41px 0;
}