@charset "UTF-8";
/*----------------------------------------
	clearfix
----------------------------------------*/
/*----------------------------------------
	reset
----------------------------------------*/
/* The root element */
html, body {
  -webkit-text-size-adjust: none;
}

/* Sections */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  width: 100%;
  line-height: 1.5;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, 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, dialog, figure, footer, header, hgroup, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  font-style: normal;
  font-weight: normal;
}

header, footer, article, section, aside, hgroup, nav, menu, figure, figcaption, time {
  display: block;
}

li {
  list-style: none;
}

img {
  border: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

::selection {
  background: #4c4948;
  /* Safari */
  color: #fff;
}

::-moz-selection {
  background: #4c4948;
  /* Firefox */
  color: #fff;
}

.clearfix {
  min-height: 1px;
  _height: 1%;
}
.clearfix:after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

/*----------------------------------------
	body
----------------------------------------*/
body {
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-size: 14px;
  font-size: 0.875rem;
  counter-reset: number;
  color: #e6e6e6;
  background-color: #242424;
  overflow-x: hidden;
}

#loading_bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #242424;
  z-index: 1;
}
#loading_bg #loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}









#wrapper {
  background-color: #242424;
}

#main {
  padding: 0 10% 0 24%;
}



@media screen and (min-width: 978px) and (max-width: 1280px) {
  #main {
    padding: 0 4% 0 26%;
  }
}
@media screen and (min-width: 0px) and (max-width: 979px) {
  #main {
    padding: 0 19px;
  }
}
a {
  color: #ffffff;
  text-decoration: none;
  opacity: 1.0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
a:hover {
  opacity: 1.0 !important;
}

#menu_navi {
  display: none;
}

@media screen and (min-width: 0px) and (max-width: 979px), screen and (min-height: 0px) and (max-height: 400px) {
  #menu_navi {
    display: block;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
    cursor: pointer;
  }
}
.menu-trigger {
  position: relative;
  width: 30px;
  height: 23px;
  display: inline-block;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  box-sizing: border-box;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #bfbfbf;
  border-radius: 4px;
  display: inline-block;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  box-sizing: border-box;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 10px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background-color: #bfbfbf;
  border-radius: 4px;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.menu-trigger.active span {
  background-color: #bfbfbf;
}
.menu-trigger.active span:nth-of-type(2)::after {
  background-color: #bfbfbf;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(20px) scale(0);
}
.menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-20px) scale(0);
}

/****************************************

          animate

*****************************************/
.fadeUp {
  -webkit-animation: fadeInUp 0.6s ease 0.3s both;
  -moz-animation: fadeInUp 0.6s ease 0.3s both;
  animation: fadeInUp 0.6s ease 0.3s both;
  visibility: visible !important;
}

.fadeDown {
  -webkit-animation: fadeInDown 0.6s ease 0.3s both;
  -moz-animation: fadeInDown 0.6s ease 0.3s both;
  animation: fadeInDown 0.6s ease 0.3s both;
  visibility: visible !important;
}

/*----------------------------------------
	header
----------------------------------------*/
@media screen and (min-width: 980px) {
  header {
    position: fixed;
    left: 4%;
    top: 13%;
    z-index: 1000;
  }
  header h1 {
    font-size: 16px;
    font-size: 1rem;
  }
  header h1 span {
    line-height: 70px;
    letter-spacing: 0.1em;
    font-size: 18px;
    font-size: 1.125rem;
    color: #ffffff;
  }
  header p span {
    line-height: 21px;
    letter-spacing: 0.1em;
    font-size: 20px;
    font-size: 1.25rem;
    color: #ffffff;
  }

  nav {
    position: fixed;
    left: 4%;
    top: 0;
    height: 100vh;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  nav .global li {
    margin: 1.5em 0;
    letter-spacing: 0.2em;
  }
  nav .global li:first-child {
    display: none;
  }
  nav .global li a {
    display: block;
    color: #EDEDED
  }
  nav .global li a:hover {
    color: #ffffff;
  }
  nav .global li .active {
    color: #ffffff;
  }
  nav .global li dt {
    margin-bottom: 20px;
    cursor: pointer;
    color: #EDEDED;
  }
  nav .global li dt:hover {
    color: #ffffff;
  }
  nav .global li dd {
    display: none;
    margin: 1.0em 0;
    letter-spacing: 0.05em;
    font-style: italic;
    font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  }
  nav .global li .open {
    display: block;
  }
  nav .language {
    position: absolute;
    left: 0;
    top: 3%;
    font-size: 12px;
    font-size: 0.75rem;
    color: #ededed;
  }
  nav .language a {
    color: #ededed;
  }
}
@media screen and (min-width: 0px) and (max-width: 979px), screen and (min-height: 0px) and (max-height: 400px) {
  header {
    position: fixed;
    left: 20px;
    top: 24px;
    z-index: 1000;
  }
  header h1 {
    font-size: 16px;
    font-size: 1rem;
  }
  header h1 span {
    line-height: 21px;
    letter-spacing: 0.1em;
    font-size: 20px;
    font-size: 1.25rem;
    color: #ffffff;
  }
  header p span {
    line-height: 19px;
    letter-spacing: 0.1em;
    font-size: 18px;
    font-size: 1.125rem;
    color: #ffffff;
  }

  nav {
    position: fixed;
    right: -105%;
    top: 0;
    width: 100%;
    min-height: 100%;
    padding: 0 5%;
    text-align: center;
    background-color: #242424;
    color: #fff;
    opacity: 0;
    z-index: 1100;
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
  }
  nav .global {
    text-align: center;
  }
  nav .global li {
    margin: 0 10px;
    padding: 20px 0;
    border-bottom: 1px solid #EDEDED;
  }
  nav .global li:first-child {
    display: block;
  }
  nav .global li a {
    display: block;
    width: 100%;
    letter-spacing: 0.2em;
    color: #fff;
    font-size: 18px;
    font-size: 1.125rem;
  }
  nav .global li br {
    display: none;
  }
  nav .global li dt {
    margin-bottom: 20px;
    letter-spacing: 0.2em;
    color: #fff;
    font-size: 18px;
    font-size: 1.125rem;
  }
  nav .global li dd {
    line-height: 1.4;
    letter-spacing: 0.05em;
    font-style: italic;
    font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  }
  nav .global li dd a {
    padding: 0 10px;
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1rem;
  }
  nav .global li dd a:last-child {
    margin-bottom: 0;
  }
  nav .global li .open {
    display: block;
  }
  nav .language {
    position: relative;
    left: 0;
    top: 0;
    padding: 20px 0;
  }

  nav.open {
    right: 0;
    opacity: 1;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px), screen and (min-height: 0px) and (max-height: 400px) {
  nav {
    overflow-y: scroll;
  }
}
@media screen and (min-height: 0) and (max-height: 400px) {
  nav {
    overflow-y: scroll;
  }
}



/*----------------------------------------
	footer
----------------------------------------*/
footer {
  position: fixed;
  left: 4%;
  bottom: 5%;
}
footer p small {
  letter-spacing: 0.2em;
  font-size: 11px;
  font-size: 0.6875rem;
  font-style: italic;
  color: #ededed;
}

@media screen and (min-width: 0px) and (max-width: 979px) {
  footer {
    width: 100%;
    left: 0;
    bottom: 3%;
  }
  footer p {
    text-align: center;
  }
}
/*----------------------------------------
	index
----------------------------------------*/
#index {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  
  display: flex;
  
  align-items: center;
}
#index figure {
  width: 100%;
  
  margin: auto;
  
  
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
 

@media screen and (min-width: 0px) and (max-width: 979px) {
  
}

.instag{
  filter: grayscale(100%);
}

/*----------------------------------------
	works
----------------------------------------*/
#works {
  margin: 40px 0;
}
@media only screen and (min-width: 1280px) {
  #works {
    margin: 50px 0 30px;
  }
}
@media only screen and (max-width: 998px) {
  #works {
    margin: 70px 0 60px;
  }
}
#works.work_01 figure #arrow {
  max-width: 700px;
}
#works.work_01 figure .gallery {
  max-width: 700px;
}
#works.work_02 .show_more {
  display: none;
}
@media screen and (min-width: 980px) and (max-width: 1388px) {
  #works.work_02 .show_more {
    display: block;
  }
}


#works.work_03 .show_more {
  display: none;
}
@media screen and (min-width: 0px) and (max-width: 1086px) {
  #works.work_03 .show_more {
    display: block;
  }
}
#works.work_03.jp .show_more {
  display: block;
}
#works.work_05 figure #arrow {
  max-width: 700px;
}
#works.work_05 figure .gallery {
  max-width: 700px;
}
#works.work_05.jp .show_more {
  display: none;
}
@media screen and (min-width: 999px) and (max-width: 1380px) {
  #works.work_05.jp .show_more {
    display: block;
  }
}

#works.work_07 figure #arrow {
  max-width: 700px;
}
#works.work_07 figure .gallery {
  max-width: 700px;
}
#works figure {
  max-width: 950px;
  margin: auto;
}
#works figure #arrow {
  max-width: 750px;
  margin: 0 auto 15px;
}
#works figure .gallery {
  max-width: 750px;
  margin: 0 auto 5%;
}
#works figure .gallery .movie {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-height: 500px;
}
@media only screen and (max-width: 998px) {
  #works figure .gallery .movie {
    min-height: inherit;
  }
}
#works figure .gallery .movie img {
  pointer-events: none;
  touch-action: none;
  user-select: none;
}
#works figure .gallery .photo {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media only screen and (max-width: 998px) {
  #works figure .gallery .photo {
    min-height: inherit;
  }
}
#works figure .gallery .photo p img {
  width: 100%;
  height: auto;
}
#works figure .gallery .photo p span {
  display: block;
  text-align: right;
  margin-top: 10px;
  width: 100%;
  color: #cccccc;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-style: italic;
  font-size: 12px;
  font-size: 0.75rem;
}
#works figure figcaption {
  max-width: 1000px;
  display: block;
}
#works figure figcaption h1 {
  float: left;
  width: 35%;
  padding-left: 10px;
  border-left: 1px solid #e6e6e6;
  font-style: italic;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.8;
}
#works figure figcaption h1.jp {
  font-style: normal;
  font-size: 11px;
  font-size: 0.6875rem;
}
#works figure figcaption h1 span {
  display: block;
  margin-bottom: 15px;
}
#works figure figcaption h1 span:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 998px) {
  #works figure figcaption h1 {
    float: none;
    width: 100%;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
#works figure figcaption .caption {
  float: right;
  position: relative;
  width: 65%;
  padding-left: 10px;
  margin-bottom: 50px;
  border-left: 1px solid #e6e6e6;
}
@media only screen and (max-width: 998px) {
  #works figure figcaption .caption {
    float: none;
    width: 100%;
    font-size: 11px;
    font-size: 0.6875rem;
    margin-bottom: 100px;
  }
}
#works figure figcaption .caption .text {
  height: 82px;
  overflow: hidden;
  font-style: italic;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: justify;
  text-justify: inter-ideograph;
}
#works figure figcaption .caption .text.jp {
  font-style: normal;
  font-size: 11px;
  font-size: 0.6875rem;
}
#works figure figcaption .caption .text.jp p {
  font-style: normal;
  line-height: 1.5;
  margin-bottom: 17px;
  font-size: 11px;
  font-size: 0.6875rem;
}
#works figure figcaption .caption .text p {
  margin-bottom: 15px;
  font-style: italic;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: justify;
  text-justify: inter-ideograph;
}
#works figure figcaption .caption .text p:last-child {
  margin-bottom: 0;
}
#works figure figcaption .caption .text p span {
  font-family: "Arial", "Helvetica Neue", "Helvetica", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", Sans-Serif;
  font-style: normal;
}
#works figure figcaption .caption .show_more {
  position: absolute;
  bottom: -30px;
  left: 0px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  transition: bottom 0.2s;
}
#works figure figcaption .caption .show_more i {
  font-size: 18px;
  font-size: 1.125rem;
}
#works figure figcaption .caption .active {
  bottom: -30px;
}

/*----------------------------------------
	biography
----------------------------------------*/
#biography {
  width: 100%;
  padding: 80px 0;
  
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 998px) {
  #biography {
    padding: 60px 0;
  }
}
#biography .photo {
  position: relative;
  width: 30%;
}
@media only screen and (max-width: 998px) {
  #biography .photo {
    width: 100%;
    margin-bottom: 30px;
  }
}
#biography .photo figure {
  position: fixed;
  top: 0;
  
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 998px) {
  #biography .photo figure {
    display: block;
    position: relative;
    left: 0;
    top: 0;
    height: auto;
  }
  
}
#biography .photo figure span figcaption {
  display: block;
  text-align: right;
  margin-top: 0px;
  color: #cccccc;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-style: italic;
  font-size: 12px;
}

@media only screen and (max-width: 998px) {
  #biography .photo figure span img {
    max-width: inherit;
  }
}
#biography .contents {
  width: 60%;
}
@media only screen and (max-width: 998px) {
  #biography .contents {
    width: 100%;
  }
}
#biography .contents.jp h1 {
  font-size: 14px;
}
#biography .contents.jp p {
  font-size: 12px;
  font-size: 0.75rem;
}
#biography .contents h1 {
  
  font-weight: bold;
  font-size: 15px;
}
#biography .contents h1 span {
  font-style: italic;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#biography .contents p {
 
  line-height: 1.6;
  font-size: 13px;
  font-size: 0.8125rem;
}
#biography .contents p span {
  font-style: italic;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#biography .contents #exhibition, #biography .contents #direction, #biography .contents #prize, #biography .contents #collection {
  margin-bottom: 0px;
}
#biography .contents #exhibition h2, #biography .contents #direction h2, #biography .contents #prize h2, #biography .contents #collection h2 {
  margin-bottom: 0px;
  font-weight: bold;
  font-size: 13px;
}
#biography .contents #exhibition h2 span, #biography .contents #direction h2 span, #biography .contents #prize h2 span, #biography .contents #collection h2 span {
  display: block;
  margin-top: 0px;
}
#biography .contents #exhibition.jp h2, #biography .contents #direction.jp h2, #biography .contents #prize.jp h2, #biography .contents #collection.jp h2 {
  font-size: 12px;
  font-size: 0.75rem;
}
#biography .contents #exhibition dl, #biography .contents #direction dl, #biography .contents #prize dl, #biography .contents #collection dl {
  clear: both;
}
#biography .contents #exhibition dl.jp dt, #biography .contents #direction dl.jp dt, #biography .contents #prize dl.jp dt, #biography .contents #collection dl.jp dt {
  font-size: 12px;
  font-size: 0.75rem;
}
#biography .contents #exhibition dl.jp dd, #biography .contents #direction dl.jp dd, #biography .contents #prize dl.jp dd, #biography .contents #collection dl.jp dd {
  font-style: normal;
  font-size: 12px;
  font-size: 0.75rem;
}
#biography .contents #exhibition dl dt, #biography .contents #direction dl dt, #biography .contents #prize dl dt, #biography .contents #collection dl dt {
  width: 4em;
  
  clear: both;
  line-height: 1.6;
  font-weight: bold;
  font-style: italic;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 13px;
  font-size: 0.8125rem;
}
#biography .contents #exhibition dl dd, #biography .contents #direction dl dd, #biography .contents #prize dl dd, #biography .contents #collection dl dd {
  padding: 0 0 0 4.5em;
  line-height: 1.6;
  font-style: italic;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 13px;
}
#biography .contents #exhibition dl dd span, #biography .contents #direction dl dd span, #biography .contents #prize dl dd span, #biography .contents #collection dl dd span {
  font-style: normal;
  font-family: "Arial", "Helvetica Neue", "Helvetica", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", Sans-Serif;
}
#biography .contents #profile h2 {
  margin-bottom: 0px;
  font-weight: bold;
  font-size: 13px; 
}
#biography .contents #profile h2 span {
  display: block;
  margin-top: 0px;
}
#biography .contents #profile.jp h2 {
  font-size: 12px;
}
#biography .contents #profile.jp dl dt {
  font-size: 12px;
}
#biography .contents #profile.jp dl dd {
  font-size: 12px;
}
#biography .contents #profile.jp p {
  font-size: 12px;
}
#biography .contents #profile dl {
  margin-bottom: 0px;
}
#biography .contents #profile dl dt {
  line-height: 1.6;
  font-size: 13px;
}
#biography .contents #profile dl dd {
  line-height: 1.6;
  font-size: 13px;
}
#biography .contents aside p {
  font-size: 12px;
}

#biography .current h1 {
  margin-top: 25px;
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: bold;
  color: #ededed;
  display: flex;
	justify-content: center;
	align-items: center;
}

#biography .current h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 300;
  color: #ededed;
  display: flex;
	justify-content: center;
	align-items: center;
}

#biography .current h3 {
  margin-top: 18px;
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 300;
  color: #ededed;
  display: flex;
	justify-content: center;
	align-items: center;
}

#biography .current h4 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #ededed;
  display: flex;
	justify-content: center;
	align-items: center;
}





#biography ul {
  display: flex;
  justify-content: center;
}

#biography .current li {
  list-style: none;
  margin: 0px 15px 5px;
}

#biography .current ul {
  display: flex;
  
  margin-bottom: 35px;
  flex-wrap: wrap;
}

#biography .current img {
  max-height: 180px;
  min-height: 10px;
}

.menb{
  display: flex;
  justify-content: center;
	align-items: center;
  flex-wrap: wrap;
}

#biography .current span:hover{
  text-decoration: underline;
}



/*----------------------------------------
	exhibitions
----------------------------------------*/
#exhibitions {
  width: 100%;
  max-width: 1000px;
  padding: 80px 0 60px;
}
#exhibitions a:hover img {
  opacity: 0.75;
}
#exhibitions section {
  width: 100%;
}
#exhibitions section h1  {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
  color: #ededed;
  text-align: center;
}
#exhibitions section h2 {
  margin-top: 15px;
  margin-bottom: 20px;
  font-weight: normal;  
  font-size: 16px;
  
  color: #EDEDED;
  text-align: center;
}

#exhibitions section h3 {
  margin-top: 16px;
  
  font-size: 14px;
  color: #EDEDED;
}

#exhibitions .current .more_current {
  padding-left: 20%;
}
@media only screen and (max-width: 998px) {
  #exhibitions .current .more_current {
    text-align: center;
    padding: 0;
  }
}
#exhibitions .current .more_current i:hover {
  opacity: 0.7;
  cursor: pointer;
}
#exhibitions .current ul {
  margin-bottom: 15px;
}
#exhibitions .current ul li {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1.4;
}
#exhibitions .current ul li:last-child {
  margin-bottom: 0;
}
#exhibitions .current ul li:nth-of-type(n+5) {
  display: none;
}
#exhibitions .current ul li a dl:hover {
  opacity: 0.75;
}
#exhibitions .current ul li a dl.jp dt {
  font-size: 12px;
}
#exhibitions .current ul li a dl.jp dt span {
  font-style: normal;
  font-size: 12px;
}
#exhibitions .current ul li a dl.jp dd {
  font-size: 12px;
}
#exhibitions .current ul li a dl dt {
  line-height: 1.6;
  color: #e6e6e6;
  font-size: 13px;
}
#exhibitions .current ul li a dl dt span {
  font-style: italic;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #e6e6e6;
  font-size: 13px;
}
#exhibitions .current ul li a dl dd {
  color: #ededed;
  line-height: 1.6;
  font-size: 13px;
  font-size: 0.8125rem;
}

@media only screen and (max-width: 998px) {f
  #exhibitions .selected ul {
    display: block;
    margin-bottom: 0px;
  }
}
#exhibitions .selected ul li {
  max-width: 480px;
}
@media only screen and (max-width: 1220px) {
  #exhibitions .selected ul li {
    min-width: inherit;
  }
}
@media only screen and (max-width: 998px) {
  #exhibitions .selected ul li {
    margin: 0 auto 60px;
  }
}
#exhibitions .selected ul li a {
  text-decoration: none;
}

@media only screen and (max-width: 998px) {
  #exhibitions .selected ul li figure {
    text-align: center;
  }
}

#exhibitions .selected ul li dl dt {
  line-height: 1.4;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 13px;
}
#exhibitions .selected ul li dl dd {
  line-height: 1.6;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #ededed;
  font-size: 11px;
}

#exhibitions .selected img {
  max-width: 380px;
  min-width: 10px;
}

#exhibitions .selected li {
  list-style: none;
  margin: 0px 15px 5px;
}

#exhibitions .selected ul {
  display: flex;
  
  margin-bottom: 35px;
  flex-wrap: wrap;
}

#exhibitions ul {
  display: flex;
  justify-content: center;
}

#exhibitions .selected img {
  list-style: none;
  margin: 0px 30px 15px;
}





/*----------------------------------------
	publications
----------------------------------------*/
#publications {
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  
  display: flex;
  
  align-items: center;
}
@media (max-height: 600px) {
  #publications {
    height: auto;
    padding: 60px 0;
  }
}
@media only screen and (max-width: 998px) {
  #publications {
    height: auto;
    display: block;
    padding: 100px 0 60px;
  }
}
#publications div {
  width: 100%;
}
#publications div h1 {
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 18px;
  
}
@media only screen and (max-width: 998px) {
  #publications div h1 {
    font-size: 18px;
   
  }
}
#publications div h1 span {
  font-style: italic;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#publications div ul {
  display: flex;
  
  justify-content: space-between;
}
@media only screen and (max-width: 998px) {
  #publications div ul {
    display: block;
  }
}
#publications div ul li {
  margin: 0 2%;
}
@media only screen and (max-width: 998px) {
  #publications div ul li {
    margin: 0 auto 80px;
  }
}
#publications div ul li a {
  text-decoration: none;
}
#publications div ul li figure {
  
  display: flex;
  
  align-items: center;
  
  text-align: center;
  margin-bottom: 80px;
  
}

#publications .selected img{
  max-width: 1000px;
  min-width: 10px;
  margin: auto;
  display: block;
}



.diagram {
  margin: auto;
  display: block;
  
}

@media only screen and (max-width: 998px) {
  #publications div ul li figure {
    min-height: initial;
    margin-bottom: 60px;
  }
}
#publications div ul li figure img {
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.5);
}
#publications div ul li dl dt {
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 13px;
  
}
#publications div ul li dl dd {
  line-height: 1.4;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 11px;
  
}




#exhibitions .select ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 998px) {f
  #exhibitions .select ul {
    display: block;
    margin-bottom: 0px;
  }
}
#exhibitions .select ul li {
  max-width: 480px;
}
@media only screen and (max-width: 1220px) {
  #exhibitions .select ul li {
    min-width: inherit;
  }
}
@media only screen and (max-width: 998px) {
  #exhibitions .select ul li {
    margin: 0 auto 60px;
  }
}
#exhibitions .select ul li a {
  text-decoration: none;
}

@media only screen and (max-width: 998px) {
  #exhibitions .select ul li figure {
    text-align: center;
  }
}
#exhibitions .select ul li figure img {
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  max-width: 240px;
  width: 100%;
  height: auto;
}
#exhibitions .select ul li dl dt {
  line-height: 1.4;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 13px;
}
#exhibitions .select ul li dl dd {
  line-height: 1.6;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #ededed;
  font-size: 11px;
}

#exhibitions .select img {
  max-width: 780px;
  min-width: 10px;
  margin: auto;
  margin-top: 15px;
  display: block;
}

#exhibitions .current .kome{
  font-size: 10px;
  vertical-align: top;
}







/*----------------------------------------
	contact
----------------------------------------*/


#contact {
  width: 100%;
  height: 100vh;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
#contact div {
  max-width: 1000px;
  margin: auto;
}


@media only screen and (max-width: 998px) {
  #contact div h1 {
    margin-bottom: 30px;
  }
}
#contact div h1 span {
  font-style: italic;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#contact div dl {
  margin-bottom: 5px;
}
#contact div dl dt {
  width: 43em;
  float: left;
  clear: both;
  padding-bottom: 20px;
  line-height: 1.6;
  
}
@media only screen and (max-width: 998px) {
  #contact div dl dt {
    width: 100%;
    float: none;
    clear: both;
    padding-bottom: 10px;
    display: flex;
	justify-content: center;
	align-items: center;
  }
}
#contact div dl dd {
  padding: 0 0 20px 6em;
  line-height: 1.6;
}
@media only screen and (max-width: 998px) {
  #contact div dl dd {
    padding: 0;
    margin-bottom: 40px;
  }
}
#contact div .social_link {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
#contact div .social_link li {
  margin-right: 40px;
}
#contact div .social_link li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 998px) {
  #contact div .social_link li {
    margin-right: 30px;
  }
}
#contact div .social_link li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  
}
#contact div .social_link li a i {
  margin-right: 5px;
  font-size: 14px;
  font-size: 0.875rem;
}
#contact div .social_link li a span {
  font-size: 14px;
  font-size: 0.875rem;
}

#contact div h1 {
  margin-top: 45px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #ededed;
  display: flex;
	justify-content: center;
	align-items: center;
}

#contact div h2 {
  margin-top: 30px;
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 700;
  color: #ededed;
  display: flex;
	
	align-items: center;
}

#contact div h3 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 300;
  color: #ededed;
  display: flex;
	
	align-items: center;
}

#contact div h4 {
  font-size: 16px;
  font-weight: 300;
  color: #ededed;
  width: 38em;
  display: flex;
	justify-content: center;
	align-items: center;
}

.calend{
  display: flex;
	justify-content: center;
	align-items: center;
}

#contact .new{
  margin-top: 80px;
  padding-bottom: 50px;
}

#contact .calen{
  margin-top: 0px;
  padding-bottom: 40px;
}

.map{
  display: flex;
	justify-content: center;
	align-items: center;
  filter: grayscale(100%);
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50%;
}

.map iframe {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;
}

#zyuusyo {
  padding: 0 0 0px 6em;
  line-height: 1.6;
}

.googleCalender{
  display: flex;
	justify-content: center;
	align-items: center;
  filter: grayscale(100%);
  
}

.googleCalender iframe {
  width:100%;
  max-width:600px;
  height:450px;
  margin-top: 80px;
  }
  
  
  
 
  @media only screen and (max-width: 998px) {
  .googleCalender iframe {
  height:400px;
  width: 350px;
  margin-top: 80px;
  }
  
  }

  #contact .new span:hover{
    text-decoration: underline;
  }






  
/*----------------------------------------
	contact2
----------------------------------------*/


#contact2 {
  width: 100%;
  height: 100vh;
 
}
#contact2 div {
  max-width: 1000px;
  margin: auto;
}


@media only screen and (max-width: 998px) {
  #contact2 div h1 {
    margin-bottom: 30px;
  }
}
#contact2 div h1 span {
  font-style: italic;
  font-family: "Athelas", "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#contact2 div dl {
  margin-bottom: 5px;
}
#contact2 div dl dt {
  width: 43em;
  float: left;
  clear: both;
  padding-bottom: 20px;
  line-height: 1.6;
  
}
@media only screen and (max-width: 998px) {
  #contact2 div dl dt {
    width: 100%;
    float: none;
    clear: both;
    padding-bottom: 10px;
    display: flex;
	justify-content: center;
	align-items: center;
  }
}
#contact2 div dl dd {
  padding: 0 0 20px 6em;
  line-height: 1.6;
}
@media only screen and (max-width: 998px) {
  #contact2 div dl dd {
    padding: 0;
    margin-bottom: 40px;
  }
}
#contact2 div .social_link {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
#contact2 div .social_link li {
  margin-right: 40px;
}
#contact2 div .social_link li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 998px) {
  #contact2 div .social_link li {
    margin-right: 30px;
  }
}
#contact2 div .social_link li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  
}
#contact2 div .social_link li a i {
  margin-right: 5px;
  font-size: 14px;
  font-size: 0.875rem;
}
#contact2 div .social_link li a span {
  font-size: 14px;
  font-size: 0.875rem;
}

#contact2 div h1 {
  margin-top: 45px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #ededed;
  display: flex;
	justify-content: center;
	align-items: center;
}

#contact2 div h2 {
  margin-top: 30px;
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 700;
  color: #ededed;
  display: flex;
	
	align-items: center;
}

#contact2 div h3 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 300;
  color: #ededed;
  display: flex;
	
	align-items: center;
}

#contact2 div h4 {
  font-size: 16px;
  font-weight: 300;
  color: #ededed;
  width: 40em;
  display: flex;
	justify-content: center;
	align-items: center;
}



#contact2 .new{
  margin-top: 80px;
  padding-bottom: 50px;
}

#contact2 .calen{
  margin-top: 0px;
  padding-bottom: 40px;
}



/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url('../img/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url('../../fonts/slick.eot?1505156894');
  src: url('../../fonts/slick.eot?&1505156894#iefix') format("embedded-opentype"), url('../../fonts/slick.woff?1505156894') format("woff"), url('../../fonts/slick.ttf?1505156894') format("truetype"), url('../../fonts/slick.svg?1505156894#slick') format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  display: inline-block;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-size: 12px;
  color: #cccccc;
}

.slick-prev:before {
  content: "previous";
}
.slick-prev:after {
  content: " | ";
  font-size: 12px;
  color: #cccccc;
}

.slick-next:before {
  content: "next";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* ここから矢印カスタマイズ */
.slick-slider {
  position: relative;
}

.slick-slider .slick-arrow {
  transition: all  0.5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.slick-slider .slick-arrow:hover {
  cursor: pointer;
  opacity: 0.7;
}

.slick-slider .prev-arrow {
  left: -40px;
}

.slick-slider .next-arrow {
  right: -40px;
}

.slick-slider .prev-arrow:before,
.slick-slider .next-arrow:before {
  font: var(--fa-font-light);
  font-size: 20px;
  color: #b3b3b3;
}

.slick-slider .prev-arrow:before {
  content: "\f104";
}

.slick-slider .next-arrow:before {
  content: "\f105";
}

@media only screen and (max-width: 998px) {
  .slick-slider .prev-arrow {
    left: -16px;
  }

  .slick-slider .next-arrow {
    right: -16px;
  }

  .slick-slider .prev-arrow:before,
  .slick-slider .next-arrow:before {
    font-size: 24px;
  }
}

.daiaguramu {
 
  padding: 0;
  vertical-align: top;
  position: absolute;
  top: 40px; left: 0;
}




/*# sourceMappingURL=style.css.map */