@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

a {
    color:#444;
}

a:hover {
    color:#444;
}

ul {
    list-style: none;
}

/*========= ぼかしのためのCSS ===============*/

.mainblur{
	filter: blur(8px);
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:rgba(255,255,255,0.3);/*背景を少し透過させる*/
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;/*はじめは非表示*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}
/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #888;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
    font-family: 'Garamond', 'ヒラギノ明朝 ProN W6', 'HiraMinProN-W6', '游明朝', 'Yu Mincho', sans-serif;;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* 全体設定 */

html {
    scroll-behavior: smooth;
}

.container {
  background-color: #fff;
  font-family: "Noto Serif JP", 'ヒラギノ明朝 ProN W6', 'HiraMinProN-W6', '游明朝', 'Yu Mincho', serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.horizontal {
    margin-inline: 20px;
} @media screen and (min-width: 750px) {
    .horizontal {
        margin-inline: 10vw;
    }
}

.lastHr {
    margin-top: 80px;
} @media screen and (min-width: 750px) {
    .lastHr {
        margin-top: 110px;
    }
}

.Japanese {
    margin-block: 10px;
}

.English {
    margin-block: 10px 40px;
}

.container dt {
    font-weight: bold;
}

a:hover img {
    opacity: 0.7;
}

/* header css */


.header {
    height: 250px;
    color: #444;
    text-align: center;
    position: relative;
} @media screen and (min-width: 750px) {
    .header {
        height: 360px;
    }
}

h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

h1 br {
    display: block;
    content: "";
    margin: -15px;
} @media screen and (min-width: 1000px) {
    h1 br {
        display: block;
        content: "";
        margin: 0px;
    }
}

.mainname {
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
} @media screen and (max-width: 350px) {
    .mainname {
        font-size: 16px;
        line-height: 16px;
    }
} @media screen and (min-width: 750px) and (max-width: 1000px) {
    .mainname {
        font-size: 24px;
        line-height: 24px;
    }
} @media screen and (min-width: 1000px) {
    .mainname {
        font-size: 32px;
        line-height: 32px;
    }
}


.sub {
    font-size: 16px;
    line-height: 16px;
    font-weight: 100;
    text-transform: capitalize;
    letter-spacing: 1px;
} @media screen and (max-width: 350px) {
    .sub {
        font-size: 14px;
        line-height: 14px;
    }
} @media screen and (min-width: 750px) and (max-width: 1000px) {
    .sub{
        font-size: 20px;
        line-height: 20px;
        letter-spacing: 2px;
    }
}  @media screen and (min-width: 1000px) {
    .sub {
        font-size: 24px;
        line-height: 24px;
        letter-spacing: 2px;
    }
}


/* main css */
.imgCenter {
    margin-inline: auto;
    margin-block: 30px;
}

.topImg {
    text-align: center;
}

.topImg img {
    width: 90vw;
    margin-bottom: 80px;
} @media screen and (min-width: 750px) {
    .topImg img {
        width: 80vw;
        margin-bottom: 110px;
    }
}

h2 {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-block: 80px 40px;
} @media screen and (min-width: 750px) {
    h2 {
        font-size: 18px;
    }
}

h3 {
    text-transform: capitalize;
    font-size: 12px;
    letter-spacing: 1px;
    margin-block: 40px 20px;
} @media screen and (min-width: 750px) {
    h3 {
        font-size: 16px;
    }
}

.main {
    text-align: center;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.2px;
    margin-top: 160px;
    margin-inline: 20px;
} @media screen and (min-width: 750px) {
    .main {
        font-size: 14px;
        line-height: 20px;
        margin-top: 220px;
        margin-inline: 10vw;
        letter-spacing: 0.6px;
    }
}

p.innerLink {
    margin-bottom: 80px;
}

p.innerLink span {
    margin-inline: 2vw;
    font-size: 8px;
} @media screen and (min-width: 750px) {
    p.innerLink span {
        margin-inline: 3vw;
        font-size: 14px;
    }
}

a.innerLink {
    text-decoration: underline;
}


.caption {
    color: #888;
    font-size: 8px;
} @media screen and (min-width: 750px) {
    .caption {
        font-size: 12px;
    }
}

.caption span {
    color: #aaa;
}


/* Privacy Policy */
div.privacy {
  text-align: left;
}



/* footer css */
.footer {
    color: #888;
    font-size: 8px;
    height: 140px;
    display: grid;
    grid-template-columns: 6fr 1fr;
    grid-template-rows: 4fr 1fr;
    margin-inline: 20px;
} @media screen and (max-width: 350px) {
    .footer {
        grid-template-columns: 5fr 1fr;
    }
} @media screen and (min-width: 750px) and (max-width: 1000px) {
    .footer {
        height: 200px;
        font-size: 12px;
        grid-template-columns: 6fr 1fr;
        margin-inline: 10vw;
    }
} @media screen and (min-width: 1000px) {
    .footer {
        font-size: 12px;
        grid-template-columns: 8fr 1fr;
        margin-inline: 10vw;
    }
}

.space {
    grid-column: 1/2;
    grid-row: 1/2;
}

.copyright {
    grid-column: 1/2;
    grid-row: 2/3;
}

.snsLinks {
    grid-column: 2/3;
    grid-row: 1/2;
}

.snsLinks img {
    width: 20px;
    height: 20px;
} @media screen and (min-width: 750px) {
    .snsLinks img {
        width: 30px;
        height: 30px;
    }
}

.privacy {
    grid-column: 2/3;
    grid-row: 2/3;
}

.footer a {
    color: #888;
}

/* profileページ用CSS */
.artistImg > img {
    width: 40vw;
    height: auto;
    margin-bottom: 80px;
   }
   
   .exhibitions h3, .competitions h3 {
     text-align: left;
     margin-left: 15vw;
   }
   
   .biography dl {
     display: grid;
     grid-template-columns: 1fr 5fr;
     text-align: left;
     margin-left: 15vw;
   } @media screen and (min-width: 1000px) {
     .biography dl {
       grid-template-columns: 1fr 14fr;
     }
     
   }
   
   .biography dt {
     grid-column: 1/2;
   }
   
   .biography dd {
     grid-column: 2/3;
     text-align: left;
   }
   
   /* @media screen and (min-width: 1000px) {
     .biography dl {
       width: 68vw;
       margin-inline: auto;
     }
   } */
   
   .bio, .exhibitions, .competitions {
     margin-bottom: 40px;
   }
   
   .exhibitions dl, .competitions dl {
     text-align: left;
   }
   
   .exhibitions dl, .competitions dl {
     text-align: left;
   }
   
   .competitions .Japanese {
     margin-bottom: 100px;
   }
   
   .concept .Japanese {
     margin-bottom: 30px;
   }
   
   .concept .English {
     letter-spacing: 0;
   } @media screen and (min-width: 750px) {
     .concept .English {
         letter-spacing: 0.6px;
     }
   }

/* artworkページ用CSS */
.artworkImg {
    margin-top: 30px;
    text-align: left;
  } 
  
  /* @media screen and (min-width: 1000px) {
    .artworkImg {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
  } */
  
  .artworkImg img {
    width: 90vw;
  } @media screen and (min-width: 750px) {
    .artworkImg img {
      max-width: 80vw;
      max-height: 80vw;
      object-fit: contain;
      margin: 0 auto;
    }
  } 
  
  /* @media screen and (min-width: 1000px) {
    .artworkImg img {
      width: 31vw;
    } 
  } */
  
/* lightbox CSS */
body.lb-disable-scrolling {
    overflow: hidden;
  }
  
  .lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: black;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
    display: none;
  }
  
  .lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
    outline: none;
  } 
  
  .lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none;
    border-radius: 3px;
  
    /* Image border */
    border: 4px solid white;
  }
  
  .lightbox a img {
    border: none;
  }
  
  .lb-outerContainer {
    position: relative;
    *zoom: 1;
    width: 250x;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px;
  
    /* Background color behind image.
       This is visible during transitions. */
    background-color: #eee;
  } 
  
  .lb-outerContainer:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
  }
  
  .lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(../img/loading.gif) no-repeat;
  }
  
  .lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
  }
  
  .lb-container > .nav {
    left: 0;
  }
  
  .lb-nav a {
    outline: none;
    background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
  }
  
  .lb-prev, .lb-next {
    height: 100%;
    cursor: pointer;
    display: block;
  }
  
  .lb-nav a.lb-prev {
    width: 34%;
    left: 0;
    float: left;
    background: url(../img/prev.png) left 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
  }
  
  .lb-nav a.lb-prev:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
  
  .lb-nav a.lb-next {
    width: 64%;
    right: 0;
    float: right;
    background: url(../img/next.png) right 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
  }
  
  .lb-nav a.lb-next:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
  
  .lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    *zoom: 1;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  
  .lb-dataContainer:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .lb-data {
    padding: 0 4px;
    color: #ccc;
  }
  
  .lb-data .lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em;
  }
  
  .lb-data .lb-caption {
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
  }
  
  .lb-data .lb-caption a {
    color: #4ae;
  }
  
  .lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999999;
  }
  
  .lb-data .lb-close {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    background: url(../img/close.png) top right no-repeat;
    text-align: right;
    outline: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  
  .lb-data .lb-close:hover {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
  
/* artwork dpn 仮 */

.dpn {
  display: none;
}
