@charset "utf-8";

* {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  width: 1000px;
  display: flex;
}

#kanban img,#human img {
  width: 100%;
}

h2,.button{
  text-align: center;
}

h2 {
  margin: 64px 0;
}

.button {
  margin: 64px auto;
  position: relative;
  width: 150px;
}

button {
  padding: 8px;
  border-radius: 30px;
  width: 150px;
  font-size: 16px;
}

#kyoto {
  position: absolute;
  top: 0;
  left: 0;
}
#akita {
  position: absolute;
  top: 60px;
  left: 0;
}
#sendai {
  position: absolute;
  top: 120px;
  left: 0;
}
#special {
  position: absolute;
  top: 180px;
  left: 0;
}

button:hover {
  background-color: gray;
  color: #fff;
}

.menu {
  width: 20%;
  height: 600px;
  background-color: burlywood;
}

#human {
  width: 200px;
  position: absolute;
  top: calc(100% - 200px);
  left:400px;
  z-index: 1;
}

#kanban {
  width: 300px;
  margin: 0 auto;
  padding: 32px;
}

.screen {
  width: 80%;
  height: 800px;
  overflow: hidden;
  position: relative;
}

#bg {
  background-color: lightblue;
  height: 500px;
  width: 100%;
  position: relative;
}

#home {
  background-color: gray;
  height: 100px;
}

#pic {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.shinkansen {
  position: absolute;
  top: calc(100% - 230px);
  left: 1000px;
  z-index: 2;
  width: 1600px;
}