@charset "utf-8";

/*
Theme Name: RK Theme
Theme URI: 
Author: NM
Author URI: http://wordpress.org/
Description: 
Version: 0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/


/* CSS RESET */

html,body,div,.padder,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,acronym,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,img,object,embed{display:block}
address,caption,cite,code,dfn,th,var{font-style:normal;font-weight:normal;}
nav ul,nav li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;width:auto}
q:before,q:after{content:"";}
abbr,acronym {font-variant:normal;}
sup {vertical-align:text-top;}
sub {vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
legend{color:#000;}
a,.no-touch a:hover,.no-touch a:visited:hover,a:active,.no-touch a:active:hover{outline:none}
/* a,.no-touch a:hover,.no-touch a:visited:hover,a:visited{text-decoration: none} */
a {outline: none;}

::selection { background: #000; color: #fff; text-shadow: none; }
::-moz-selection { background: #000; color: #fff; text-shadow: none; }
::-webkit-selection { background: #000; color: #fff; text-shadow: none; }



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


img {
  color: transparent;
  font-size: 0;
  border:none;
  outline:none;
  /* max-width: 100%; */
/*
  For IE.
  http://css-tricks.com/ie-fix-bicubic-scaling-for-images
*/
  -ms-interpolation-mode: bicubic;
}



.opacity img {
  opacity: 0;
  filter: alpha(opacity=0);        /* ie lt 8 */
  -ms-filter: "alpha(opacity=0)";  /* ie 8 */
  -moz-opacity: 0;                 /* FF lt 1.5, Netscape */
  -khtml-opacity: 0;              /* Safari 1.x */
}




/* __Basic
---------------------------------------------------------------- */


* { -webkit-text-size-adjust:100%; }


html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: #eaeeee;
}


body {
	font-family: 'Adobe Garamond W01', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 62.5%; /* Base 10px */
	font-weight: 400;
	color: #000;
	line-height: 1.4em;
	word-wrap: break-word;
    overflow-wrap: break-word;
    min-height: 600px;
}

body {
	-webkit-transition: background-color 1s ease-in-out !important;  
	-moz-transition: background-color 1s ease-in-out !important; 
	-o-transition: background-color 1s ease-in-out !important;
	transition: background-color 1s ease-in-out !important;
	-webkit-touch-callout:none;
	-webkit-tap-highlight-color: #ddd;
	-webkit-font-smoothing:antialiased;
	-moz-font-smoothing:antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
	font-smooth:always;
	zoom: reset;
}





/*  __H
---------------------------------------------------------------- */


h1 { 
	font-size: 28px;
	font-weight: 400;
	line-height: 1.4em;
}

.archive-main h1.title {
	font-size: 14px;
}

.single-main h1.title {
	font-size: 18px;
}


h2 {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.4em;
}

h3 {
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4em;
}

h4 {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6em;
}



/*  __P
---------------------------------------------------------------- */

p,
th,
td {
	font-size: 14px;
	line-height: 1.6em;
}

p.year,
p.category,
p.cycle-caption,
p.spec,
p.date,
p.day {
	color: #777777;
}

.list-title p {
	font-weight: bold;
	margin-bottom: 0.3em;
	font-size: 16px;
}


hr {
	background-color: #777777;
	border: 0;
	height: 1px;
	margin: 2em 0;
}

/* __A
---------------------------------------------------------------- */

a:link { text-decoration: none; color: #000; }
a:active { text-decoration: none; color: #000; }
a:visited { text-decoration: none; color: #000; }
a:hover { text-decoration: none; color: #777777; }
a img { border: none; }


.sub-nav li a,
.news-item a,
.page-inner a { 
	text-decoration: none;
	color: #777777;
	}
	
.sub-nav li a:hover,
.news-item a:hover,
.page-inner a:hover { 
	text-decoration: none;
	color: #000;
	}


.page-inner a .item-inner { 
	text-decoration: none;
	color: #000;
	}
	
.page-inner a .item-inner:hover { 
	text-decoration: none;
	color: #777777
	}


/*  __List
---------------------------------------------------------------- */


ul, ol {}
ul { list-style: none outside; }
ol { list-style: decimal; }
ol, ul.square, ul.circle, ul.disc { margin-left: 1em; }
ul.square { list-style: square outside; }
ul.circle { list-style: circle outside; }
ul.disc { list-style: disc outside; }


/*  __img
---------------------------------------------------------------- */

img {
   max-width: 100%;
   height: auto;
}

img.articles-img {
   max-width: 75%;
}


img.smImg,
img.soImg {
   max-width: none;
}


.works-single-contents img {
   max-height: 100%;
}


/* __Wrap
---------------------------------------------------------------- */


.wrap {
	margin: 0 auto;
	width: 100%;
    height: 100%;
    }


body > .wrap {
	height:auto;
	min-height: 100%;
	}


.main {
	margin: 0 auto;
	width: 100%;
    height: 100%;
    }




/* ----------------------------------------------------------------
 __Home
---------------------------------------------------------------- */

.home-inner {
  position: absolute;
  padding: 0 !important;
  width: 100%;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  z-index: 1;
  top:0;
  left:0;
}


/* __Cycle Slider
---------------------------------------------------------------- */



/* __Home
-------------------------------- */

.home .cycle-slideshow {
	position: absolute;
	left: 18px;
	top: 18px;
	bottom: 18px;
	right: 18px;
	height: auto;
	width: auto;
}

.home .rsContent {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	float: right;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

.home img.cycleimg {
	max-width: none;
	margin-left: auto;
	max-height: 100%;
}




/* __Publications-Single
-------------------------------- */

.item-image-set .cycle-slideshow {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	cursor: pointer;
	}


.rsContent {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

img.cycleimg {
	max-width: 100%;
	max-height: none;
}


p.cycle-caption {
	text-align: right;
	margin-top: 0.5em;
	position: absolute;
	bottom: -2em;
	right: 0;
	z-index: 1000;
}





/* __Header
---------------------------------------------------------------- */


.header {
	position: fixed;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
	z-index: 20000;
	width: 330px;
	height: 100%;
	background: #eaeeee;
}


.header-inner {
	position: absolute;
	top: 50px;
	left: 50px;
	padding: 0;
	margin: 0;
}


/* __logo
---------------------------------------------------------------- */

.logo h1 { 
	font-size: 15px;
	font-weight: 400;
	line-height: 1em;
	z-index: 101;
}


.logo {
    text-align: left;
    z-index: 101;
    position: relative;
    }
    
    
.logo h1 a {
    background-image: url('img/rk_logo.svg');
    background-size: 128px 15px;
    background-repeat: no-repeat;
    background-position: right 50%;
    width: 128px;
    height: 15px;
    text-indent: -9999px;
    display: inline-block;
    z-index: 102;
    }
   
.logo h1 a,
.logo h1 a:hover {
    border: none;
    }
    

.logo h1 a:hover svg {
    fill: #777777;
    }

.no-svg .logo h1 a {
	background-image: url('img/rk_logo.png');
	}
	





/* __Nav
---------------------------------------------------------------- */

.menu-icon,
.mobile-nav,
.fm-button {
	display: none;
    }

.pc-nav {
	display: block;
    }

.nav {
	position: relative;
    margin-top: 40px;
    }
    
.nav-inner-01 {
	float: left;
	margin-right: 40px;
    }
    
.nav-inner-02 {
	float: left;
    }

.sub-nav {
}

    
.main-nav li,
.sub-nav li {
	font-size: 14px;
	padding: 4px 0;
	position: relative;
}


.main-nav li.jpt,
.sub-nav li.jpt {
	font-size: 12px;
}


.sub-nav li.video-works {
	margin-top: 1.6em;
}

.sub-nav li.original-last {
	margin-bottom: 1.6em;
}


/* __lang-nav
------------------------------- */

.lang-nav {
    margin-top: 40px;
    }
    
.lang-nav li {
	display: inline-block;
}

.lang-nav li:nth-of-type(2n):before {
	content: " / " ;
	font-size: 14px;
	padding: 3px;
}


.lang-nav  li a {
	font-size: 13px;
	padding: 3px 0;
}




.main-nav li.current-menu-item:before,
.sub-nav li.current-menu-item:before,
.page-news .sub-nav li.m-news:before,
.category .sub-nav li.current-cat:before,
.single-works li.m-works:before,
.post-type-archive-installation_views li.m-works:before,
.post-type-archive-video_works li.m-works:before,
.single-publications li.m-publications:before {
   content: '';
	display: inline-block;
	width: 4px;
	height: 4px;
	-moz-border-radius: 2.0px;
	-webkit-border-radius: 2.0px;
	border-radius: 2.0px;
	background-color: #000;
	position: absolute;
	left: -1.0em;
	margin: 5px;
	line-height: 1.0em;
}

.sub-nav li.current-menu-item:before,
.page-news .sub-nav li.m-news:before,
.category .sub-nav li.current-cat:before  {
	background-color: #777777;
}



/* __Page Nav
---------------------------------------------------------------- */

.page-numbers-nav {
	position: relative;
	display: block;
	margin-top: 5em;
}


ul.page-numbers li {
	font-size: 14px;
	letter-spacing: 0;
	text-align: left;
	display: inline-block;
	padding-right: 0.5em;
}

ul.page-numbers li span.current {
	color: #000;
}



/* __Footer
---------------------------------------------------------------- */

.footer {
	position: fixed;
	bottom: 18px;
	left: 50px;
	z-index: 30000;
}


.copy {
	font-size: 13px;
	float: left;
	margin-right: 30px;
}


.back-top {
	font-size: 13px;
	float: left;
	cursor: pointer;
}







/* ----------------------------------------------------------------
__Page
---------------------------------------------------------------- */

.page-main {
	width: auto;
	height: auto;
	margin: 18px 18px 0 18px;
	padding-bottom: 18px;
}

.page-inner {
	float: right;
}







/* __News
---------------------------------------------------------------- */

.news-item {
}

.news-text,
.news-img {
	margin-top: 1em;
}

img.post-img {
	max-height: 257px;
}


hr.section-line {
	background-color: #999999;
	display: inline-block;
	border: 0;
	height: 1px;
	width: 15px;
	margin: 3em 0 2em 0;
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transform: translateY(-50%) translateX(0%) rotate(0deg);
	-moz-transform: translateY(-50%) translateX(0%) rotate(0deg);
	transform: translateY(-50%) translateX(0%) rotate(0deg);
	text-align: center;
}

hr.section-line:last-of-type {
	height: 0;
	margin: 0;
}




/* __Biography
---------------------------------------------------------------- */

.list-set {
	margin-bottom: 4em;
	padding-top: 18px;
}

.list-set:first-of-type {
	padding-top: 0;
}

.list-set:last-of-type {
	margin-bottom: 0;
}


.list-text {
	display: table;
	border-collapse: collapse;
}

.cell-box {
	display: table-row;
}

.biography-contents .cell-01 {
	width: 60px;
	display: table-cell;
	padding: 0 5px 0 0;
}

.biography-contents .cell-02 {
	display: table-cell;
	padding: 0 0 0 0;
}

.list-text p {
	line-height: 1.8em;
}




/* __Works
---------------------------------------------------------------- */



.works-contents .item,
.video_works-contents .item,
.installation_views-contents .item {
	margin-bottom: 5em;
}

.works-contents .item:last-of-type,
.video_works-contents .item:last-of-type,
.installation_views-contents .item:last-of-type {
	margin-bottom: 0;
}


.works-contents .item-text,
.video_works-contents .item-text,
.installation_views-contents .item-text {
	margin-top: 1em;
}



.project-contents {
	margin-top: 8em;
	padding-top: 12em;
	border-top: 1px solid #999999;
}


.video-contents {
	margin-top: 8em;
	margin-bottom: 5em;
	padding-top: 12em;
	border-top: 1px solid #999999;
}

.installation-contents {
	margin: 0;
}





/* __Works - Video
---------------------------------------------------------------- */

.item-movie-wrap {
    position: relative;
    max-width: 100%;
    padding-top: 56.25%;
}
.item-movie-wrap iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}







/* __Publications Archive / Articles Archive
---------------------------------------------------------------- */

.archive-inner .publications-contents,
.archive-inner .articles-contents {
	font-size: 0;
}

.archive-inner .publications-contents .item,
.archive-inner .articles-contents .item {
	font-size: 10px;
	display: inline-table;
	width: 31%;
	margin-bottom: 7%;
	margin-right: 3.5%;
}

.archive-inner .publications-contents .item:nth-of-type(3n),
.archive-inner .articles-contents .item:nth-of-type(3n) {
	margin-right: 0;
}

.archive-inner .publications-contents .item a,
.archive-inner .articles-contents .item a {
	position: relative;
	display: block;
}


.archive-inner .publications-contents .item-text,
.archive-inner .articles-contents .item-text {
	margin-top: 1em;
}





/* ----------------------------------------------------------------
__Single
---------------------------------------------------------------- */


/* __Works single
---------------------------------------------------------------- */

.works-single-contents .item-text {
	display: none;
	margin-bottom: 18px;
}


.works-single-contents .item-inner {
	margin-bottom: 18px;
}

.works-single-contents .item-inner:last-of-type {
	margin-bottom: 0;
}


.works-single-contents .type-01 {
	float: left;
	width: 100%;
}

.works-single-contents .type-02 {
	float: left;
	width: 49%;
}

.works-single-contents .type-02-left {
	margin-right: 2%;
}




/* __Publications single
---------------------------------------------------------------- */

.item-image-set {
	width: 100%;
	position: relative;
}

.publications-single-contents .item-text {
	margin-top: 6em;
}

.description {
	margin-top: 3em;
}

.spec-set {
	margin-top: 6em;
	margin-bottom: 5em;
}


.publications-single-contents .cell-01 {
	width: 120px;
	display: table-cell;
	padding: 5px 5px 5px 0;
}

.publications-single-contents .cell-02 {
	display: table-cell;
	padding: 5px 0 5px 0;
}











/* ---------------------------------------------------------------------

__Media Query

--------------------------------------------------------------------- */




@media only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2) {
}




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




/* iPad Pro 12.9inch Landscape (1366) */
@media only screen and (max-width: 1365px) {


/* __Page Inner
---------------------------------------------------------------- */

.page-inner {
	width: 70%;
}

}






/* (1080) */
@media only screen and (max-width: 1080px) {

}








/* iPad 9.7inch Landscape / iPad Pro 12.9inch Portrait (1024) */
@media only screen and (max-width: 1023px) {



body {
    min-height: 0;
}



/* ----------------------------------------------------------------
 __Home
---------------------------------------------------------------- */

.home-inner {
  position: absolute;
  padding: 0 !important;
  width: 100%;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  z-index: 1;
  top:0;
  left:0;
}


/* __Cycle Slider
---------------------------------------------------------------- */



/* __Home
-------------------------------- */

.home .cycle-slideshow {
	position: absolute;
	left: 18px;
	top: 18px;
	bottom: 18px;
	right: 18px;
	height: auto;
	width: auto;
}

.home .rsContent {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	float: none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

.home img.cycleimg {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	max-height: none;
	position: absolute;
	bottom: 0 !important;
}




/* __Header
---------------------------------------------------------------- */

.header {
	position: relative;
	width: auto;
	height: auto;
}

.header-inner {
	position: relative;
	top: 0;
	left: 0;
	padding: 0;
	padding: 18px;
}



/* __logo
---------------------------------------------------------------- */

.logo h1 { 
	font-size: 15px;
	font-weight: 400;
	line-height: 1em;
	z-index: 101;
}


.logo {
    z-index: 101;
    display: inline-block;
    margin-right: 40px;
    }
    
    
.logo h1 a {
    background-image: url('img/rk_logo.svg');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: right 50%;
    width: 128px;
    height: 15px;
    text-indent: -9999px;
    display: inline-block;
    z-index: 102;
    }
   
.logo h1 a,
.logo h1 a:hover {
    border: none;
    }




/* __Nav
---------------------------------------------------------------- */

.menu-icon {
	display: inline-block;
	vertical-align: bottom;
	font-size: 15px;
	cursor: pointer;
	line-height: 0.8em;
    }
    
.menu-icon .close,
.fm-activate .menu-icon .open,
.fm-button {
	display: none;
    }

.fm-activate .menu-icon .close {
	display: block;
    }

  
.fm-activate .mobile-nav {
	display: block;
    }

.pc-nav {
	display: none;
    }


.nav {
	position: absolute;
    margin-top: 70px;
    }

.sub-nav {
}

    
.main-nav li,
.sub-nav li {
	font-size: 16px;
	padding: 5px 0;
}


.main-nav li.jpt,
.sub-nav li.jpt {
	font-size: 13px;
}


/* __lang-nav
------------------------------- */

.lang-nav {
    margin-top: 40px;
    }
    
.lang-nav li {
	display: inline-block;
}

.lang-nav li:nth-of-type(2n):before {
	content: " / " ;
	font-size: 14px;
	padding: 3px;
}


.lang-nav  li a {
	font-size: 13px;
	padding: 3px 0;
}











/* ---------------------------------------------------------------------
__Fullpage Menu 
--------------------------------------------------------------------- */

body.fm-activate {
  overflow: hidden;
}

.fm-menu {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  width: auto;
  height: auto;
  left: 0;
  top: 0;
  margin: 18px;
  margin-top: 70px;
  z-index: 101;
}


.fm-menu.fm-animated {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  visibility: visible;
}



.fm-menu .fm-nav {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: none;
}

.fm-menu .fm-nav.active {
  display: block;
}

.fm-scrollable {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
}

.fm-menu .fm-nav.fm-animated,
.fm-menu.fm-horizontal .fm-nav.fm-animated  {
  opacity: 1;
}

.fm-overlay {
  height: 100%;
  width: 100%;
  background: rgba(234,238,238,1);
  opacity: 0;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10000;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; 
}

body .fm-button {
	display: none;
}

body .fm-button:hover {
}

body.fm-activate .fm-overlay {
  opacity: 1;
  visibility: visible;
}

.fm-menu .fm-first-level {
  padding: 20px 0;
  margin: 0;
  list-style: none;
  width: 100%;
  text-align: right;
}
.fm-menu .fm-first-level > li {
  display: inline-block;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
}

.fm-menu .fm-first-level > li a {
  color: #333;
  padding: 10px 10px;
  opacity: 0.3;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.fm-menu .fm-first-level > li a:hover {
  opacity: 0.5;
}

.fm-menu .fm-first-level > li.active a, .fm-menu .fm-first-level > li.active a:hover {
  opacity: 1;
}
.fm-menu .fm-first-level > li a[data-fm-index] {
  position: relative;
  padding-left: 35px;
}
.fm-menu .fm-first-level > li a[data-fm-index]:after {
  content: attr(data-fm-index);
  position: absolute;
  color: #A79A74;
  left: 0;
  font-size: 50px;
  font-weight: 100;
  top: -12px;
  font-family: georgia;
  font-style: italic;
}

.fm-nav > a {
  line-height: 100%;
  display: none;
  padding: 35px 0;
  border-bottom: 1px solid #f1f1f2;
  font-size: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 40px;
  text-align: left;
  color: #333;
  -webkit-transition: color 0.5s ease-in-out;
  -moz-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.fm-nav > a.animated {
  display: block;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fm-nav > a .subtitle {
  margin-bottom: -5px;
  font-family: georgia;
  font-style: italic;
  color: #A79A74;
  font-weight: normal;
  letter-spacing: 0;
  text-transform: none;
  display: block;
  font-size: 18px;
  -webkit-transition: color 0.5s ease-in-out;
  -moz-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.fm-nav > a:hover {
  color: #A79A74;
}

.fm-nav > a:hover .subtitle {
  color: #333;
}

.fm-nav > a[data-fm-index]:hover:after {
  opacity: 0;
}

.fm-nav > a[data-fm-index] {
  position: relative;
  padding-right: 45px;
}

.fm-nav > a[data-fm-index]:hover:before {
  opacity: 1;
  right: 0;
}

.fm-nav > a[data-fm-index]:before {
  content: "\3009";
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: absolute;
  color: #A79A74;
  font-weight: 100;
  right: 50px;
  font-size: 50px;
  top: 50%;
  font-family: georgia;
  margin-top: -31px;
}

.fm-nav > a[data-fm-index]:after {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  content: attr(data-fm-index);
  position: absolute;
  color: #A79A74;
  font-weight: 100;
  right: 0;
  font-size: 50px;
  top: 50%;
  font-family: georgia;
  margin-top: -31px;
}


@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}









/* ----------------------------------------------------------------
__Page
---------------------------------------------------------------- */

.page-main {
	width: auto;
	height: auto;
	margin: 58px 18px 0 18px;
}



.page-inner {
	float: none;
	width: 100%;
}



/* __Footer
---------------------------------------------------------------- */


.home .footer {
	display: none;
}

.footer {
	position: relative;
	padding: 6em 18px 18px;
	left: 0;
	z-index: 600;
}


.copy {
	font-size: 13px;
	float: left;
	margin-right: 30px;
}


.back-top {
	font-size: 13px;
	float: left;
	cursor: pointer;
}



/* __Works single
---------------------------------------------------------------- */

.works-single-contents .item-text {
	display: block;
	margin-bottom: 18px;
}



/* __Publications single
---------------------------------------------------------------- */

.publications-single-contents .cell-01 {
	width: 90px;
	display: table-cell;
	padding: 5px 5px 5px 0;
}

.publications-single-contents .cell-02 {
	display: table-cell;
	padding: 5px 0 5px 0;
}





}







/* iPad Pro 10.5inch Portrait */
@media only screen and (max-width: 834px) {

}



/* iPhone 8 Plus Landscape (736px) / iPad 9.7inch Portrait */
@media only screen and (max-width: 768px) {


.landscape .home-inner {
	/* height: 700px !important; */
}



}





/* iPhone 8 Landscape */
@media only screen and (max-width: 667px) {

}






/* iPhone SE ~ 8 Plus Portrait */
@media only screen and (max-width : 480px) {

.archive-inner .publications-contents .item,
.archive-inner .articles-contents .item {
	font-size: 10px;
	display: inline-table;
	width: 47%;
	margin-bottom: 7%;
	margin-right: 6%;
}



.archive-inner .publications-contents .item:nth-of-type(3n),
.archive-inner .articles-contents .item:nth-of-type(3n) {
	margin-right: 4%;
}


.archive-inner .publications-contents .item:nth-of-type(2n),
.archive-inner .articles-contents .item:nth-of-type(2n) {
	margin-right: 0;
}



/* __Works
---------------------------------------------------------------- */



.works-contents .item,
.video_works-contents .item,
.installation_views-contents .item {
	margin-bottom: 3em;
}

.works-contents .item:last-of-type,
.video_works-contents .item:last-of-type,
.installation_views-contents .item:last-of-type {
	margin-bottom: 0;
}


.works-contents .item-text,
.video_works-contents .item-text,
.installation_views-contents .item-text {
	margin-top: 1em;
}



.project-contents {
	margin-top: 5em;
	padding-top: 9em;
}


.video-contents {
	margin-top: 5em;
	margin-bottom: 3em;
	padding-top: 9em;
}

.installation-contents {
	margin: 0;
}





/* ----------------------------------------------------------------
__Single
---------------------------------------------------------------- */


/* __Works single
---------------------------------------------------------------- */

.works-single-contents .item-inner {
	margin-bottom: 12px;
}

.works-single-contents .item-inner:last-of-type {
	margin-bottom: 0;
}


.works-single-contents .type-01 {
	float: left;
	width: 100%;
}

.works-single-contents .type-02 {
	float: left;
	width: 48.5%;
}

.works-single-contents .type-02-left {
	margin-right: 3%;
}




}





/* iPhone SE Portrait */
@media only screen and (max-width : 320px) {


}











/* __Clearing
--------------------------------------------------------------------- */

.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.cf { *zoom: 1; }




