@charset "UTF-8";

/*** common setting ***/

html {
    font-size: 625%;
}

body {
    font-size: .16rem;
    font-family: futura-pt, a-otf-gothic-bbb-pr6n, sans-serif;
    color: #222222;
}

img {
    border: 0;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.wrap {
    overflow: hidden;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #222;
}

p {
    font-size: .13rem;
    line-height: 2.15;
}


/*** adjust parts ***/

.sp {
    display: none;
}

.flex {
    display: flex;
}


/*** all ***/

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 0 60px;
}

.container img {
    width: 100%;
}


/*** ヘッダー ***/

header {
    width: 293px;
    text-align: right;
    padding-right: 110px;
}

header h1 {
    font-size: .29rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1.3;
}

.header_nav {
    margin-top: 70px;
    margin-bottom: 20px;
}

.nav_inner li {
    font-size: .22rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    padding-bottom: 10px;
}

.nav_inner li a:hover,
.nav_inner li.current a {
    border-bottom: solid 1px #222;
}

.sns img {
    width: 18px;
}


/*** メインコンテンツ ***/

.contents {
    width: 707px;
}


/*** works ***/

.works_list {
    width: 100%;
    flex-wrap: wrap;
}

.works_list li {
    width: calc((100% - 30px) / 2);
    margin-right: 30px;
    margin-bottom: 30px;
}

.works_list li:nth-child(2n) {
    margin-right: 0;
}

.works_thumb {
    display: block;
    width: 100%;
    overflow: hidden;
    background: #222;
}

.works_thumb img {
    width: 100%;
    height: auto;
    opacity: 1;
    -webkit-transition: .1s ease-in-out;
    transition: .1s ease-in-out;
    /*transition: transform 1s linear 0s, width 2s linear 0s;
    -webkit-transition: ease-out;
    transition: ease-out;*/
}

.works_thumb:hover img {
    opacity: .9;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}


/* footer */

footer {
    font-family: Arial, Helvetica, sans-serif;
    width: 1000px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
}

footer p {
    color: #222;
    font-size: .10rem;
    font-weight: 400;
}


/* 下層ページ */

.box590 {
    width: 590px;
}


/* about */

.about_top {
    padding-bottom: 70px;
}

.about_top h3 {
    font-size: .17rem;
    padding-bottom: 40px;
}

.about_contents h3 {
    font-size: .18rem;
    padding-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.about_contents li {
    font-size: .13rem;
    line-height: 2.15;
}

.about_profile {
    padding-bottom: 40px;
}

.about_servise {
    padding-bottom: 40px;
}

.about_awards {
    padding-bottom: 40px;
}

.about_works {
    padding-bottom: 40px;
}


/* works_single */

.work_img {
    padding-bottom: 10px;
}

.work_ttl {
    font-size: .16rem;
    font-weight: 400;
}

.work_category {
    font-size: .12rem;
    color: #A8A7A7;
    padding-bottom: 15px;
}

.work_discription {
    padding-bottom: 40px;
}


/* contact */

.contact .form_lead {
    margin-bottom: 30px;
}

.formrun .form_item {
    font-size: .13rem;
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
}

.formrun .form_item input[type=text],
.formrun .form_item input[type=email],
.formrun .form_item textarea {
    display: block;
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #E8E8E8;
    box-sizing: border-box;
    font-size: 13px;
}

.formrun .form_item ::placeholder {
    color: #575757;
}

.formrun .form_item textarea {
    outline: none;
    border: none;
    resize: vertical;
    margin-bottom: 20px;
}

.formrun .form_item input[type=checkbox] {
    margin-left: 7px;
    margin-bottom: 16px;
}

button[type=submit] {
    border: none;
    border-radius: 5px;
    outline: none;
    display: block;
    height: 40px;
    width: 100%;
    text-align: center;
    font-size: .18rem;
    font-weight: 300;
    letter-spacing: .03em;
    color: #fff;
    background-color: #222222;
    cursor: pointer;
    box-sizing: content-box;
    transition: 0.1s ease all;
}

button[type=submit]:hover {
    opacity: 0.8;
}


/* レスポンシブ */

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .flex {
        flex-direction: column;
    }
    html {
        font-size: 480%;
    }
    .container {
        width: 92%;
        max-width: 768px;
        margin: 0 auto;
        padding: 20px 0;
    }
    header {
        width: 100%;
        text-align: right;
        padding-right: 0;
        margin-bottom: 20px;
    }
    header h1 {
        font-size: .32rem;
        font-weight: 600;
        letter-spacing: 0.13em;
        line-height: 1.3;
    }
    .header_nav {
        margin-top: 15px;
        margin-bottom: 10px;
    }
    .nav_inner li {
        font-size: .22rem;
        font-weight: 300;
        letter-spacing: 0.03em;
        padding-bottom: 5px;
    }
    .sns img {
        width: 18px;
    }
    .contents {
        width: 100%;
    }
    .works_list li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    /* footer */
    footer {
        width: 100%;
        padding: 20px;
    }
    /* 下層ページ */
    .box590 {
        width: 100%;
    }
    button[type=submit] {
        box-sizing: border-box;
    }
}