@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,700');


/* common 
---------------------------------------------------------------------- */
*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,body{
    height:100%;
}
 
body{
    color: #050505;
    background: #fff;
    font-family: 'Noto Sans', "游ゴシック", YuGothic, 'Yu Gothic', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
    -webkit-font-smoothing: antialiased;
    position: relative;
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

a{
    color: inherit;
    text-decoration: none;
	-webkit-transition: .5s;
	transition: .5s;
	opacity: 1;
}

p a:hover{
	opacity: .5;
}

#wrapper{
    overflow: hidden;
}

section{
    overflow: hidden;
}

h1,
h2{
    font-weight: normal;
}

ul{
    font-size: 0;
}

html.on-modal{
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    position: relative;
}


/* fadein
---------------------------------------------------------------------- */
.fadein{
    transform: translateY(10%);
    -webkit-transform: translateY(10%);
    -ms-transform: translateY(10%);
    transition: 0.8s ease;
    -webkit-transition: 0.8s ease;
    -ms-transition: 0.8s ease;
    opacity: 0;
}

.fadein.scrollin{
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    opacity: 1;
}


/* wrapper 
---------------------------------------------------------------------- */
#wrapper{
     width: 100%;
     position: relative;
     height:auto !important;
     height: 100%;
     min-height: 100%;
}


/* header 
---------------------------------------------------------------------- */
header{
    background: #000;
    position: fixed;
    text-align: center;
    width: 100%;
    height: 40px;
    z-index: 998;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: .5s;
    -webkit-transition: .5s;
}

#hlogo{
    color: #fff;
    font-size: 13px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 999;
}

#hlogo img {
    vertical-align: middle;
    margin-right: 10px;
}

@-webkit-keyframes line-scale-pulse-out {
	0%, 100% {
		-webkit-transform: scaley(1);
		transform: scaley(1)
	}
	50% {
		-webkit-transform: scaley(.4);
		transform: scaley(.4)
	}
}
@keyframes line-scale-pulse-out {
	0%, 100% {
		-webkit-transform: scaley(1);
		transform: scaley(1)
	}
	50% {
		-webkit-transform: scaley(.4);
		transform: scaley(.4)
	}
}

#audio{
	position: absolute;
	top: 10px;
	right: 10px;
	width: 26px;
	height: 20px;
    z-index: 999;
    cursor: pointer;
}

.btn-play .loader-inner{
    margin-top: 5px;
	width: 26px;
    height: 12px;
    overflow: hidden;
}

.btn-play .loader-inner>div {
	background-color: #fff;
	width: 3px;
	border-radius: 1px;
	display: inline-block;
    transition: 0.5s;
}

.btn-play.pause .loader-inner>div {
    height: 5px;
    transition: .5s linear -.4s;
}

.btn-play.playing .loader-inner>div {
	background-color: #fff;
	width: 3px;
	height: 30px;
	border-radius: 1px;
	display: inline-block;
	-webkit-animation: line-scale-pulse-out .8s -.6s infinite cubic-bezier(.85, .25, .37, .85);
	animation: line-scale-pulse-out .8s -.6s infinite cubic-bezier(.85, .25, .37, .85);
}

.btn-play.playing .loader-inner>div:nth-child(1){
    height: 26px;
	-webkit-animation-delay: -.6s!important;
	animation-delay: -.6s!important
}

.btn-play.playing .loader-inner>div:nth-child(2){
	-webkit-animation-delay: -.4s!important;
	animation-delay: -.4s!important
}

.btn-play.playing .loader-inner>div:nth-child(3){
    height: 28px;
	-webkit-animation-delay: -.2s!important;
	animation-delay: -.2s!important
}

.btn-play.playing .loader-inner>div:nth-child(4){
	-webkit-animation-delay: -.1s!important;
	animation-delay: -.1s!important
}


/* nav
---------------------------------------------------------------------- */
#globalNav ul{
    margin: auto;
    max-width: 500px;
    padding: 0 40px;
}

#globalNav li{
    color: #fff;
    display: inline-block;
    font-size: 14px;
    line-height: 40px;
    width: 33.33%;
    text-align: center;
}

#globalNav li a{
    display: block;
}

#globalNav li a span{
    position: relative;
}

#globalNav li a span:after{
    content: " ";
    width: 0;
    height: 1px;
    background-color: #fff;
    position: absolute;
    display: block;
    left: 0;
    bottom: -3px;
    transition: width 0.3s ease-out;
    transform: translateX(0);
}

#globalNav li a:hover span:after{
    width: 100%;
}


/* nav
---------------------------------------------------------------------- */
.navMenu{
    display: none;
    position: absolute;
    top: 13px;
    right: 10px;
    z-index: 999;
}

.navMenu a{
    display: block;
    width: 20px;
    height: 16px;
    position: relative;
}

.navMenu a:before,
.navMenu a:after,
.navMenu a span{
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    width: 20px;
    background: #fff;
    transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
}

.navMenu a:before{
    top: 0;
}

.navMenu a span{
    top: 7px;
}

.navMenu a:after{
    bottom: 0;
}

#globalNav.open .navMenu a:before,
#globalNav.open .navMenu a:after{
    top: 7px;
    left: 0;
    width: 20px;
}

#globalNav.open .navMenu a span{
    opacity: 0;
}

#globalNav.open .navMenu a:before{
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

#globalNav.open .navMenu a:after{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}


/* title 
---------------------------------------------------------------------- */
#title{
    position: relative;
}

.titleWrap{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

#title h1{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    white-space: nowrap;
}


/* scrollArrow 
---------------------------------------------------------------------- */
.scrollArrow{
    background: url(../img/bg_scroll.png) center 20px no-repeat;
    background-size: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 50px;
	width: 60px;
	height: 60px;
    margin: auto;
	z-index: 2;
}

.scrollArrow span::before {
	position: absolute;
	top: 22px;
	left: 50%;
	content: ' ';
	width: 4px;
	height: 4px;
	margin-left: -2px;
	background-color: #fff;
	border-radius: 100%;
	-webkit-animation: sdb 2s infinite;
	animation: sdb 2s infinite;
	box-sizing: border-box;
}

@-webkit-keyframes sdb {
	0% {
		-webkit-transform: translate(0, 0);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		-webkit-transform: translate(0, 20px);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@keyframes sdb {
	0% {
		transform: translate(0, 0);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		transform: translate(0, 20px);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}


/* news
---------------------------------------------------------------------- */
#news{
    background: #000;
    color: #fff;
    width: 100%;
    font-size: 0;
    padding: 15px 0;
}

.newsWrap{
    max-width: 960px;
    margin: auto;
}

#news h2{
    float: left;
    font-size: 15px;
    font-weight: 700;
    width: 10%;
}

#news dl{
    color: #fff;
    float: left;
    font-size: 12px;
    width: 80%;
    overflow: hidden;
    margin-bottom: -2px;
}

#news dt{
    float: left;
}

#news dd{
    padding-left: 20px;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#news .more{
    float: right;
    font-size: 13px;
    text-align: right;
    width: 10%;
}

#news .more:before{
    content: ">";
    padding-right: 5px;
}


/* about 
---------------------------------------------------------------------- */
#about{
    padding: 80px 3.2% 240px;
}

#about h2{
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    padding: 100px 0;
}

.aboutWrap{
    max-width: 940px;
    margin: auto;
    overflow: hidden;
}

.aboutImg{
    float: left;
    width: 40%;
    padding-right: 5%;
}

.aboutImg img{
    width: 100%;
    height: auto;
}

.aboutText{
    padding-left: 45%;
    position: relative;
}

.aboutText p{
    font-size: 13px;
    line-height: 1.8em;
    margin-bottom: 1em;
}

.aboutText .name{
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.aboutText .sns + p{
    padding: 20px 0;
}

.aboutText .subTitle p{
    font-size: 14px;
    font-weight: 700;
}

p.mailto{
    font-size: 14px;
}

.mailto img{
    width: auto;
    height: 18px;
    vertical-align: middle;
    padding-bottom: 4px;
    padding-left: 2px;
}

.aboutText .sns{
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
}

.aboutText .sns li img{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: 0.2s linear;
    width: auto;
    height: 18px;
}

.aboutText .sns li a:hover img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}


/* history
---------------------------------------------------------------------- */
#history{
    width: 60%;
    margin: 100px auto 0;
    border: 2px solid #050505;
    text-align: center;
}

#history a{
    padding: 15px;
    display: block;
}

#history a:hover{
    background: #ddd;
}


/* shop
---------------------------------------------------------------------- */
#shop{
    text-align: center;
    position: relative;
    background: #ddd;
    padding-bottom: 40px;
}

#shop a{
    display: block;
    width: 100%;
    font-weight: 700;
    font-size: 30px;
    padding: 80px 0;
}

#shop a:hover{
    background: #e6ff3c;
}

#shop h2 a img{
    vertical-align: middle;
    padding-bottom: 4px;
}


/* sns
---------------------------------------------------------------------- */
.sns li{
    display: inline-block;
    line-height: 0;
}

.sns li + li{
    margin-left: 15px;
}


/* works
---------------------------------------------------------------------- */
.worksWrap li{
    display: inline-block;
    width: 33.33%;
    height: 100%;
    position: relative;
    transition: .5s;
    -webkit-transition: .5s;
}

.worksWrap li.nallow{
    width: 25%;
}

.worksWrap li.wide{
    width: 50%;
}

.worksWrap li a{
    display: block;
    color: #fff;
    font-size: 18px;
    white-space: nowrap;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.worksWrap li h2{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.worksWrap li a span{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.worksWrap li a span:after{
    content: " ";
    width: 0;
    height: 1px;
    background-color: #fff;
    position: absolute;
    display: block;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease-out;
    transform: translateX(0);
}

.worksWrap li a:hover span:after{
    width: 100%;
}

.worksWrap li img{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.worksWrap li.color0.active a{
    background: rgba(112, 166, 195, 0.6);
}

.worksWrap li.color1.active a{
    background: rgba(229, 148, 148, 0.6);
}

.worksWrap li.color2.active a{
    background: rgba(82, 182, 151, 0.6);
}


/* footer
---------------------------------------------------------------------- */
footer{
    background: #000;
    text-align: center;
    padding: 15px 3.2%;
    height: 40px;
    width: 100%;
}

.fWrap li{
    color: #fff;
    display: inline-block;
    font-size: 13px;
}

.fWrap li + li{
    border-left: 1px solid #fff;
    padding-left: 10px;
    margin-left: 10px;
}

.fWrap li a{
    position: relative;
}

.fWrap li a:after{
    content: " ";
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease-out;
    position: absolute;
    display: block;
    left: 0;
    bottom: -3px;
    transform: translateX(0);
}

.fWrap li a:hover:after{
    width: 100%;
}


/* page-top
---------------------------------------------------------------------- */
#page-top {
    position: fixed;
    height: 0;
    width: 45px;
    padding-top: 45px;
    bottom: 70px;
    right: 20px;
    overflow: hidden;
}

.arrow::before,
.arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: " ";
    vertical-align: middle;
}

.arrow::before{
    box-sizing: border-box;
    width: 45px;
    height: 45px;
    border: 1px solid #999;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.arrow::after{
    top: 9px;
    left: 14px;
    width: 18px;
    height: 18px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/* contents
---------------------------------------------------------------------- */
#contents{
    max-width: 960px;
    padding: 40px 0 120px;
    margin: 0 auto;
    background: #fff;
}

.contWrap{
    overflow: hidden;
}


/* contents works
---------------------------------------------------------------------- */
#contents.works > h1{
    font-size: 24px;
    padding: 40px 0;
    text-align: center;
}

.contWrap .grid-sizer{
    width: 33.33%;
}

.contWrap .grid-item{
    float: left;
    height: auto;
    width: 33.33%;
    padding: 5px;
}

.inner{
    border: 1px solid #ddd;
    position: relative;
    line-height: 0;
    width: 100%;
    overflow: hidden;
}

.inner:before{
    content: " ";
    display: block;
    padding-top: 100%;
}

.contWrap .grid-item .inner > a{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.contWrap .gridTitle{
    color: #fff;
    background: rgba(0,0,0,0.8);
    position: absolute;
    width: 100%;
    height: 100%;
    margin: auto;
    overflow: hidden;
    z-index: 100;
    transition: 0.6s;
    -webkit-transition: .6s;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0;
}

.contWrap .grid-item .inner > a:hover .gridTitle{
    opacity: 1;
}

.contWrap .gridTitle p{
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
    z-index: 100;
    text-align: center;
}

.contWrap .gridTitle p span{
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.contWrap .gridTitle p span:after{
    content: " ";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 80%;
    background: #fff;
    height: 1px;
}

.contWrap .gridImg{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contWrap .gridImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#infscr-loading{
    display: none !important;
}


/* contents works single
---------------------------------------------------------------------- */
#contents.works.single .contWrap{
    margin: 0 40px;
    overflow: visible;
}

.worksImg{
    text-align: center;
    padding: 80px 0 20px;
}

.worksImg img{
    max-width: 100%;
    height: auto;
    max-height: 700px;
}

#contents.works.single h1{
    font-size: 13px;
    padding: 20px 0;
}

.worksText{
    font-size: 14px;
    line-height: 1.5em;
    padding: 20px 0;
}

.worksText p{
    font-size: 12px;
    margin-bottom: 20px;
}

.worksText p:last-child{
    margin-bottom: 0;
}

#contents.works.single .prev_post,
#contents.works.single .next_post{
    position: fixed;
    height: 0;
    width: 29px;
    padding-top: 57px;
    overflow: hidden;
}

#contents.works.single .prev_post{
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#contents.works.single .next_post{
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#contents.works.single .prev_post a:after,
#contents.works.single .next_post a:after{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: " ";
    vertical-align: middle;
    width: 40px;
    height: 40px;
}

#contents.works.single .prev_post a:after{
    left: 6px;
    border-left: 1px solid #999;
    border-bottom: 1px solid #999;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#contents.works.single .next_post a:after{
    left: -16px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* contents news
---------------------------------------------------------------------- */
#contents.news > h1{
    font-size: 24px;
    font-weight: 700;
    padding: 70px 0;
    text-transform: uppercase;
    text-align: center;
}

.main{
    float: right;
    width: 70%;
}

.main article{
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.main time{
    font-size: 11px;
}

.main h2{
    font-size: 15px;
    line-height: 1.5em;
    padding: 20px 0;
}

.main .entry{
}

.main .entry p{
    font-size: 11px;
    line-height: 2em;
    letter-spacing: .1em;
    margin-bottom: 30px;
}

.main .imgWrap{
    width: 80%;
    height: auto;
    margin: 30px auto;
}

.main .imgWrap img{
    width: 100%;
    height: 100%;
}

.main .movieWrap{
    margin: 30px 0;
}

.side aside{
    float: left;
    width: 30%;
    padding: 5px 0;
}

.side aside h2{
    font-size: 12px;
    padding-bottom: 10px;
}

.side aside h2 span{
    position: relative;
}

.side aside h2 span:after{
    content: " ";
    width: 70px;
    height: 2px;
    background-color: #050505;
    position: absolute;
    display: block;
    left: 0;
    bottom: -3px;
    transition: width 0.3s ease-out;
    transform: translateX(0);
}

.side aside ul{
    padding-bottom: 50px;
}

.side aside li{
    font-size: 12px;
    padding: 10px 0;
}

.side aside li a{
    position: relative;
}

.side aside li a:after{
    content: " ";
    width: 0;
    height: 1px;
    background-color: #050505;
    position: absolute;
    display: block;
    left: 0;
    bottom: -3px;
    transition: width 0.3s ease-out;
    transform: translateX(0);
}

.side aside li a:hover:after{
    width: 100%;
}


/* pager
---------------------------------------------------------------------- */
.pager{
    font-size: 12px;
    padding: 40px 0;
    text-align: center;
}

.pager span{
    font-weight: 700;
}

.pager span,
.pager a{
    margin: 0 10px;
}

.pager .prev,
.pager .next{
    margin: 0 15px;
}


/* contents history
---------------------------------------------------------------------- */
#contents.history{
    max-width: 880px;
}

#contents.history > h1{
    font-size: 24px;
    padding: 40px 0;
    text-align: center;
}

#contents.history h2{
    font-size: 18px;
    font-weight: 700;
	position: relative;
	padding: 15px 0;
}

#contents.history h2 span{
	position: relative;
	z-index: 2;
	display: inline-block;
	padding-right: 30px;
	background-color: #fff;
}

#contents.history h2:before{
	position: absolute;
	top: 50%;
	z-index: 1;
	content: " ";
	display: block;
	width: 100%;
	height: 2px;
	background-color: #050505;
}

#contents.history .contWrap > ul{
    overflow: hidden;
    padding: 15px 0;
}

/*
#contents.history li.historyDate{
    float: left;
    width: 80px;
    font-size: 11px;
}
*/

#contents.history li.historyCat{
    float: left;
    width: 170px;
}

#contents.history li.historyCat li{
    display: inline-block;
    background: #999;
    color: #fff;
    font-size: 11px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 3px 7px;
}

#contents.history li.historyCat li + li{
    margin-left: 5px;
}

#contents.history li.historyCont{
    font-size: 12px;
    padding-left: 170px;
    line-height: 1.5em;
}


/* movieWrap
---------------------------------------------------------------------- */
.movieWrap{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    z-index: 1;
}

.movieWrap iframe{
    position: absolute;
    top: 0 ;
    left: 0 ;
    height: 100% ;
    width: 100% ;
}


/* loading
---------------------------------------------------------------------- */
#loader-bg{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #fff;
    z-index: 1000;
}

#loading{
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}

#loading img{
    margin-bottom: 20px;
}

.loader{
    position: absolute;
    left: 50%;
    top: 80%;
    -webkit-transform: translateY(-80%) translateX(-50%);
    transform: translateY(-80%) translateX(-50%);
}

.loader span{
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 2px solid #999;
    border-radius: 50%;
    animation: spin 0.75s infinite linear;
}

.loader span::before{
    left: -2px;
    top: -2px;
    display: none;
    position: absolute;
    content: ' ';
    width: inherit;
    height: inherit;
    border: inherit;
    border-radius: inherit;
    animation: spin 1.5s infinite ease;
}

.loader span,
.loader span::before {
    display: inline-block;
    border-color: transparent;
    border-top-color: #999;
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* commingSoon
---------------------------------------------------------------------- */
.commingSoon{
    background: #000;
    width: 100%;
    padding: 200px 0;
    text-align: center;
    position: relative;
}

.commingSoon p{
    color: #fff;
    font-size: 16px;
    padding: 100px 0;
}

.blinking{
	-webkit-animation:blink 0.5s ease-in-out infinite alternate;
    -moz-animation:blink 0.5s ease-in-out infinite alternate;
    animation:blink 0.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}



@media screen and (max-width: 980px){
    #contents.news{
        padding: 40px 20px 120px;
    }
}

@media screen and (max-width: 900px){
    #contents.history{
        padding: 40px 20px 120px;
    }
}

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

#audio{
    display: none;
}

#title h1 img,
#loading img{
    width: 100%;
}


/* #globalNav
---------------------------------------------------------------------- */
.navMenu{
    display: block;
}

#globalNav li{
    display: block;
    font-size: 14px;
    width: auto;
    padding: 20px 0;
}

#globalNav .globalNavCont{
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    left: 0;
    right: 0;
    top: -100%;
    bottom: 100%;
    z-index: 100;
    transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
}

#globalNav.open .globalNavCont{
    opacity: 1;
    top: 0%;
    bottom: 0%;
}

.globalNavCont ul{
    display: none;
}

#globalNav.open .globalNavCont ul{
    display: block;
    position: absolute;
    margin: auto;
    height: 250px;
    left: 0;
    right: 0;
    top: 50px;
    bottom: 50px;
}


/* news
---------------------------------------------------------------------- */
.scrollArrow{
    bottom: 60px;
}

#news{
    padding: 10px;
}

#news h2{
    width: 50%;
}

#news dl{
    float: none;
    font-size: 11px;
    width: 100%;
    padding-top: 10px;
    margin: 0;
}

#news dt{
    text-align: left;
    padding-bottom: 5px;
}

#news dd{
    padding-left: 10px;
}

#news .more{
    width: 50%;
}


/* about
---------------------------------------------------------------------- */
#about{
    padding: 80px 20px;
}

.aboutWrap{
    padding: 40px 0;
}

.aboutImg{
    float: none;
    width: 60%;
    margin: auto;
    padding: 0 0 20px;
}

#about h2{
    border: none;
    text-align: center;
    padding: 0;
}

.aboutText{
    padding: 0;
}

.aboutText .name{
    text-align: center;
}

.aboutText .description p{
    font-size: 13px;
}

.aboutText .sns{
    position: relative;
    padding: 20px 0;
    text-align: center;
}

#history{
    margin: 0 auto;
}


/* works
---------------------------------------------------------------------- */
.worksWrap li{
    display: block;
    width: auto;
    height: 33.33%;
    overflow: hidden;
}

.worksWrap li.nallow{
    width: auto;
}

.worksWrap li.wide{
    width: auto;
}

.worksWrap li img{
    height: 200%;
    
}


/* contents.news
---------------------------------------------------------------------- */
#contents.news{
    padding: 40px 0 120px;
}

#contents.news > h1{
    padding: 40px 0;
}

.main{
    float: none;
    width: auto;
    padding: 0 20px;
}

.pager{
    padding-bottom: 40px;
}

.side aside{
    float: none;
    width: auto;
    padding: 0;
    text-align: center;
    border-bottom: 1px solid #050505;
}

.side aside h2{
    border-top: 1px solid #050505;
    font-size: 18px;
    padding: 15px 0;
	position: relative;
}

.side aside h2:after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	content: " ";
	vertical-align: middle;
	display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #050505;
    border-right: 2px solid #050505;
    transform: rotate(45deg);
}

.side aside h2:after{
    -webkit-transition: all .15s linear;
    transition: all .15s linear;
    transform: rotate(135deg);
}

.side aside h2.active:after {
   	-webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.side aside h2 span:after{
    display: none;
}

.side aside ul{
    padding-bottom: 0;
}

.side aside li{
    border-top: 1px solid #c9c9c9;
    font-size: 15px;
    padding: 0;
}

.side aside li a{
    background: #f9f9f9;
    display: block;
    padding: 15px 0;
    width: 100%;
}

.side aside li a:after{
    display: none;
}


/* contents history
---------------------------------------------------------------------- */
#contents.history li.historyCont{
    padding: 30px 0 0;
}


/* grid
---------------------------------------------------------------------- */
.contWrap .grid-sizer{
    width: 50%;
}

.contWrap .grid-item{
    width: 50%;
}


/* works.single
---------------------------------------------------------------------- */
.worksImg{
    padding: 40px 0 20px;
}

#contents.works.single .prev_post a:after,
#contents.works.single .next_post a:after{
    width: 30px;
    height: 30px;
}

#contents.works.single .prev_post a:after{
    left: 3px;
}

#contents.works.single .next_post a:after{
    left: -4px;
}


/* footer
---------------------------------------------------------------------- */
.fWrap li{
    font-size: 12px;
}

}