@charset "UTF-8";

@media screen and (max-width:767px){

    body{
        font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
        background: #fff;
        font-size: 14px;
        color: #434a54;
        min-width: 320px;
    }
    
    /*レイアウト*/
    #wrapper{
        overflow: hidden;
        position: relative;
    }
    .inner{
        margin: 0 auto;
    }
    header{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
    }
    article{
        z-index:0;
    }
    footer{
        background: #2673ba;
        color: #fff;
        position: relative;
        padding: 30px 0 0 0;
    }
    
    /*共通*/
    a{
        color: #1e5c95;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    a:hover{
        color: #2673ba;
    }
    h2{
        text-align: center;
    }
    .pc-img{
        display: none;
    }

    /*animation header*/
    .header-sp-fade {
        animation-name: header-fade-in;
        animation-duration: 2s;
        animation-timing-function: ease-out;
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-fill-mode: forwards;
        }
        @keyframes header-fade-in {
        0% {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
        }
        100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        }
    }
    /*animation main-visual*/
    .main-fade {
        animation-name: img-fade-in;
        animation-duration: 1s;
        animation-timing-function: ease-out;
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-fill-mode: forwards;
    }
    @keyframes img-fade-in {
        0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
        }
        100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        }
    }
    /*animation content*/
    .effect-fade {
        opacity : 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
    }
    .effect-fade.active {
        opacity : 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    .list-fade {
        opacity : 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
    }
    .list-fade.active {
        opacity : 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    /*/----------HEADER----------/*/
    .pc-header{
        display: none;
    }
    .sp-header{
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        opacity: 0;
        box-shadow: 0px 1px 7px 1.5px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        transition-duration:1s;
        padding-bottom: 5px;
        position: relative;
    }
    #btn-menu{
        width: 40px;
        height: 40px;
        position: absolute;
        right: 0px;
        top: 0px;
    }
    #btn-menu span,
    #btn-menu span:before,
    #btn-menu span:after {
        display: inline-block;
        width: 20px;
        height: 3px;
        background: #2673ba;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.3s;
    }
    #btn-menu span {
        left: 50%;
        top: 50%;
        transform: translate( -50%, -50% );
    }
    #btn-menu span:before {
        content: "";
        transform: translateY( -7px ) rotate( 0deg );
    }
    #btn-menu span:after {
        content: "";
        transform: translateY( 7px ) rotate( 0deg );
    }
    #btn-menu.active span {
        background: transparent !important;
    }
    #btn-menu.active span:before {
        transform: rotate( 45deg ) !important;
    }
    #btn-menu.active span:after {
        transform: rotate( -45deg ) !important;
    }
    .overlay {
        height: 0%;
        width: 100%;
        position: fixed;
        z-index: 100;
        top: 0;
        left: 0;
        background-color: #2673ba;
        overflow-y: hidden;
        transition: 0.5s;
    }
    .overlay-content {
        position: relative;
        top: 0;
        width: 100%;
        text-align: center;
        margin-top: 70px;
        border-top: 1px solid #689dcf;
    }
    .overlay-content a{
        display: block;
        padding: 10px 0;
        text-align: center;
        border-bottom: 1px solid #689dcf;
    }
    .overlay img{
        position: absolute;
        top: 15px;
        left: 15px;
        height: 18px;
    }
    .overlay a {
        text-decoration: none;
        color: #fff;
        display: block;
        transition: 0.3s;
    }
    .overlay .closebtn {
        position: absolute;
        top: 0;
        right: 5px;
        font-size: 30px;
        color: #fff;
    }
    h1{
        float: left;
    }
    h1 img{
        height: 18px;
        margin: 10px 0 0 15px;
    }
    nav{
        float: right;
    }
    nav ul{
        overflow: hidden;
    }
    nav li{
        float: left;
        text-align: center;
        padding: 20px;
    }
    nav li a{
        color: #000;
        font-weight: bold;
        text-decoration: none;
    }
    nav li.nav-contact{
        background-color: #1e5c95;
        margin-left: 10px;
        padding: 0;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    nav li.nav-contact a{
        display: block;
        color: #fff;
        padding: 20px 30px 19px 30px;
        cursor: pointer;
    }
    nav li.nav-contact:hover{
        background-color: #20629e;
    }
    
    /*/----------MAIN----------/*/
    .main-visual{
        width: 100%;
        height: 100vh;
        position: relative;
        background-color: #eaf1f8;
    }
    .lead-area{
        background-color: #2673ba;
        width: 100%;
        height: 40vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .lead-area .lead{
        color: #fff;
        text-align: center;
        margin-top: 40px;
    }
    .lead-area .lead h2{
        color: #fff;
        font-size: 40px;
        font-family: 'Bebas Neue', cursive;
        letter-spacing: 6px;
        line-height: 60px;
    }
    .lead-area .lead h2 span{
        font-family: 'Shadows Into Light Two', cursive;
        font-size: 50px;
        letter-spacing: 0;
        margin-left: 5px;
        display: block;
    }
    .lead-area .lead p{
        font-size: 16px;
        font-weight: bold;
        margin-top: 10px;
    }
    .trato-area{
        background-color: #518fc7;
        width: 100%;
        height: 15vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .trato-area .lead{
        color: #fff;
        text-align: center;
    }
    .trato-area .lead p{
        font-size: 14px;
        margin-bottom: 5px;
    }
    .trato-area .lead p br{
        display: none;
    }
    .trato-area img{
        width: 120px;
    }
    .main-img{
        width: 100%;
        height: 45vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #eaf1f8 url(../img/main_sp.png) no-repeat center top 20px;
        background-size: 90% auto;
    }

    /*/----------CONCEPT----------/*/
    .concept{
        padding: 50px 20px 50px 20px;
    }
    .concept h2{
        font-family: 'Bebas Neue', cursive;
        font-size: 40px;
        color: #2673ba;
        letter-spacing: 1px;
        display: table;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .concept h2 div{
        display: inline-block;
        padding-top: 15px;
    }
    .concept h2 div.it{
        padding-top: 0;
    }
    .concept h2 div.it span{
        font-family: 'Shadows Into Light Two', cursive;
        font-size: 50px;
        letter-spacing: 0;
        margin: 0 15px;
        color: #222;
    }
    .concept-part{
        padding-bottom: 30px;
    }
    .concept-part div{
        text-align: center;
    }
    .concept-part div.concept-txt{
        text-align: left;
    }
    .concept-part img{
        width: 80%;
        margin-bottom: 10px;
    }
    .concept-part h3{
        font-family: 'Bebas Neue', cursive;
        font-size: 34px;
        color: #222;
        text-align: center;
    }
    .concept-part h3 span{
        font-family: 'Shadows Into Light Two', cursive;
        color: #20629e;
        background: none;
    }
    .concept-part p{
        font-size: 16px;
        color: #20629e;
        font-weight: bold;
        margin: 5px 0 10px 0;
    }
    
    /*/----------SERVICE----------/*/
    .service{
        background-color: #dfeaf5;
        padding: 60px 20px 50px 20px;
    }
    .service h2{
        font-family: 'Bebas Neue', cursive;
        font-size: 40px;
        color: #222;
        letter-spacing: 1px;
    }
    .service h2 p{
        font-size: 13px;
        color:#888;
    }
    .service .service-trato{
        margin: 20px 0 40px 0;
        background-color: #fff;
        padding: 30px 0 20px 0;
        border-radius: 10px;
    }
    .service .service-trato .trato-img{
        width: 100%;
        text-align: center;
        padding: 0 25px;
    }
    .service .service-trato .trato-img img{
        width: 140px;
        
    }
    .service .service-trato .trato-img img.capture{
        width: 100%;
        border: 1px solid #d3d3d3;
        margin-top: 10px;
    }
    .service .service-trato .trato-txt{
        margin: 10px 25px;
    }
    .service a{
        display: block;
        text-decoration: none;
        text-align: center;
        width: 100%;
        background-color: #2673ba;
        color: #fff;
        padding: 10px;
        font-weight: bold;
        font-size: 16px;
        letter-spacing: 1px;
        cursor: pointer;
        opacity: 1;
        -webkit-transition: all .3s;
        transition: all .3s;
        border-radius: 5px;
        margin-top: 20px;
    }
    .service ul{
        margin-top: 30px;
    }
    .service li{
        text-align: center;
        margin-bottom: 30px;
    }
    .service li img{
        width: 50%;
        margin-bottom: 5px;
    }
    .service li h3{
        font-size: 18px;
        color: #2673ba;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .service li p{
        text-align: left;
    }
    
    /*/----------WORKS----------/*/
    .works{
        padding: 60px 20px 50px 20px;
    }
    .works h2{
        font-family: 'Bebas Neue', cursive;
        font-size: 40px;
        color: #222;
        letter-spacing: 1px;
    }
    .works h2 p{
        font-size: 13px;
        color:#888;
    }
    .works ul{
        margin-top: 20px;
    }
    .works li{
        text-align: center;
        font-weight: normal;
        margin-bottom: 30px;
    }
    .works li a{
        display: inline-block;
    }
    .works li a img{
        width: 80%;
        border: 1px solid #dedede;
    }

    /*/----------NEWS----------/*/
    .news{
        background-color: #f0f0f0;
        padding: 60px 20px 50px 20px;
    }
    .news h2{
        font-family: 'Bebas Neue', cursive;
        font-size: 30px;
        color: #222;
        letter-spacing: 1px;
        text-align: center;
    }
    .news h2 p{
        font-size: 13px;
        color:#888;
    }
    .news ul{
        margin-top: 20px;
    }
    .news li{
        margin-bottom: 10px;
        border-bottom: 1px solid #ccc;
        padding-bottom: 10px;
    }
    .news li span{
        display: block;
        color: #777;
        font-size: 13px;
    }

    /*/----------PRIVACY POLICY----------/*/
    .privacy{
        padding: 60px 10px 50px 10px;
        background-color: #eaf1f8;
    }
    .privacy h2{
        font-family: 'Bebas Neue', cursive;
        font-size: 40px;
        color: #222;
        letter-spacing: 1px;
    }
    .privacy h2 p{
        font-size: 13px;
        color:#888;
    }
    .privacy-content{
        background-color: #fff;
        padding: 10px 15px;
        margin: 20px auto;
    }
    .privacy h3{
        color: #2673ba;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .privacy h4:before {
        content: '\025cf';
        color: #2673ba;
    }
    .privacy h4{
        font-weight: bold;
        font-size: 16px;
        margin-bottom: 5px;
    }
    .privacy-content p{
        margin-bottom: 30px;
    }
    .privacy table{
        display: block;
        overflow-x: scroll;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        margin: 10px 0 30px 0;
    }
    .privacy table tbody {
        width: 100%;
        display:table;
    }
    .privacy th,
    .privacy td{
        border: 1px solid #ccc;
        font-weight: normal;
        padding: 10px 15px;
        text-align: center;
    }
    .privacy th{
        background-color: #efefef;
    }

    /*/----------CONTACT----------/*/
    .contact{
        padding: 60px 10px 50px 10px;
        background-color: #eaf1f8;
    }
    .contact h2{
        font-family: 'Bebas Neue', cursive;
        font-size: 40px;
        color: #222;
        letter-spacing: 1px;
    }
    .contact h2 p{
        font-size: 13px;
        color:#888;
    }
    .contact-content{
        margin: 20px auto;
    }

    .contact-content li{
        margin-bottom: 20px;
        padding: 0 10px;
    }
    .contact-content li label{
        font-size: 14px;
        color: #2267a7;
        display: block;
        margin-bottom: 5px;
    }
    .contact-content li input,
    .contact-content li textarea{
        background: #fff;
        border: 1px solid #fff;
        border-radius: 3px;
        padding: 5px;
        width: 100%;
    }
    .privacy-area{
        width: 100%;
        height: 150px;
        padding: 10px;
        background: #fff;
        overflow-y: scroll;
        font-size: 14px;
    }
    .contact-content li.error label{
        color: #dd0000;
    }
    .contact-content li.error input,
    .contact-content li.error textarea{
        border: 1px solid #dd0000;
    }
    .contact-content li.error p{
        color: #dd0000;
        margin-top: 5px;
    }

    /*button*/
    .form-btn{
        text-align: center;
        margin: 30px 0;
    }
    .form-btn button{
        display: inline-block;
        background-color: #2673ba;
        color: #fff;
        padding: 15px 40px;
        font-weight: bold;
        font-size: 16px;
        letter-spacing: 1px;
        cursor: pointer;
        opacity: 1;
        -webkit-transition: all .3s;
        transition: all .3s;
        border-radius: 5px;
    }
    button:hover{
        color: #fff;
        opacity: 0.9;
    }
    
    /*/----------FOOTER----------/*/
    footer .col{
        display: block;
        font-size: 13px;
        color: #fff;
    }
    .col-left h1{
        float: none;
        margin: 0;
    }
    .col-left h1 img{
        width: 67px;
        height: 20px;
        margin: 0 10px 0 0;
    }
    .col-left img{
        height: 40px;
    }
    .col-left ul{
        margin-top: 10px;
    }
    .col-left,
    .col-mid{
        padding: 0 20px;
    }
    .col-left li,
    .col-mid li{
        margin-bottom: 15px;
    }
    .col-left li p,
    .col-mid li p{
        font-size: 12px;
        color: #bbb;
    }
    footer .col-right{
        background: #2267a7;
        padding: 20px;
    }
    footer .col-right li {
        margin-bottom: 15px;
    }
    footer .col-right li a{
        color: #fff;
        text-decoration: none;
    }
    footer .col-right li a:hover{
        opacity: 0.6;
    }
    .copyright{
        font-family: 'Bebas Neue', cursive;
        letter-spacing: 2px;
        opacity: 0.3;
        padding-top: 10px;
        text-align: center;
    }

    .page-top{
        width: 40px;
        height: 40px;
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: #1b5082;
        z-index: 50;
        box-shadow: 0px 1px 7px 1.5px rgba(0, 0, 0, 0.2);
    }
    .page-top a{
        display: block;
        background: url(../img/icn_pagetop.png) no-repeat center center;
        background-size: 20px auto;
        width: 40px;
        height: 40px;
    }
}