@charset "utf-8";

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
    text-align: justify;
    color: #fff;
    background: url(../images/body_bg.png) #000 repeat-y;
    background-size: cover;
    box-sizing: border-box;
    overflow-x:hidden;
}


@font-face {
    font-family: 'CapsuulaRegular';
    font-style: normal;
    font-weight: normal;
    src: local('CapsuulaRegular'), url('Capsuula.woff') format('woff');
}

style {
}

.-serif {
    font-family: 'Noto Serif JP', serif;
}

img[src$=".svg"],
img {
    width: 100%;
    height: auto;
}

img {
    -webkit-backface-visibility: hidden;
}

.inner {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    opacity: 0.7;
}

.btns a{
    border: 1px solid #646464;
    padding: 0.5em 2em;
    border-radius: 2em;
    display: inline-block;
    height: 4rem;
    width: 20rem!important;
}
.btns a img{
    width: 2rem;
    height: auto;
    display: inline-block;
    vertical-align:text-top;
    margin-right: 0.5em;
}

@media screen and (max-width: 768px) {
    .btns a{
        width: 100%!important;
    } 
}


/*--header------------*/

header {
    margin-bottom: 12rem;
    font-size: 1.6em;
    width: 100%;
    height: 100vh;
    background: url(../images/header_mainV.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}

header h1{
    position: absolute;
    top: 4rem;
    right: 4rem;
    width: 2rem;
}
header nav{
    position: absolute;
    bottom: 4rem;
    left: 8rem;
    width: 10rem;
}

header nav ul.gnav{
    margin-bottom: 2rem;
}
header nav ul.gnav li + li{
    margin-top: 2rem;
    
}

header nav ul.subnav{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
header nav ul.subnav li{
    flex-basis: 20%;
}

header .scroll{
    position: absolute;
    right: 3.5rem;
    bottom: 4rem;
    width: 2rem;
}

header nav .gnav li a label{
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .nav-unshown,
    #nav-open,
    #nav-close{
        display: none;
    }
}
@media screen and (max-width: 767px) {
    header h1{
        position: absolute;
        top: 12rem;
        left: 2rem;
        width: 20rem;
    }
    header {
        background: url(../images/header_mainV_sp.jpg) no-repeat center center;
        background-size: cover;
    }
    header .scroll{
        left: calc(50% - 1.5rem);
        bottom: -3rem;
        width: 3rem;
    }
    
    #nav-drawer {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 5rem;
        background: #000;
        z-index: 1000;
    }

    /*チェックボックス等は非表示に*/
    .nav-unshown {
        display: none;
    }

    /*アイコンのスペース*/
    #nav-open,
    #nav-close{
        display: block;
        vertical-align: middle;
        position: absolute;
    }

    #nav-open{
        top: 0rem;
        right: 0rem;  
        background: #000;
        width: 14rem;
        height: 5rem;
        box-sizing: border-box;
        padding: 1.8rem;
        color: #646464;
    }
    #nav-open em{
        padding-left: 4rem;
        font-style: normal;
    }

    #nav-close{
        z-index: 10000; 
        opacity: 0;
        top: 0rem;
        right: 0rem;  
        background: #000;
        width: 14rem;
        height: 5rem;
        box-sizing: border-box;
        padding: 1.8rem;
        color: #646464;
    }
    
    #nav-close em{
        padding-left: 3.5rem;
        font-style: normal;
    }

    header nav {
        padding: 3rem 0;
        overflow: auto;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        width: 100%;
        height: 100%;
        transition: .3s ease-in-out;
        -webkit-transform: translateX(105%);
        transform: translateX(105%);
        opacity: 1;
        background: #000;
    }

    /*ハンバーガーアイコンをCSSだけで表現*/
    #nav-open span,
    #nav-open:after {
        position: absolute;
        height: 2px;
        /*線の太さ*/
        width: 25px;
        /*長さ*/
        border-radius: 3px;
        background: #646464;
        display: block;
        content: '';
        cursor: pointer;
    }
    #nav-open span{
        top: 2.25rem;
    }
    #nav-open:after {
        bottom: 1.5rem;
    }

    #nav-close span,
    #nav-close:before{
        position: absolute;
        height: 2px;
        width: 25px;
        border-radius: 3px;
        background: #646464;
        display: block;
        content: '';
        cursor: pointer;
        transform: rotate(45deg);
        top: 3rem;
    }
    #nav-close:before{
        transform: rotate(-45deg);
    }
    #nav-input:checked ~ #nav-close,
    #nav-input:checked ~ #nav-close:before{
        display: block;
        transition: .75s ease-in-out;
        opacity: 1;
        position: fixed;
    }

    #nav-input:checked ~ nav {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        opacity: 1;
    }
    
    header nav .gnav{
        padding: 12rem 12rem 4rem 10rem; 
    }
    
    header nav .gnav li a label:after{
        content: "+";
        display: inline-block;
        margin-left: 1.5em;
    }
    header nav .gnav li a label{
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header nav .subnav{
        padding: 0 14rem 0 10rem;
    }
    header .sns_menu{
        position: absolute;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        width: 18%;
        justify-content: space-between;
        top: 1.6rem;
        left: 2rem;

    }
    header .sns_menu li{
        flex-basis: 35%;
    }
    
    
}

/*--footer------------*/
footer {
    margin-bottom: 4rem;
}

footer p.cr {
    text-align: center;
    font-size: 1.4em;
    letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
    footer p.cr {
        text-align: left;
    }
}

/*--pagetop------------*/
#pagetop a {
    display: block;
    position: fixed;
    right: 3.5rem;
    bottom: -22rem;
    width: 2rem;
    z-index: 100;
}

@media screen and (max-width: 767px) {
    #pagetop a {
        width: 1.5rem;
        right: 2rem;
    }
}

/*--content------------*/
.cont_blk {
    font-size: 1.5em;
    margin-bottom: 12rem;
}

.cont_blk h2 {
    text-align: center;
    margin-bottom: 8rem;
}

.cont_blk h2 img {
    max-width: 255px;
}
@media screen and (max-width: 767px) {
    .cont_blk {
        margin-top: -5rem;
        padding-top: 5rem;
    }
    .cont_blk h2 {
        margin-bottom: 4rem;
    }
}

/*--About--*/
#about{
    
}
#about .mainimg{
    margin-bottom: 8rem;
    position: relative;
    display: block;
    margin: auto calc(50% - 49.5vw) 14rem;
}
#about .mainimg img{
    width: 60vw;
    z-index: 20;
}
#about .mainimg h3{
    display: block;
    position: absolute;
    top: calc(50% - 4vw);
    left: 53vw;
    font-size: 2vw;
    font-weight: normal;
    letter-spacing: 0.2em;
    line-height: 2;
}

#about .flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    letter-spacing: 0.1em;
}
#about .flex li{
    flex-basis: 46%;
    line-height: 2;
}
#about .flex li:nth-child(1){
    order: 1;
    padding: 3rem 0;
}
#about .flex li:nth-child(2){
    order: 2;
}
#about .flex li:nth-child(3){
    order: 4;
    padding: 5rem 0 0;
}
#about .flex li:nth-child(3) img{
    margin-top: 1rem;
    
}
#about .flex li:nth-child(4){
    order: 3;
    margin-top: calc(-100% + 44em);
}
#about .btns ul{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-around;
    margin: 4rem auto;
    max-width: 500px;
}
#about .btns ul li a{
    width: 10em;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 767px) {
    #about .mainimg{
        position: relative;
        display: block;
        margin: auto calc(50% - 49.5vw) 7rem;
    }
    #about .mainimg img{
        width: 80vw;
        z-index: 20;
    }
    #about .mainimg h3{
        font-size: 2rem;
        top: calc(50% - 4rem);
        line-height: 1.5;
    }
    #about .flex{
        flex-direction: column;
    }
    #about .flex li:nth-child(1){
        order: 2;
        
    }
    #about .flex li:nth-child(2){
        order: 1;
        margin: 0 calc(50% - 50vw);
        width: 90vw;
    }
    #about .flex li:nth-child(2) img{
        transform: translate(12%,0);
    }
    #about .flex li:nth-child(3){
        order: 4;
        padding: 4rem 0 0;
    }
    #about .flex li:nth-child(3) img{
        margin-top: 1rem;

    }
    #about .flex li:nth-child(4){
        order: 3;
        margin: 0 calc(50% - 50vw);
        width: 90vw;
    }
    #about .flex li:nth-child(4) img{

    }
    #about .btns ul{
        flex-direction: column;
    }
    #about .btns ul li{
        flex-basis: 100%;
    }
    #about .btns ul li + li{
        margin-top: 1rem;
    }
}

/*mordal*/

#about #mordal-profile{
    display: none;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
    max-width: 700px;
}
.mfp-close{
    width: 35px;
    height: 35px;
    top: 2rem;
    right: 2rem;
    background:url(../images/btn_mordal_close.svg) no-repeat center center;
    background-size: contain;
    cursor: pointer;
}
#mordal-profile{
    background: #000;
    border: 1px solid #646464;
    padding: 10rem 8rem 8rem 8rem;
}
#mordal-profile h2{
    margin-bottom: 6rem!important;
}
#mordal-profile dl dt{
    line-height: 2;
    position: relative;
    overflow: hidden;/*float解除*/
    text-align: justify;
    padding-top: 0.2rem;
}
#mordal-profile dl dt .space {
    float: right;/*画像の位置を右下にしたい場合はright*/
    height: 10rem;/*画像上の余白の高さ*/
}
#mordal-profile dl dt .img{
    width: 30%;
    margin-left: 2rem;
    float: right;/*画像の位置を右下にしたい場合はright*/
    clear: both;/*.spaceのfloat解除*/
    margin: 1rem 0 0 2rem;
}
#mordal-profile dl dd{ 
    margin-top: -2.75rem;
    letter-spacing: 0.1em;
}
#mordal-profile dl dd img{
    
}

#mordal-profile dl dd ul{
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
justify-content: space-between;
    align-items: center;
}
#mordal-profile dl dd ul li:first-of-type{
    flex-basis: 55%;
}
#mordal-profile dl dd ul li:first-of-type img{
    max-width: 250px;
}
#mordal-profile dl dd ul li:last-of-type{
    flex-basis: 40%;
}
#mordal-profile dl dd span{
    font-size: 1.6em;
    display: inline-block;
    margin-left: 0.5em;
}

@media screen and (max-width: 767px) {
    .mfp-container{
        padding-top: 6px;
    }
    #mordal-profile{
        padding: 8rem 2rem 2rem;
        position: relative;
    }
    #mordal-profile dl dd{
        margin-top: 1rem;
    }
    #mordal-profile dl dd span{
        margin-left: 0;
    }
    .mfp-close{
        width: 30px;
        height: 30px;
        position: absolute;
    }
    #mordal-profile dl dd ul li:first-of-type img{
        max-width: 130px;
    }
}

/*--Works--*/
#works{}
#works .btns{
    text-align: center;
    margin: 4rem 0;
}
#works p:first-of-type{
    text-align: center;
    margin-bottom: 4rem;
    line-height: 2;
    letter-spacing: 0.1em;
}
#works ul{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content:space-between;
    flex-wrap: wrap;
    /*border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;*/
}
#works ul li{
    flex-basis: 32%;
    padding: 2rem 0;
    text-align: center;
}
#works ul li dl{ 
    font-size: 0.8em;
    letter-spacing: .1em;
    position: relative;
}
#works ul li dl dt{
    margin-bottom: 1rem;
    
}
#works ul li:nth-of-type(1) dl:after,
#works ul li:nth-of-type(2) dl:after,
#works ul li:nth-of-type(3) dl:after{
    /*content: " ";
    display: block;
    width: 90%;
    height: 1px;
    background: #fff;
    left: 5%;
    bottom: -4rem;
    position: absolute;*/
} 

#works ul li:nth-of-type(1) dl:before,
#works ul li:nth-of-type(2) dl:before,
#works ul li:nth-of-type(4) dl:before,
#works ul li:nth-of-type(5) dl:before{
    /*content: " ";
    display: block;
    width: 1px;
    height: 100%;
    background: #fff;
    right: 0;
    top: 0;
    position: absolute;*/
}
#works ul li dl dt + dd{
    margin-bottom: 1rem;
}
#works ul li dl dt + dd +dd{
   font-size: 1.2em;
}
#works ul li dl dt + dd span{
    color: #646464;
    display: block;
    font-size: 2.5em;
    font-family:'CapsuulaRegular';
    font-weight:normal;
}

@media screen and (max-width: 767px) {
    #works ul{
        flex-direction: column;
    }
    #works ul li{
         padding: 2rem 0;
    }
    #works ul li dl:after,
    #works ul li dl:before{
        /*display: none!important;*/
    }
    #works ul li + li{
       /* border-top: 1px solid #fff;*/
    }
    #works ul li dl{
        text-align: center;
    }
}


/*--Insta--*/
#insta{
    
}
#insta #instagram ul{
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
#insta #instagram ul li{
    flex-basis: 32%;
    position: relative;
    padding-top:32%;
    margin-bottom: 2%;
}
#insta #instagram ul li a{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
}
#insta .btns{
    text-align: center;
    margin: 4rem 0;
}
#insta .btns a{
    font-family: 'CapsuulaRegular';
    font-weight: normal;
    font-size: 1.3em;
    line-height: 1em;
}
@media screen and (max-width: 767px) {
   
}