@charset "UTF-8";

@media only screen and (min-width:768px) and (max-width:1023px) {

    body{
        font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
        background: #fff;
        font-size: 16px;
        color: #434a54;
    }

    /*レイアウト*/
    #wrapper{
        position: relative;
    }
    .inner{
        margin: 0 auto;
    }
    header{
        margin: 20px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
    }
    article{
        z-index:0;
    }
    footer{
        width: 100%;
        background: #2673ba;
        color: #fff;
        display: table;
        position: relative;
    }

    /*共通*/
    a{
        color: #1e5c95;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    a:hover{
        color: #2673ba;
    }
    h2{
        text-align: center;
    }
    .sp-img,
    .pc-img{
        display: none;
    }

    /*animation header*/
    .header-fade {
        animation-name: fade-in;
        animation-duration: 2s;
        animation-timing-function: ease-out;
        animation-delay: 1s;
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-fill-mode: forwards;
    }
    @keyframes 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;
    }
    .list-fade.active:nth-child(1) {
        -webkit-animation: listFadeIn 0.5s ease 0.5s 1 forwards;
        animation: listFadeIn 0.5s ease 0.5s 1 forwards;
    }

    .list-fade.active:nth-child(2) {
        -webkit-animation: listFadeIn 0.5s ease 1s 1 forwards;
        animation: listFadeIn 0.5s ease 1s 1 forwards;
    }

    .list-fade.active:nth-child(3) {
        -webkit-animation: listFadeIn 0.5s ease 1.5s 1 forwards;
        animation: listFadeIn 0.5s ease 1.5s 1 forwards;
    }
    @-webkit-keyframes listFadeIn {
        100% {
          opacity: 1;
        }
    }
    @keyframes listFadeIn {
        100% {
          opacity: 1;
        }
    }

    /*/----------HEADER----------/*/
    .pc-header{
        width: 100%;
        height: 60px;
        background-color: rgba(255, 255, 255, 0.9);
        opacity: 0;
        box-shadow: 0px 3px 7px 1.5px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        transition-duration:1s;
    }
    .sp-header, .overlay{
        display: none;
    }
    .pc-header-short{
        width: 150px;
        height: 60px;
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0px 3px 7px 1.5px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        transition-duration:1s;
    }
    .btn-open{
        float: left;
        cursor: pointer;
    }
    .nav-box{
        display: none;
    }
    .is-animation {
        width: 125px;
    }
    h1{
        float: left;
    }
    h1 img{
        height: 25px;
        margin: 15px 0 0 20px;
    }
    nav{
        float: right;
        font-size: 13px;
    }
    nav ul{
        overflow: hidden;
    }
    nav li{
        float: left;
        text-align: center;
        padding: 20px 10px;
    }
    nav li:nth-child(5n){
        padding-right: 20px;
    }
    nav li a{
        color: #000;
        text-decoration: none;
    }
    nav li#nav-contact{
        padding: 0;
        -webkit-transition: 1s;
        transition: 1s;
    }
    nav li#nav-contact a{
        display: block;
        padding: 20px 15px;
        cursor: pointer;
    }
    nav li#nav-contact.bcblue{
        background-color: #1e5c95;
        margin-right: -1px;;
    }
    nav li#nav-contact.bcblue a{
        color: #fff;
    }

    /*/----------MAIN----------/*/
    .main-visual{
        width: 100%;
        height: 100vh;
        position: relative;
        background-color: #eaf1f8;
    }
    .lead-area{
        background-color: #2673ba;
        width: 100%;
        height: 35vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .lead-area .lead{
        color: #fff;
        text-align: center;
        margin-top: 50px;
    }
    .lead-area .lead h2{
        font-size: 58px;
        font-family: 'Bebas Neue', cursive;
        letter-spacing: 6px;
    }
    .lead-area .lead h2 span{
        font-family: 'Shadows Into Light Two', cursive;
        font-size: 70px;
        letter-spacing: 0;
        margin-left: 5px;
    }
    .lead-area .lead p{
        font-size: 20px;
        font-weight: bold;
        margin-top: 15px;
    }
    .lead-area .lead p br{
        display: none;
    }
    .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: 18px;
        margin-bottom: 15px;
    }
    .trato-area .lead p br{
        display: none;
    }
    .trato-area img{
        width: 170px;
    }
    .main-img{
        width: 100%;
        height: 50vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #eaf1f8 url(../img/main.png) no-repeat center center;
        background-size: 700px auto;
    }

    /*/----------CONCEPT----------/*/
    .concept{
        padding: 50px 40px;
    }
    .concept h2{
        font-family: 'Bebas Neue', cursive;
        font-size: 40px;
        color: #2673ba;
        letter-spacing: 1px;
        display: table;
        margin: 0 auto;
        margin-bottom: 50px;
    }
    .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: 50px;
    }
    .concept-part div{
        text-align: center;
    }
    .concept-part div.concept-txt{
        text-align: left;
    }
    .concept-part img{
        width: 60%;
        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;
        text-align: center;
    }

    /*/----------SERVICE----------/*/
    .service{
        background-color: #dfeaf5;
        padding: 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: 30px 0 60px 0;
        background-color: #fff;
        padding: 30px 0 20px 0;
        border-radius: 10px;
    }
    .service .service-trato .trato-img{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 30px;
    }
    .service .service-trato .trato-img img{
        width: 25%;
        margin: 0 30px;
    }
    .service .service-trato .trato-img img.capture{
        width: 40%;
        border: 1px solid #d3d3d3;
        margin-top: 15px;
    }
    .service .service-trato .trato-txt{
        margin: 10px 25px;
    }
    .service .trato-link{
        text-align: center;
    }
    .service .trato-link a{
        display: inline-block;
        text-decoration: none;
        background-color: #2673ba;
        color: #fff;
        padding: 10px 40px;
        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 a:hover{
        color: #fff;
        opacity: 0.9;
    }
    
    .service ul{
        overflow: hidden;
        margin-top: 30px;
    }
    .service li{
        float: left;
        width: 48%;
        text-align: center;
        padding: 0 20px;
    }
    .service li img{
        width: 70%;
        margin-bottom: 15px;
    }
    .service li h3{
        font-size: 18px;
        color: #2673ba;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .service li p{
        text-align: left;
    }

    /*/----------WORKS----------/*/
    .works{
        padding: 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{
        overflow: hidden;
        margin-top: 30px;
    }
    .works li{
        float: left;
        width: 33%;
        text-align: center;
        padding: 0 20px;
        font-weight: bold;
        font-size: 14px;
        font-weight: normal;
    }
    .works li a img{
        width: 100%;
        border: 1px solid #dedede;
        -webkit-transition: all .3s;
        transition: all .3s;
        margin-bottom: 5px;
    }
    .works li a:hover img{
        width: 100%;
        border: 1px solid #2673ba;
    }

    /*/----------NEWS----------/*/
    .news{
        background-color: #f0f0f0;
        padding: 40px 40px 30px 40px;
        overflow: hidden;
    }
    .news h2{
        font-family: 'Bebas Neue', cursive;
        font-size: 30px;
        color: #222;
        letter-spacing: 1px;
        float: left;
        margin-bottom: 15px;
    }
    .news h2 p{
        font-size: 13px;
        color:#888;
        display: inline-block;
        margin-left: 15px;
    }
    .news ul{
        float: left;
    }
    .news li{
        margin-bottom: 10px;
        font-size: 14px;
    }
    .news li span{
        margin-right: 20px;
    }

    /*/----------PRIVACY POLICY----------/*/
    .privacy{
        padding: 120px 20px 50px 20px;
        background-color: #dfeaf5;
        font-size: 14px;
    }
    .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: 40px 30px;
        margin: 30px 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: 15px;
        margin-bottom: 5px;
    }

    .privacy-content p{
        margin-bottom: 30px;
        padding: 0 10px 0 18px;
    }

    .privacy table{
        width: 95%;
        margin: 10px 0 30px 18px;
    }
    .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: 120px 40px 50px 40px;
        background-color: #dfeaf5;
    }
    .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{
        width: 500px;
        margin: 30px auto;
    }

    .contact-content li{
        margin-bottom: 20px;
    }
    .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: 50px 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: table-cell;
        vertical-align: top;
        width: 33%;
        font-size: 13px;
        color: #fff;
    }
    .col-left {
        padding: 40px 30px;
    }
    .col-left h1{
        float: none;
    }
    .col-left h1 img{
        width: 67px;
        height: 20px;
        margin: 0 10px 0 0;
    }
    .col-left img{
        height: 60px;
    }
    .col-left ul{
        margin-top: 10px;
    }
    .col-mid{
        padding: 40px 30px;
    }
    .col-right{
        padding: 40px 30px;
    }
    .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;
    }
    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;
    }
    .page-top{
        width: 55px;
        height: 55px;
        position: absolute;
        top: -28px;
        right: 10%;
        background: #1b5082;
        -webkit-transition: all .3s;
        transition: all .3s;
        box-shadow: 0px 3px 7px 1.5px rgba(0, 0, 0, 0.2);
    }
    .page-top:hover{
        opacity: 0.95;
    }
    .page-top a{
        display: block;
        background: url(../img/icn_pagetop.png) no-repeat center center;
        background-size: 25px auto;
        width: 55px;
        height: 55px;
    }
}
