@charset "utf-8";
/* CSS Document */

.body{
	width: 100%;
	height: auto;
	background-color: #a6a6a6;
	background-image: url(../img/uno-logos-bg.png);
	background-repeat: no-repeat;
	background-position: 80% 1%;
	background-size:65% auto;

}

.wrap{
display: flex;
justify-content: space-around;
width: 100%;
height: auto;
margin: 0 auto;
}

/*-----logos-------------------------------------
*/
/*
.logos{
width: 100%;
text-align: center;
padding: 10% 0;
*/
/*height: 50%;
width: auto;
}*/

.logos h1{
	/*max-width: 70%;
	height: auto;
	font-size: 15vh;*/
	
/*	min-width: 250px;
	min-height: 150px;
	margin: 7vh auto;
	background-image: url(../img/Portfolio.png);
	background-repeat: no-repeat;
	background-size: 70% auto;
	*/
		color: rgba(0,0,0,0.00);
}

.logos h2{
/*	max-width: 40%;
	height: auto;
	margin: 0 auto;
	background-image: url(../img/uno-logo.png);
	background-repeat: no-repeat;*/
	
	color: rgba(0,0,0,0.00);
}

.logos img{
max-width: 100%;
height: auto;
}

/*----nav--------------------------------------------------*/

/*.logos .nav{
display: flex;
}*/


.nav{
  position: fixed;
  height: 80%;
  width: auto;
  min-width: 33px;
  margin: auto 0;
    padding-top: 10%;
	text-align: left;
}



.nav img{
max-height: 100%;
width: auto;
  cursor: pointer;
  position: absolute;
}


/*.sidebar{
max-height: 100%;

}*/

/*---about---------------------------------------*/
.about{
 position: relative;
  overflow: hidden;
  height: 40%;
  margin: 50% auto;
 
}



.about img:last-child{
  top: 100%;
  transition: 0.3s;
}
.about:hover img:last-child{
  top:0;
}
/*----contact---------------------------------------*/
.contact{
 position:relative;
  overflow:hidden;
/*  width: 33px;*/
  height: 50%;
  margin: 0 auto;
}

.contact img:last-child{
  top: 100%;
  transition: 0.3s;
}
.contact:hover img:last-child{
  top:0;
}
/*---up----------------------------------------------*/
.up{
 position:relative;
  overflow:hidden;
  height: 80%;
  max-height: 30px;
    margin: 50% 0;
 /* height: 72px;*/
}


.up img:last-child{
  top: 100%;
  transition: 0.3s;
}
.up:hover img:last-child{
  top:0;
}
/*-------------------------*/


/*-----artworks----------------------------*/

.main{
width: 60%;
padding-top: 55%;
}

.main ul {
  /*  width: 50%;*/
	margin: 10vh auto;
    
}
.main ul li img {
    max-width: 100%;
    max-height: auto;
}


.main ul{
list-style: none;
}

.main li{
padding-bottom: 10vh;
}

/*---frame--border----------------------------*/

.main ul li img{
max-width: 100%;
height: auto;
border: solid 15px #e6e6e6;
outline: solid 3px #000;
}


/*----prof-----------------------------------------
*/
.prof {
width: 60%;
margin: 0 auto;
/*display: flex;
justify-content: space-around;*/
padding-bottom: 5vh; 
text-align: center;
}

/*.prof .text {
max-width: 50%;
height: auto;
margin: auto;
}*/

.unophoto {
	width: 50%;
	
}

.prof img{
	max-width: 200px;
height: auto;
margin-left: auto;
margin-right: auto;
margin-bottom: 3vh;
}

h4{
font-size: 3vw;
padding-bottom: 3vh;
text-align: center;
}

.prof p{
	font-size: 13px;;
	letter-spacing: 0.2vw;
	line-height: 3vh;
}


/*---footer-----------------------------------------------*/
.footer {
width: 100%;
height: 13vh;
background-color: #9927bd;

}
.footer h5 {
	font-size: 3vw;
	letter-spacing: 0.5vw;
	text-align: center;
	padding-top: 3vh;
}
.footer p {
	bottom: 0;
	font-size: 0.5vw;
	text-align: center;
	height: 10px;
	padding-top: 2vh;	
}


/*----------modal------------------------------------------------------------*/
* {
  box-sizing: border-box;
}
body {
  font-family:'Avenir','Helvetica, Neue','Helvetica','Arial';
  height: 5000px;
}


/* モーダルCSSここから */
.modalArea {
  visibility: hidden; /* displayではなくvisibility */
  opacity : 0;
  position: fixed;
  z-index: 10; /* サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .4s;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
  max-width: 500px;
  padding: 10px 30px;
  background-color: #fff;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.is-show { /* モーダル表示用クラス */
  visibility: visible;
  opacity : 1;
}
/* モーダルCSSここまで */

