@charset "utf-8";

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, /*strong,*/ sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    word-break: break-all;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}



/*-----------------------------------------------
/*default
-----------------------------------------------*/
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 1px;
    color: #000;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}
.cf::after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}
a {
    outline: none;
    vertical-align: bottom;
    transition: all 0.2s;
}
img {
    vertical-align: bottom;
}



/*-----------------------------------------------
float
-----------------------------------------------*/
.left {
    float: left;
}
.right {
    float: right;
}



/*-----------------------------------------------
form
-----------------------------------------------*/
input[type="text"],textarea,select,button {
    border: 1px solid #ccc;
    outline: none;
}
textarea {
    resize: vertical;
    line-height: 1.2;
}
label {
    cursor: pointer;
}
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"]{
    padding: 5px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 1px 0 #FAFAFA;
    -webkit-box-shadow: 0 4px 5px -5px rgba(0, 0, 0, 0.3) inset;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 1px 0 #FAFAFA;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 1px 0 #FAFAFA;
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
}
select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus{
    border-color: #8fb8fa;
    outline: 0;
    /* IE6-9 */
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #cde0ff;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #cde0ff;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #cde0ff;
}
input[type="radio"],
input[type="checkbox"] {
    vertical-align: middle;
    margin-right: 3px;
    cursor: pointer;
}
input[type="submit"],
input[type="button"] {
    border: 0;
    outline: none;
    cursor: pointer;
}



/*-----------------------------------------------
common
-----------------------------------------------*/
body#top {
    margin: -28px 0 0 0;
}


/*-----------------------------------------------
haeder
-----------------------------------------------*/
header {
    background: rgba(255,255,255,0.8);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1;
}
.headerBox {
    max-width: 1200px;
    margin: auto;
}
.headerBox .logo {
    float: left;
}
.headerBox ul {
    float: right;
}
.headerBox li {
    display:  inline-block;
}
.headerBox li a {
    text-decoration:  none;
    color: #000;
    font-weight: bold;
    font-size: 15px;
    padding: 11px 30px;
    display: inline-block;
}
.headerBox li a:hover {
    color: #80292b;
}
.headerBox li.contactBtn a {
    border: #000 2px solid;
    padding: 8px 35px;
}
.headerBox li.contactBtn a:hover {
    background: #80292b;
    color: #fff;
    border: #80292b 2px solid;
}



/*-----------------------------------------------
mv
-----------------------------------------------*/
#mv {
    background: url(../imgnew/index/top_bg_01.png) no-repeat top center;
    background-size: cover;
}
#mv .parallax01 {
    background: url(../imgnew/index/top_bg_02.png) no-repeat top center;
}
#mv .mvInner {
    text-align: center;
    padding: 13% 50px 25% 50px;
}
#mv img {
    max-width: 100%;
    height: auto;
}

.mvBox.animated {
    opacity: 0;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}


/*-----------------------------------------------
#policy
-----------------------------------------------*/
#policy {
    background: url(../imgnew/index/top_bg_03.png) no-repeat top center;
    background-size: cover;
    margin: -27% 0 0 0;
    -webkit-clip-path: polygon(0 26%, 100% 10%, 100% 100%, 0% 100%);
    clip-path: polygon(0 26%, 100% 10%, 100% 100%, 0% 100%);
}
#policy .parallax02A { background: url(../imgnew/index/top_bg_04A.png) no-repeat top center; }
#policy .parallax02B { background: url(../imgnew/index/top_bg_04B.png) no-repeat top center; }
#policy .parallax02C { background: url(../imgnew/index/top_bg_04C.png) no-repeat top center; }
#policy .parallax02D { background: url(../imgnew/index/top_bg_04D.png) no-repeat top center; }
#policy .parallax02E { background: url(../imgnew/index/top_bg_04E.png) no-repeat top center; }
#policy .parallax02F { background: url(../imgnew/index/top_bg_04F.png) no-repeat top center; }
#policy .parallax02G { background: url(../imgnew/index/top_bg_04G.png) no-repeat top center; padding: 25% 0 30% 0; }

#policy .policyInner {
    max-width: 1200px;
    margin: auto;
    padding: 0 95px;
    box-sizing: content-box;
}
#policy .title {
    margin: 0 0 3% 0;
}
#policy p {
    font-size: 18px;
}
#policy p span {
    font-size: 24px;
    display:  inline-block;
    margin: 10px 0;
    line-height: 1.5;
    font-weight: bold;
}



/*-----------------------------------------------
service
-----------------------------------------------*/
#service {
    background: url(../imgnew/index/top_bg_05.png) no-repeat top center;
    background-size: cover;
    margin: -30% 0 0 0;
    padding: 18% 0 0 0;
    position: relative;
}
#service .serviceInner {
    max-width: 1200px;
    margin: auto;
    padding: 0 95px 25% 95px;
    box-sizing: content-box;
    position: relative;
}
#service #sliderBox {
    position: absolute;
    width : 1200px;
    height: 1200px;
    top: -31%;
    left: -17%;
}
#service #sliderBox .vegas-slide {
    width: 60%;
    height: 60%;
    margin: auto;
}
#service #sliderBox .vegas-slide img {
    border: 1px #123234 solid;
}
#service .textBox {
    padding: 3% 0 0 55%;
    text-align: right;
    color: #fff;
}
#service .textBox .title {
    margin: 0 0 8% 0;
}
#service .textBox p {
    text-align: left;
    font-size: 18px;
}
#service .textBox p.price {
    text-align: right;
    font-size: 26px;
    margin: 10px 0 0 0;
}
#service .textBox .reportBtn a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border: #fff 2px solid;
    padding: 3% 15% 3% 10%;
    display: inline-block;
    position: relative;
    margin: 8% 0 0 0;
}
#service .textBox .reportBtn a::after {
    content: "";
    position: absolute;
    background: url(../imgnew/index/arrow_right.png) no-repeat top center;
    width: 18px;
    height: 12px;
    top: 35%;
    right: 5%;
}
#service .textBox .reportBtn a:hover {
    background: #4e0708;
    color: #fff;
    border: #4e0708 2px solid;
}



/*-----------------------------------------------
results
-----------------------------------------------*/
#results {
    background: url(../imgnew/index/top_bg_06.png) no-repeat top center #e5e5e5;
    padding: 18% 0 9% 0;
    margin: -18% 0 0 0;
}
#results .resultsInner {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}
#results .title {
    margin: 0 0 3% 0;
}
#results p {
    font-size: 20px;
    font-weight: bold;
    padding: 0 0 3% 0;
}
#results span {
    font-size: 26px;
    color: #ac252b;
}
#results .caseBox {
    width: 100%;
    margin: auto;
    display: table;
}
#results .caseBox li {
    display: table-cell;
    width: 50%;
    padding: 0 3%;
    text-align: center;
}
#results .caseBox .case {
    border: #6a0306 3px solid;
    position: relative;
    width: 100%;
    height: 250px;
    padding: 80px 7% 7% 7%;
    margin: 50px 0 0 0;
    background: #fff;
}
#results .caseBox .case p {
    background: #6a0306;
    color: #fff;
    border-radius: 50%;
    width: 114px;
    line-height:  114px;
    font-size: 14px;
    text-align: center;
    display: inline-block;
    padding: 0;
    position: absolute;
    top: -57px;
    left: 50%;
    margin: 0 0 0 -57px;
}
#results .caseBox .case table {
    text-align: left;
    line-height: 1.25;
    width: 100%;
}
#results .caseBox .case table th {
    color: #6a0306;
    font-weight: bold;
    padding: 8px 0;
    width: 30%;
}
#results .caseBox .case table span {
    font-size: 30px;
    font-weight: bold;
    display: inline-block;
    line-height: 2;
}



/*-----------------------------------------------
company
-----------------------------------------------*/
#company {
    margin: -9% 0 0 0;
    padding: 9% 0 0 0;
}
#company .companyInner {
    background: url(../imgnew/index/top_bg_07.png) no-repeat top center;
}

#company .companyInner .inner {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 9% 0 5% 0;
}
#company .title {
    margin: 0 0 3% 0;
}
#company table {
    max-width: 740px;
    font-size: 18px;
    margin: auto;
    margin-bottom: 3%;
    line-height: 1.25;
}
#company table th {
    position: relative;
    text-align: left;
    padding: 8px 40px 8px 0;
    width: 15%;
}
#company table th::after {
    content: "：";
    position: absolute;
    right: 0;
}
#company table td {
    text-align: left;
    padding: 8px 0 8px 30px;
    width: 75%;
}



/*-----------------------------------------------
footer
-----------------------------------------------*/
footer {
    border-top: #dcdcdc 1px solid;
    padding: 3% 0;
}
footer ul {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}
footer li {display: inline-block;
}
footer small {
    font-size: 14px;
    padding: 0 0 0 20px;
}

/* header */
#top-head {
    top: -200px;
    position: fixed;
    width: 100%;
    line-height: 1;
    z-index: 999;
    transition: all 0.5s;
}
#top-head .logo {
    float: left;
    font-size: 36px;
}
#global-nav ul {
    list-style: none;
    font-size: 14px;
}
#global-nav ul li {
    float: left;
}
#global-nav ul li a {
}
/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    background: rgba(255,255,255,.95);
    transition: all 0.5s;
}
#top-head.fixed .logo {
    font-size: 24px;
    color: #333;
}
#top-head.fixed #global-nav ul li a {
}

/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #666;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}
.pc {
    display: block !important;
}
.sp {
    display: none !important;
}



/*-----------------------------------------------
contact
-----------------------------------------------*/
#contact {
    background: url(../imgnew/contact/bg_02.png) no-repeat top center;
    background-size: cover;
}
#mt {
    background: url(../imgnew/contact/bg_01.png) no-repeat bottom center;
    background-size: cover;
    padding: 11% 0 7% 7%;
}

/*employment*/
#employment .employmentInner {
}

#employment .inner {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 5% 0;
}

#employment .title {
    margin: 0 0 5% 0;
}

#employment table {
    font-size: 18px;
    margin: auto;
    line-height: 1.25;
}

#employment table th {
    position: relative;
    text-align: left;
    padding: 8px 40px 8px 0;
    width: 20%;
}

#employment table th::after {
    content: "：";
    position: absolute;
    right: 0;
}

#employment table td {
    text-align: left;
    padding: 8px 0 8px 30px;
    width: 80%;
}


/*contactForm*/
#contactForm .inner {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 5% 0 10% 0;
}

#contactForm .title {
    margin: 0 0 5% 0;
}

#contactForm .titleSub {
    margin: 0 0 2% 0;
}

#contactForm .read {
    margin: 0 0 5% 0;
}

#contactForm .mast {
    font-size: 12px;
    text-align: right;
}

#contactForm .mast span {
    color: #ac252b;
}

#contactForm form {
    max-width: 700px;
    margin: auto;
}

#contactForm table {
    font-size: 18px;
    margin: auto;
    margin-bottom: 5%;
    line-height: 1.25;
    width: 100%;
}

#contactForm table th {
    position: relative;
    text-align: left;
    padding: 8px 0 8px 20px;
    width: 25%;
    font-weight: bold;
    font-size: 16px;
    vertical-align: middle;
}

#contactForm table td {
    text-align: left;
    padding: 8px 0 8px 20px;
    width: 80%;
    position: relative;
}

#contactForm table span {
    color: #ac252b;
    left: 0;
}

#contactForm table span.error {
    padding: 1% 0;
    display: inline-block;
    font-size: 14px;
}

#contactForm table input[type="text"],
#contactForm table textarea {
    border: #e5e5e5 3px solid;
    border-radius: 0;
    box-shadow: none;
    padding: 10px 15px;
    font-size: 18px;
    width: 100%;
}

#contactForm .btnArea .btnRed {
    background: #ac252b;
    color: #fff;
    padding: 4% 25%;
    border: none;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
}

#contactForm .btnArea2 {
    width: 100%;
    text-align: -webkit-center;
    display: table;
}

#contactForm .btnArea2 li{
    display: table-cell;
    padding: 0 5px;
}

#contactForm .btnArea2 .btnRed {
    background: #ac252b;
}

#contactForm .btnArea2 .btnGlay {
    background: #a0a0a0;
}

#contactForm .btnArea2 .btnRed,
#contactForm .btnArea2 .btnGlay {
    color: #fff;
    padding: 25px 10%;
    border: none;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
    width: 100%;
}

.completeText {
    padding: 5% 0 10% 0;
}





/*-----------------------------------------------
レスポンシブ
-----------------------------------------------*/
@media screen and (max-width: 1440px) {
    #service .textBox {
        padding: 3% 0 0 45%;
    }
    #service .sliderBox {
        width: 800px;
        left: -20%;
    }
    .slick-slide img {
        width: 100%;
        height: auto;
    }
    /*-----------------------------------------------
    service
    -----------------------------------------------*/
    #service .textBox {
        padding: 3% 0 0 57%;
    }
    #service #sliderBox {
        top: -38%;
        left: -17%;
    }
    #service #sliderBox .vegas-slide {
        width: 55%;
        height: 55%;
    }
}



@media screen and (max-width: 1300px) {
    /*-----------------------------------------------
    service
    -----------------------------------------------*/
    #service .textBox {
        padding: 3% 0 0 57%;
    }
    #service #sliderBox {
        top: -42%;
        left: -23%;
    }
    #service #sliderBox .vegas-slide {
        width: 55%;
        height: 55%;
    }
}



@media screen and (max-width: 1200px) {
    /*-----------------------------------------------
    header
    -----------------------------------------------*/
    header {
        padding: 20px;
    }
    /*-----------------------------------------------
    mv
    -----------------------------------------------*/
    #mv .mvInner {
        padding: 10% 5% 30% 5%;
    }
    /*-----------------------------------------------
    policy
    -----------------------------------------------*/
    #policy {
        margin: -33% 0 0 0;
    }
    /*-----------------------------------------------
    service
    -----------------------------------------------*/
    #service .textBox {
        padding: 3% 0 0 65%;
    }
    #service #sliderBox {
        top: -40%;
        left: -20%;
    }
}



@media screen and (max-width: 1150px) {
    /*-----------------------------------------------
    service
    -----------------------------------------------*/
    #service #sliderBox {
        top: -47%;
        left: -27%;
    }
    #service #sliderBox .vegas-slide {
        width: 50%;
        height: 50%;
    }
}



@media screen and (max-width: 1024px) {
    #policy .parallax02G {
        padding: 25% 0 30% 0;
    }
    /*-----------------------------------------------
    service
    -----------------------------------------------*/
    #service .textBox {
        padding: 3% 0 0 55%;
    }
    #service #sliderBox {
        top: -53%;
        left: -39%;
    }
    #service #sliderBox .vegas-slide {
        width: 45%;
        height: 45%;
    }
}



@media screen and (max-width: 950px) {
    /*-----------------------------------------------
    service
    -----------------------------------------------*/
    #service #sliderBox {
        top: -51%;
        left: -41%;
    }
    #service #sliderBox .vegas-slide {
        width: 41%;
        height: 41%;
    }
}



@media screen and (max-width: 900px) {
    /*-----------------------------------------------
    mv
    -----------------------------------------------*/
    #mv .mvInner {
        padding: 10% 5% 36% 5%;
    }
    /*-----------------------------------------------
    policy
    -----------------------------------------------*/
    #policy {
        margin: -42% 0 0 0;
        -webkit-clip-path: polygon(0 22%, 100% 10%, 100% 100%, 0% 100%);
        clip-path: polygon(0 22%, 100% 10%, 100% 100%, 0% 100%);
    }
    #policy .policyInner {
        padding: 0 5%;
    }
    /*-----------------------------------------------
    service
    -----------------------------------------------*/
    #service .textBox {
        padding: 3% 0 0 65%;
    }
    #service .textBox img {
        width: 100%;
        height: auto;
    }
    #service #sliderBox {
        top: -50%;
        left: -47%;
    }
    #service #sliderBox .vegas-slide {
        width: 40%;
        height: 40%;
    }
    #service .serviceInner {
        padding: 0 5% 25% 5%;
    }
    /*-----------------------------------------------
    results
    -----------------------------------------------*/
    #results {
        padding: 20% 0 0 0;
    }
    #results .caseBox li {
        display: block;
        width: 100%;
        margin: 50px 0 80px 0;
    }
    #results .caseBox .case {
        height: auto;
    }
}



@media screen and (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
    /*-----------------------------------------------
    mv
    -----------------------------------------------*/
    #mv .mvInner {
        padding: 15% 5% 35% 5%;
    }
    #top-head {
        width: 100%;
        padding: 0;
    }
    #top-head {
        background: none;
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile-head {
        background: rgba(255,255,255,.95);
        width: 100%;
        height: 56px;
        z-index: 999;
        position: relative;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        color: #333;
        font-size: 26px;
    }
    #global-nav {
        position: absolute;
        top: -500px;
        background: #333;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
        float: none;
    }
    #global-nav ul li {
        float: none;
        position: static;
        display: block;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 18px 0;
    }
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
    /*-----------------------------------------------
    haeder
    -----------------------------------------------*/
    header {
        padding: 0;
    }
    .headerBox {
    }

    .headerBox .logo {
        padding: 11px 0 0 15px;
    }
    .headerBox .logo img {
        max-width: 80%;
    }
    .headerBox ul {
    }
    .headerBox li {
        display:  inline-block;
    }
    .headerBox li a {
        text-decoration:  none;
        color: #000;
        font-weight: bold;
        font-size: 15px;
        padding: 5px 30px;
        display: inline-block;
    }
    .headerBox li a:hover {
        color: #80292b;
    }
    .headerBox li.contactBtn a {
        border: none;
    }
    .headerBox li.contactBtn a:hover {
    }
    #top-head .logo img {
        max-width: 80%;
    }
    /*-----------------------------------------------
    policy
    -----------------------------------------------*/
    #policy {
        margin: -46% 0 0 0;
        -webkit-clip-path: polygon(0 20%, 100% 10%, 100% 100%, 0% 100%);
        clip-path: polygon(0 20%, 100% 10%, 100% 100%, 0% 100%);
    }
    #policy .parallax02G {
        padding: 35% 0;
        background: none;
    }
    #policy .policyInner {
        padding: 0 5%;
        box-sizing: border-box;
    }
    /*-----------------------------------------------
    service
    -----------------------------------------------*/
    #service {
        margin: -60% 0 0 0;
        padding: 60% 0 0 0;
    }
    #service .serviceInner {
        padding: 0 5% 135% 5%;
        width: auto;
    }
    #service #sliderBox {
        width: 100%;
        height: 1200px;
        top: -4%;
        left: 0;
    }
    #service #sliderBox .vegas-slide {
        width: 700px;
        height: 700px;
    }
    #service .textBox {
        padding: 0;
        text-align: left;
        color: #fff;
    }
    #service .textBox img {
        max-width: 90%;
        width: initial;
        height: auto;
    }
    #service .textBox .title {
        margin: 0 0 3% 0;
    }
    /*-----------------------------------------------
    results
    -----------------------------------------------*/
    #results {
        margin: -40% 0 0 0;
    }
    #results p {
        padding: 0 3% 3% 3%;
    }
    #results .resultsInner img {
        max-width: 80%;
        width: initial;
        height: auto;
    }
    /*-----------------------------------------------
    company
    -----------------------------------------------*/
    #company table,
    #contact table {
        width: 100%;
        font-size: 14px;
    }
    #company table th,
    #contact table th {
        padding: 4% 0 4% 4%;
        display: block;
        width: 100%;
        font-weight: bold;
    }
    #company table td,
    #contact table td {
        padding: 0 4% 4% 4%;
        display: block;
        width: 100%;
        border-bottom: #353535 1px solid;
    }
    #company table th::after,
    #contact table th::after {
        position: initial;
    }
    #company table .line,
    #contact table .line{
        display: inline-flex;
        width: 100%;
    }
    #company table .line th {
        width: 35%;
        border-bottom: #353535 1px solid;
    }
    #contact table .line th {
        width: 40%;
        border-bottom: #353535 1px solid;
    }
    #company table .line td,
    #contact table .line td {
        padding: 4% 5% 4% 0;
    }
    #contact form table th {
        padding: 0 4% 1% 4%;
    }
    #contact form table td {
        border: none;
    }
    /*-----------------------------------------------
    footer
    -----------------------------------------------*/
    footer {
        padding: 5% 0;
    }
    footer img {
        max-width: 80%;
    }
    footer small {
        font-size: 12px;
        padding: 0;
    }
    /*-----------------------------------------------
    contact
    -----------------------------------------------*/
    #mt {
        background: url(../imgnew/contact/bg_01.png) no-repeat bottom left;
        background-size: cover;
        padding: 15% 0 10% 7%;
    }
    #employment .employmentInner,
    #contactForm .contactInner {
        padding: 0 5%;
    }
    .completeText {
        padding: 5% 0 20% 0;
    }
    #contact img {
        max-width: 80%;
    }
    #employment table {
        font-size: 14px;
    }
    #contactForm .read {
        text-align: left;
    }
}



@media screen and (max-width: 670px) {
    /*-----------------------------------------------
    mv
    -----------------------------------------------*/
    #mv {
        background-size: auto;
    }
    #mv .mvInner {
        padding: 15% 5% 40% 5%;
    }
    /*-----------------------------------------------
    policy
    -----------------------------------------------*/
    #policy {
        margin: -52% 0 0 0;
    }
    #policy .parallax02 {
        padding: 30% 0 20% 0;
    }
    /*-----------------------------------------------
    service
    -----------------------------------------------*/
    #service {
        margin: -55% 0 0 0;
        padding: 55% 0 0 0;
    }
    #service .serviceInner {
        padding: 0 5% 135% 5%;
        width: auto;
    }
    #service #sliderBox {
        top: -5%;
    }
    #service #sliderBox .vegas-slide {
        width: 600px;
        height: 600px;
    }
    #service .textBox {
        padding: 0;
        text-align: left;
        color: #fff;
    }
    #service .textBox .title {
        margin: 0 0 3% 0;
    }
    #service .textBox .reportBtn a {
        display: block;
        text-align: center;
    }
    /*-----------------------------------------------
    results
    -----------------------------------------------*/
    #results {
        margin: -45% 0 0 0;
    }
    #results .resultsInner {
        padding: 0 5%;
    }
    #results .caseBox li {
        display: block;
        width: 100%;
        padding: 0 0 3% 0;
    }
    #company .companyInner .inner {
        padding: 10% 0% 5% 0%;
    }
}



@media screen and (max-width: 600px) {
    body {
        line-height: 1.5;
    }
    #mv .mvInner {
        padding: 15% 5% 40% 5%;
    }
    #policy .parallax02G {
        padding: 40% 0 35% 0;
    }
    #policy p {
        font-size: 16px;
    }
    #policy p span {
        font-size: 18px;
    }
    #service {
        margin: -60% 0 0 0;
        padding: 60% 0 0 0;
    }
    #service .serviceInner {
        padding: 0 5% 70% 5%;
    }
    #service .textBox p {
        font-size: 16px;
    }
    #results {
        margin: -45% 0 0 0;
    }
    #results p,
    #results span {
        font-size: 18px;
        text-align: left;
    }
    /*-----------------------------------------------
    contact
    -----------------------------------------------*/
    #employment table th {
        width: 12em !important;
        display: block;
		padding-left: 1% !important;
        border-bottom: #000 1px solid;
        font-weight: bold;
		white-space: nowrap;
    }
    #employment table td {
		padding-right: 1% !important;
	}
    #employment table td,
    #contactForm table td {
        padding: 2% 2% 5% 2%;
        width: 100%;
        display: block;
    }
    #contactForm table th {
        padding: 2% 2% 0 2%;
        width: 100%;
        display: block;
        font-weight: bold;
    }
    /*-----------------------------------------------
    service
    -----------------------------------------------*/
    #service .serviceInner {
        padding: 0 5% 140% 5%;
        width: auto;
    }
    #service #sliderBox {
        top: -10%;
    }
    #service #sliderBox .vegas-slide {
        width: 500px;
        height: 500px;
    }
}



@media screen and (max-width: 500px) {
    /*-----------------------------------------------
    policy
    -----------------------------------------------*/
    #policy .title {
        max-width: 90%;
    }
    /*-----------------------------------------------
    service
    -----------------------------------------------*/
    #service .serviceInner {
        padding: 0 5% 130% 5%;
        width: auto;
    }
    #service #sliderBox {
        top: -20%;
    }
    #service #sliderBox .vegas-slide {
        width: 425px;
        height: 425px;
    }
    /*-----------------------------------------------
    results
    -----------------------------------------------*/
    #results .caseBox .case table th {
        padding: 8px 8px 8px 0;
    }
    /*-----------------------------------------------
    company
    -----------------------------------------------*/
    #company .companyInner .inner img {
        max-width: 50%;
    }
}



@media screen and (max-width: 425px) {
    #mv .mvInner {
        padding: 20% 5% 30% 5%;
    }
    #policy {
        margin: -50% 0 0 0;
        -webkit-clip-path: polygon(0 16%, 100% 10%, 100% 100%, 0% 100%);
        clip-path: polygon(0 16%, 100% 10%, 100% 100%, 0% 100%);
    }
    #policy .parallax02G {
        padding: 60% 0 30% 0;
    }
    #service {
        margin: -55% 0 0 0;
        padding: 60% 0 0 0;
    }
    #service .serviceInner {
        padding: 0 5% 140% 5%;
        width: auto;
    }
    #service #sliderBox {
        top: -20%;
    }
    #service #sliderBox .vegas-slide {
        width: 375px;
        height: 375px;
    }
    #results {
        margin: -55% 0 0 0;
    }
    #results .caseBox .case table span {
        font-size: 22px;
    }
    /*-----------------------------------------------
    contact
    -----------------------------------------------*/
    #mt {
        background: url(../imgnew/contact/bg_01.png) no-repeat bottom left;
        background-size: cover;
        padding: 20% 0 15% 0;
        text-align: center;
    }
    #mt img {
        width: 70%;
    }
    #employment .inner {
        padding: 10% 0 10% 0;
    }
}



@media screen and (max-width: 375px) {
    #mv .mvInner {
        padding: 25% 5% 43% 5%;
    }
    #policy {
        margin: -60% 0 0 0;
    }
    #policy .parallax02G {
        padding: 40% 0 30% 0;
    }
    #service {
        margin: -60% 0 0 0;
        padding: 60% 0 0 0;
    }
    #service .serviceInner {
        padding: 10% 5% 150% 5%;
    }
    #service #sliderBox {
        top: -17%;
    }
    #service #sliderBox .vegas-slide {
        width: 355px;
        height: 355px;
    }
    #results {
        margin: -55% 0 0 0;
    }
    .completeText {
        padding: 5% 0 30% 0;
    }
}




@media screen and (max-width: 320px) {
    #mv .mvInner {
        padding: 25% 5% 40% 5%;
    }
    #policy {
        margin: -60% 0 0 0;
        -webkit-clip-path: polygon(0 18%, 100% 13%, 100% 100%, 0% 100%);
        clip-path: polygon(0 18%, 100% 13%, 100% 100%, 0% 100%);
    }
    #policy .parallax02G {
        padding: 60% 0 30% 0;
    }
    #service {
        margin: -65% 0 0 0;
        padding: 65% 0 0 0;
    }
    #service .serviceInner {
        padding: 10% 5% 150% 5%;
    }
    #service #sliderBox {
        top: -23%;
    }
    #service #sliderBox .vegas-slide {
        width: 300px;
        height: 300px;
    }
    #results {
        margin: -55% 0 0 0;
    }
    #results .caseBox .case table span {
        font-size: 18px;
    }
    /*-----------------------------------------------
    contact
    -----------------------------------------------*/
    #mt {
        padding: 25% 0 15% 0;
    }
}
