@charset"utf-8";

* {
    margin: 0;
    padding: 0;
}
html{
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: 62.5%;
    background-color: #FFFFFF;
}
body {
    font-family: Quicksand, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    margin: 0;
    padding: 0;
    letter-spacing: -0.01em;
    -webkit-text-size-adjust: 100%;
　　-moz-text-size-adjust: 100%;
　　-ms-text-size-adjust: 100%;
　　-o-text-size-adjust: 100%;
　　text-size-adjust: 100%;
    font-size: 1.4em;
}
a{
    text-decoration: none;
    color: #333;
}
li{
    list-style-type: none;
}

/*iPhoneでinput要素にCSSが効かない時 */
input[type="submit"]{
　　-webkit-appearance: none;
    border-radius: 0;
}

figure img{
    width: 100%;
    height: auto;
}
.container-header,.container{
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;
}
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
* html .clearfix{ zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */

@media (max-width: 600px){
    .container{
        width: 90%;
        margin: 0 auto;
    }
    .is-pulled-left,.is-pulled-right{
        float: none!important;
    }
}

/* 600px以上に対応 */
.pc-mode{
    display: inline;
}
@media (max-width: 600px){
    .pc-mode{
        display: none;
    }
}
/* 600px以下に対応 */
.sp-mode{
    display: none;
}
@media (max-width: 600px){
    .sp-mode{
        display: inline;
    }
}

main{
    margin-bottom: 80px;
}

/******** header area ********/
header {
    background: url("../images/top/top_kv_image.jpg")center/ cover;
    height: 100vh;
    margin-bottom: 4rem;
}
header div.logo{
    max-width: 300px;
    float: left;
    margin: 18px 0 0 10px;
}
header div.logo img{
    width: 100%;
    height: auto;
}
header div.logo img:hover{
    opacity: 0.5;
    transition: .5s;
}
@media (max-width: 480px) {
    header {
        width: 100%;
    }
    header div.logo{
        max-width: 250px;
        margin: 22px 0 0 10px;
    }
}
@media (max-width: 370px) {
    header div.logo{
        max-width: 230px;
        margin: 22px 0 0 10px;
    }
}

/******** nav ********/
div.nav-area{
    float: right;
}
@media screen and (max-width: 800px) {
    /* humbarger button */
    #toggle {
        display: block;
        color: #fff;
        text-align: center;
        width: 28px;
        height: 22px;
        position: absolute;
        top: 35px;
        right: 10px;
        z-index: 9999;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .trigger,
    .trigger span {
        display: inline-block;
        -webkit-transition: all .4s;
        transition: all .4s;
    }
    .trigger {
        position: relative;
        width: 28px;
        height: 22px;
    }
    .trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #FFF;
        border-radius: 4px;
    }
    .trigger span:nth-of-type(1) {
        top: 0;
    }
    .trigger span:nth-of-type(2) {
        top: 10px;
    }
    .trigger span:nth-of-type(2)::after {
        position: absolute;
        top: 0;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
        -webkit-transition: all .4s;
        transition: all .4s;
    }
    .trigger span:nth-of-type(3) {
        bottom: 0;
    }
    .trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(10px) scale(0);
        transform: translateY(10px) scale(0);
    }
    .trigger.active span:nth-of-type(2) {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .trigger.active span:nth-of-type(2)::after {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .trigger.active span:nth-of-type(3) {
        -webkit-transform: translateY(-10px) scale(0);
        transform: translateY(-10px) scale(0);
    }
    /* Full screen humbarger menu */
    .toggleWrap {
        background: rgba(0,0,0,0.8);
        padding: 80px 30px 10px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 8000;
    }
    ul.mainNav li {
        list-style-type: none;
    }
    a.navItem {
        display: block;
        text-decoration: none;
        color: #FFF;
        border-bottom: 1px solid #FFF;
        padding: 20px 0;
        text-align: center;
        font-size: 1.6rem;
    }
    a.navItem:hover{
        color: #FFD464;
        transition: .5s;
    }
    .hide {
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
    }
    .animation {
        -webkit-transition-property: opacity, visibility;
        transition-property: opacity, visibility;
        -webkit-transition-duration: .3s;
        transition-duration: .3s;
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    .no-scroll {
        overflow: hidden;
    }
}
@media screen and (max-width: 370px) {
    /* humbarger button */
    #toggle {
        top: 32px;
    }
}

@media screen and (min-width: 801px) {
    /* humbarger button */
    #toggle {
        display: none;
    }
    .toggleWrap {
        background: none;
        height: auto;
        position: static;
        padding: 0;
        margin-bottom: 20px;
    }
    .toggleWrap.active{
        display: none;
    }
    /* navigation menu */
    ul.mainNav {
        margin: 15px auto 0;
        text-align: right;
    }
    ul.mainNav li{
        padding-top: 24px;
        display: inline-block;
        margin-right: 20px;
    }
    ul.mainNav li:last-child{
        margin-right: 10px;
    }
    a.navItem {
        padding: 0;
        border-bottom: none;
        color: #FFF;
        font-size: 1.4rem;
    }
    a.navItem:hover{
        color: #FFD464;
        transition: .5s;
    }
    .animation {
        -webkit-transition: none;
        transition: none;
    }
    .hide {
        opacity: 1;
        visibility: visible;
    }
}

/* hero */
div.hero-area div.title{
    position: absolute;
    -ms-transform:translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
    width: 100%;
    left: 50%;
    top: 50%;
}
div.hero-area div.title h2{
    font-size: 4.88rem;
    text-shadow:1px 1px 2px rgba(0, 0, 0, 1);
    z-index: 10;
}
@media screen and (max-width: 960px) {
    div.hero-area div.title h2{
        font-size: 5.0vw;
    }
}
@media screen and (max-width: 600px) {
    div.hero-area div.title h2 {
        font-size: 4.70vw;
        line-height: 130%;
    }
}

h3{
    font-size: 30px;
    margin-bottom: 50px;
    font-weight: bold;
    color: #3273dc;
}
h3::before{
    content: attr(data-subtitle);
    display: block;
    font-size: 17px;
    line-height: 100%;
}

/******** product area ********/
@media screen and (max-width: 600px) {
/*        .card{
            width: 90%;
            margin: 0 auto;
        }*/
}

/******** about us area ********/
section.about_us .is-pulled-left.about_us_text{
    width: 52%;
}
section.about_us .is-pulled-right.about_us_photo{
    width: 46%;
}
@media screen and (max-width: 600px) {
  section.about_us .is-pulled-left.about_us_text{
    width: 100%;
    margin-bottom: 30px;
    }
    section.about_us .is-pulled-right.about_us_photo{
        width: 100%;
    }  
}

/******** works area ********/
section.works .title.is-2 {
    font-size: 2.2rem;
    line-height: 1.35;
    margin-bottom: 30px;
}
section.works .subtitle{
    margin-bottom: 40px;
}
/******** service area ********/
section.service .column p{
    font-weight: bold;
}
section.service .column .is-4{
    font-size: 1.6rem;
}
section.service .column{
    margin-top: 20px;
}
section.service .column figure img{
    border-radius: 50%;
    width: 100%;
    border: 15px solid #3273dc;
}
@media screen and (max-width: 600px) {
    section.service .subtitle.is-3{
        font-size: 1.8rem!important;
        line-height: 1.3;
    }
    section.service .column .is-4{
        font-size: 1.8rem;
    }
    section.service .column{
        margin-top: 40px;
        text-align: center;
    }
    section.service .column figure img{
        border-radius: 50%;
        width: 85%;
        border: 15px solid #3273dc;
    }
}

/******** overview area ********/
section.overview table{
    border-bottom: 1px solid #dbdbdb;
}
section.overview th{
    background: #f5f5f5;
}
section.overview table th,section.overview table td{
    padding: 7px 0 5px 5px!important;
}
section.overview table td.ourServices ul li{
    list-style-type: disc;
    margin-left: 25px;
}
@media screen and (max-width: 600px) {
    section.overview th{
        display: block;
        border-bottom: none;
        background: #f5f5f5;
        padding-top: 8px!important;
        padding-bottom: 8px!important;
    }
    section.overview td{
        display: block;
        border-bottom: none;
        padding-top: 8px!important;
        padding-bottom: 8px!important;
    }
}

/******** facility area ********/
section.facility table{
    border-bottom: 1px solid #dbdbdb;
}

@media screen and (max-width: 600px) {
    section.facility th.machine,section.facility td.machine{
        width: 40%;
        padding-left: 0;
    }
    section.facility th.maker,section.facility td.maker{
        width: 60%;
    }
    section.facility th.num,section.facility td.num{
        display: none;
    }
}

/******** Access area ********/
div#access {
    width: 55%;
    height: 0;
    padding-bottom: 40%;
    margin-right: 3%;
}
.companyprof{
    width: 42%;
}
.companyprof h4{
    max-width: 235px;
    height: auto;
}
.companyprof h4 img{
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
    div#access{
        width: 90%;
        margin: 0 auto 30px;
        padding-bottom: 95%;
    }
    div.companyprof{
        width: 90%;
        margin: 0 auto;
    }
    section.access .title.is-2 {
        font-size: 2.0rem;
        line-height: 1.2;
    }
}

/******** contact area ********/
section.contact .title.is-2 {
    font-size: 2.2rem;
    line-height: 1.35;
}
section.contact figure{
    background: #3273dc;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 50px auto 30px;
}
section.contact figure .fa{
    margin-top: 30px;
}
section.contact figure:hover{
    background: #312EC5;
    transition: .5s;
}
figure.mail-icon{
    font-size: 12.5rem;
    text-align: center;
}
figure.mail-icon i{
    color: #FFF;
}
@media screen and (max-width: 600px) {
    section.contact .title.is-2 {
        font-size: 2.0rem;
        line-height: 1.2;
    }
    section.contact figure{
        width: 160px;
        height: 160px;
        margin: 40px auto 30px;
    }
    figure.mail-icon{
        font-size: 10.5rem;
        color: #FFF;
        text-align: center;
    }
    section.contact .subtitle.is-3 {
        font-size: 1.7rem;
    }
}
.btn_top{
    text-align: right;
    padding-bottom: 10px;
    cursor: pointer;
    font-size: 13px;
}
.btn_top:hover{
    color: #FFD464;
    transition: .6s;
}
/******** footer area ********/
footer{
    background: #595656;
    padding: 45px 0 50px;
}
div.footerlogo{
    margin: 0 0 20px 10px;
    float: left;
    height: auto;
}
div.footerlogo img{
    max-width: 250px;
}
div.footerlogo:hover{
    opacity: 0.5;
    transition: .5s;
}
nav.footernav{
    float: right;
}
nav.footernav li{
    display: inline-block;
    line-height: 180%;
    margin-right: 25px;
}
nav.footernav li:last-child{
    margin-right: 10px;
}
nav.footernav li a{
    color: #FFF;
}
nav.footernav li a:hover{
    color: #FFD464;
    transition: .5s;
}
ul.footer_nav_bottom{
    margin-top: 20px;
}
div.copyright{
    color: #FFF;
    margin-left: 10px;
}

@media screen and (max-width: 600px) {
    footer div.container{
        width: 100%;
    }
    div.footerlogo{
        margin: 0 0 20px 0;
        text-align: center;
        float: none;
        width: 100%;
    }
    div.footerlogo img{
        max-width: 230px;
    }
    nav.footernav{
        float: none;
        text-align: center;
        margin-bottom: 20px;
        margin-left: 0;
        width: 100%;
    }
    nav.footernav li{
        margin-right: 16px;
    }
    div.copyright{
        text-align: center;
        margin-left: 0;
    }
}
