@charset "itf-8";

/*=============== company ================*/

dt {
    font-weight: bold;
    font-size: 20px;
}

.company-left {
    width: 50%;
    float: left;
}

.company-right {
    width: 50%;
    float: right;
}

.company-title {
    font-weight: bold;
    font-size: 24px;
}

.philosophy {
    margin: 10px 0;
}

#viewer {
    margin: 0 auto;
    width: 80%;
    height: 600px;
    text-align: left;
    overflow: hidden;
    position: relative;
}

#viewer img {
    width: 100%;
    top: 100px;
    left: 0;
    position: absolute;
}


/*=============== perform ================*/

.perform .section-title {
    margin-top: 60px;
}

.perform-table {
    width: 100%;
    border-collapse: collapse;
}

.perform-table tr:nth-child(odd) {
    background-color: #c8d2e2;
}

.perform-table tr:first-child {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.perform-table th {
    padding: 5px 0px 5px 3px;
    font-weight: bold;
}

.perform-photo {
    text-align: center;
    margin: 15px 0;
}

.perform-award {
    text-align: center;
    margin: 10px 0;
}

@media (max-width:640px) {
    .perform-table td {
        width: 20%;
        text-align: center;
    }
}


/*=============== recruit ================*/

.recruit-btn {
    text-align: center;
    margin: 15px 0;
}

.recruit .section-title {
    margin-top: 40px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table tr {
    border-bottom: solid 2px white;
}

.table tr:last-child {
    border-bottom: none;
}

.table th {
    position: relative;
    text-align: left;
    width: 30%;
    background-color: #567947;
    color: black;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
}

.table th:after {
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top: calc(50% - 10px);
    right: -10px;
    border-left: 10px solid #567947;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.table td {
    text-align: left;
    width: 70%;
    text-align: center;
    background-color: #eee;
    padding: 10px 0;
}


/*=============== contact ================*/

.contact .section-title {
    margin-top: 40px;
}

input {
    margin-bottom: 10px;
}

textarea {
    height: 100px;
    margin-bottom: 10px;
}

input:first-of-type {
    margin-top: 35px;
}

input,
textarea {
    font-size: 1em;
    padding: 15px 10px 10px;
    font-family: 'Source Sans Pro', arial, sans-serif;
    border: 1px solid #cecece;
    background: #d7d7d7;
    color: #FAFAFA;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    max-width: 600px;
}

 ::-webkit-input-placeholder {
    color: #FAFAFA;
}

 :-moz-placeholder {
    color: #FAFAFA;
}

 ::-moz-placeholder {
    color: #FAFAFA;
}

 :-ms-input-placeholder {
    color: #FAFAFA;
}

input[type="submit"] {
    background-color: green;
    font-weight: bold;
    font-size: 20px;
}

input[type="text"],
textarea {
    color: #000;
}

.contact-form {
    text-align: center;
    margin: 40px 0;
    padding: 40px 0;
}


/*=============== スマホ ================*/

@media (max-width:767px) {
    .company-left {
        float: none;
        width: 100%;
    }
    .company-right {
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    .company-title {
        text-align: center;
    }
    #viewer {
        height: 300px;
    }
    .recruit .section-title,
    .contact .section-title {
        margin-top: 100px;
    }
}