@charset "utf-8";
/* CSS Document */


html {
  font-size: 62.5%; /* -> 10px; */
}

body {
  overflow-y: scroll;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  font-weight: normal;
  color: #000000;
  letter-spacing: 0.1em;
  line-height: 1em;
}

/* fonts */

p {
  font-size: 1.3em;
  line-height: 1.7em;
}

h1 {
  font-size: 1.8em;
  font-weight: normal;
  color: #CCCCCC;
  line-height: 1em;
}

h2 {
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.7em;
}

h3 {
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.7em;
}

a:link {
  text-decoration: none;
  color: #333333;
}
a:visited {
  text-decoration: none;
  color: #333333;
}
a:hover {
  text-decoration: none;
  color: #FF0066;
  transition-duration: 0.2s;
}
a:active {
  text-decoration: none;
  background-position: center;
}
.blank {color: #FFFFFF}

.url { 
  font-size: 0.8em;
  line-height: 1.5em;
  word-break: break-all;
}


/* container */

.container {
  margin: 0 auto;
  padding: 4em 1.5em 4em 1.5em;
}

.header {
  width: 100%;
}

.main {
  width: 100%;
  padding: 4em 0 15em 0;
}

.footer {
  width: 100%;
}

@media screen and (min-width:480px) { 

.container {
  padding: 4em 4% 4em 4%;
}
}

@media screen and (min-width:800px) { 

.container {
  max-width: 110em;
  padding: 5em 5% 5em 5%;
  grid-gap: 5em;
}
}

/* header */

.header img:hover {
  opacity: 0.4 ;
  transition-duration: 0.2s;
}

ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}

li {
  margin: 0;
  padding: 0;
  font-size: 0.9em;
  font-weight: bold;
  line-height: 2.4em;
}

li:first-child {
  width: 100%;
}

@media screen and (min-width:480px) { 

ul {
  justify-content: flex-start;
}

li {
  font-size: 1.25em;
}

li:not(:first-child) {
  margin-right: 2em;
}
}

@media screen and (min-width:800px) { 

ul {
  flex-wrap: nowrap;
  align-items: baseline;
}

li {
  font-size: 1.4em;
}

li:first-child {
  margin-left: 0;
}

li:not(:first-child) {
  margin-right: 0em;
  margin-left: 2em;
}
}



/* main */

/* INFORMATION */

.information {
  margin-top: 4em;
  padding-bottom: 5em;
  border-bottom-width: 0.1em;
  border-bottom-style: dotted;
  border-bottom-color: #CCCCCC;
}

.information img{
  width: 100%;
  padding-bottom: 3.5em;
}

.text {
  margin: 0 0.2em;
}


@media screen and (min-width:480px) { 
 
.information {
  display: flex;
  flex-direction: row-reverse; /* 画像左= reverse */
  justify-content: space-between;
}
 
.text {
  flex: 1;
  margin: 0;
}

.image {
  max-width: 38%;
  padding: 1.3em 0 0 5%;
  flex: 1;
  
}
}

@media screen and (min-width:800px) { 
 
.image {
  max-width: 33%;
  padding-left: 10%;
}

.text p{
  font-size: 1.5em;
}
}



/* WORKS */

.works {
  margin-top: 4em;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.item {
  max-width: 28%;
  overflow: hidden;
  padding-bottom: 3em;
}

.item:hover {
  opacity: 0.6 ;
  transition-duration: 0.8s;
}

.item img {
  width: 100%;
}

@media screen and (min-width:480px) { 

.item {
  max-width: 21%;
}
}

@media screen and (min-width:800px) { 

.item {
  max-width: 17%;
  padding-bottom: 3.5em;
}
}


/* BIOGRAPHY */

.biography { margin-top: 5em;}
.biography p{ font-size: 1.2em;}

@media screen and (min-width:800px) { 
.biography p{ 
  font-size: 1.4em; 
  line-height: 1.8em;
}
}


/* CONTACT */

.contact { 
  margin-top: 5em;
}

.contact img{
  width: 100%;
}

.info {
  margin: 8em 0.2em;
}


@media screen and (min-width:1024px) { 
 
.contact {
  display: flex;
  flex-direction: row-reverse; /* 画像左= reverse */
  justify-content: space-between;
}

.info {
  flex: 1;
  margin: 0;
  max-width: 40em;
}

.photo {
  padding: 0 0 0 10%;
  flex: 1;
}
}







/* arrows */

.arrows {
  display: flex;
  justify-content: space-between;
  margin-top: 5em;
}
.arrows img:hover {
  opacity: 0.5;
  transition-duration: 0.3s;
}


/* pagetop */

.pagetop{
  position:fixed;
  right:1em;
  bottom:1em;
  cursor:pointer;
}
.pagetop:hover img{
  opacity: 0.5;
  transition-duration: 0.3s;
}



