@charset "UTF-8";

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.header{
  position: fixed;
  background: linear-gradient(90deg, rgb(131, 216, 226), rgb(164, 230, 207));
  width:100%;
  height:80px;
  z-index: 2;
}

.amazon {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.container2{
  display: flex;
  justify-content: space-between;
}

.topimg {
  padding:90px 0 0 0;
}

.article img {
  width: 40%;
  height: auto;
  float: left;
  margin: 0 5px 0 0;
  vertical-align: bottom;
}


.p-box1{
  height:80px;
}

.p-box2{
  display: flex;
  width: 90px;
  height:90px;
  margin:10px 0 0 10px;
}

.p-box3{
  display: flex;
  width: 90px;
  height:150px;
  margin:10px 62px 0 0;
}

.box{
  display:flex;
  justify-content:space-between;
  margin:0px 10px 0 10px;
}

.h2{
  margin:15px 0 0 10px;
}

.h3{
  margin:5px 0 0 0px;
}

.address{
  font-size: 16px;
  margin:10px 0 0 0px;
}

.order{
  width:100%;
  position:relative;
  margin:0px 0 0 0;
  z-index: 2;
}

.progress-bar{
  width:100%;
  position:absolute;
  margin: 20px 0 0 0;
  z-index: 1;
  animation: move-bar 3.5s linear forwards;
  animation-timing-function: ease-out;
}

@keyframes move-bar{
  0% {
    left:-100%;
  }
  100% {
    left:0px;
  }
}

.line{
  border:1px solid #d5d9d8;
  margin:20px 0;
}

.line2{
  border:3px solid #d5d9d8;
  margin:20px 0;
}

.okihai{
  display:flex;
  justify-content:space-between;
  margin:0px 10px 0 10px;
}

.fadeIn1500ms {
  height:150px;
  animation-name: fadeIn1500ms;
  animation-delay: 2200ms;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeIn1500ms {
  0% {
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}