@charset "UTF-8";
/*全体の設定*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    color: #555;
    background-color: #D2D3D3;
    background-color:rgb(188, 188, 188);/*あとで色を指定する*/
    font-family: 'Oswald','Noto Sans JP', sans-serif;
    width: 100%;
	cursor:default;
}
body{
  
	background-color: transparent;
	/*フッターを常に下部に固定する為のコード*/
	margin: 0;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

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

AIアートページのスタイル

************************/
.ai-gallery {
  /*リンクをゆっくり開く*/
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0; 
}

@keyframes fadeInAnime {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

/*AIアートページのcloseのスタイル*/
.ai-close_button {
  position: fixed;
  width: 35px;
  height: 35px;
  margin: 35px;
  border: none;
  background-color: transparent;
}

/*AIアートページのcloseとinfoは横並び*/
.ai-menu {
  display: flex;
}

.ai-info {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  margin: 0 auto;
  text-align: center;
}

.ai-info h1 {
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-size: 0.9rem
}

.ai_img_wrapper{
  width: 80%;
  margin: 0 auto;
  max-width: 800px;
}

.ai_img{
  padding-bottom: 30px;
}

.img{
  box-shadow: 5px 10px 10px rgba(0, 0, 0, .5);
}
.ai_text{
  width: 83%;
  margin: 0 auto;
  max-width: 800px;
}

.story {
   box-shadow: inset 0 0 10px 10px #FFF;
   padding: 2em;
   background-color: rgb(255, 255, 255);
}

.ai_link{
  padding-top: 30px;
  font-size: 12px;
  text-align: center;
}

span {
  background-color: rgba(229,190,191,0.05);

}
.adobe_stok{
  padding-top: 15px;
  text-decoration: underline;
  color: blue;
  cursor: pointer;
}



@media (max-width: 639px) {
  .ai_img_wrapper{
    width: 95%;  
  }
  .ai_text{
    width: 98%;
  }

}






