.volumeDiv {
  position: relative;
  /* height: 100vh; */
  text-align: center;
  /* background-image: linear-gradient(to top, #5ee7df 0%, #b490ca 100%); */
background-image: linear-gradient(to top, #9795f0 0%, #fbc8d4 100%);
  /* padding: 5em 0; */

}

.thanksDiv {
  position: relative;
  /* height: 100vh; */
  /* background-image: linear-gradient(to top, #5ee7df 0%, #b490ca 100%); */
background-image: linear-gradient(to right, #f78ca0 0%, #f9748f 19%, #fd868c 60%, #fe9a8b 100%);
}

.volumeContent {
  position: relative;
  left: 10%;
  width: 80%;
  text-align: left;
  /* margin: 50px; */
  padding-top: 10px;
  padding-bottom: 10px;
  /* color:white; */
  /* -webkit-text-stroke: 0.3px black;
  text-stroke: 1px #FFF; */
}

.volumeContent2 {
  margin-left: 10px;
}
.dropContent{
  width:100%;
  height: 100%;
  position: relative;
  top:0%;
}
.dropText{
  margin-top: 10px;
}
.uploadImg{
  height: 60%;
  width: auto;
}
.dropUl{
  /* display: inline-block; */
  margin: 0 auto;
  margin-top: 10px;
  text-align: left;
  position: relative;
  /* left: 35%; */
  width: 80%;
  max-width: 80%;
  height: 40px;
  overflow: auto;
  overflow-y: scroll;

}
::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    box-shadow: 0 0 1px rgba(255,255,255,.5);
}

#dropzone {
  display: inline-block;
  text-align: center;
  position: relative;
  /* left: 25%; */
  background-color: white;
  /* border: solid 3px #9c9; */
  width: 600px;
  height: 300px;
  max-width: 80%;
  max-height:160px;
  /* color: white; */
  /* min-height: 50px; */
  padding: 20px;
  /* text-shadow: 1px 1px 0 #fff; */
}

#dropzone.dropover {
  background-color: #9A9999;
  color: white;
}

/* #files:empty::before {
  color: #ccc;

} */

#files img {
  border: solid 1px #ccc;
  cursor: pointer;
  height: auto;
  margin: 0 10px;
  max-height: 128px;
  max-width: 128px;
  width: auto;
}

/* @font-face {
  font-family: 'MyFont';
  src: url('./smartfont.otf') format('opentype');
} */

.smartTitle {
  font-size: 1.8rem;
  /* font-family: MyFont; */
  color: black;
}

body {
  margin: 0;
  padding: 0;
  /* background: linear-gradient(-135deg, #E4A972, #9941D8); */
/* background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%); */


  height: auto;
  position: relative;
}


.shake_btn
{
  animation-name: shake;
  animation-duration: 0.2s;
  animation-iteration-count: infinite;

  background-color: rgba(255, 0, 0, 0.7);
  border-radius: 6px;
  /* width: 150px; */
  /* font-weight: bold; */
}

@keyframes shake
{
  from{
    transform: translateX(-5px);
  }

  50%{
    transform: translateX(10px);
  }

  to{
    transform: translateX(-5px);
  }
}


  .content {
    text-align: center;
    display: inline-block;
  }

  .oyaContent {
    position: absolute;
    top: 50%;
    /*親要素を起点に上から50%*/
    left: 50%;
    /*親要素を起点に左から50%*/
    transform: translateY(-50%) translateX(-50%);
    /*要素の大きさの半分ずつを戻す*/
    -webkit-transform: translateY(-50%) translateX(-50%);
  }


  .aboutDiv{
    /* position: relative; */
    /* height: 100vh; */
    /* text-align: center; */
    /* background-image: linear-gradient(to top, #5ee7df 0%, #b490ca 100%); */
    background-image: linear-gradient(to top, #9795f0 0%, #fbc8d4 100%);

    height: auto;
    min-height: 90vh;
    /* width: 100vw; */
  }
  .aboutContent{
    margin: 0 auto;
    padding: 30px;
    width: 90vw;
  }
  .aboutDiv img{
    border: 1px solid white;
    width:100%;
  }
