html, body{
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: #ffffff;
  font-family: "Hiragino Kaku Gothic Std","Hiragino Sans",sans-serif;
  font-weight: 800;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;

  background: #ffd900;
  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 1000;
}

.wrap {
  margin-top: 60px;
  width: 100%;
}

.wrap img {
  width: 100%;
  display: block;
}

.first-image {
  width: 100%;
  position: relative;
}

.first-image img {
  width: 100%;
  position: block;
}

.title {
  position: absolute;
  top: 8%;
  left: 70%;
  writing-mode: vertical-rl;
  font-size: 30px;
  letter-spacing: 2px;
  color: rgb(78, 48, 8);
  font-family: "Tsukushi B Round Gothic" , "筑紫B丸ゴシック",sans-serif;
}

.second-image {
  position: relative;
  width: 100%;
}

.second-image img {
  width: 100%;
  display: block;
}

.text1 {
  position: absolute;

  top: 201%;
  left: 21%;

  font-size: 20px;
  color: #000000;

  font-family: "Hiragino Sans", sans-serif;
  text-align: center;
}

.second-image {
  position: relative;
  width: 100%;
}

.second-image img {
  width: 100%;
  display: block;
}

.text2 {
  position: absolute;

  top: 312%;
  left: 40%;

  font-size: 25px;
  color: #000000;

  font-family: "Hiragino Sans", sans-serif;

  text-decoration: underline;
}

.second-image {
  position: relative;
  width: 100%;
}

.second-image img {
  width: 100%;
  display: block;

  transition: 0.3s;
}

.text2:hover {
  color: rgb(255, 255, 255);
}

.text3 {
  position: absolute;

  top: 429%;
  left: 30%;

  font-size: 25px;
  color: #000000;

  font-family: "Hiragino Sans", sans-serif;

  text-decoration: underline;

  transition: 0.3s;
}

.text3:hover {
  color: #ffffff;
}

.text4 {
  position: absolute;

  top: 236%;
  left: 63%;

  font-size: 13px;
  color: #ffffff;

  font-family: "Tsukushi B Round Gothic" , "筑紫B丸ゴシック",sans-serif;
}

.text5 {
  position: absolute;

  top: 341%;
  left: 10%;

  font-size: 13px;
  color: #000000;

  font-family: "Tsukushi B Round Gothic" , "筑紫B丸ゴシック",sans-serif;
}

.text6 {
  position: absolute;

  top: 523%;
  left: 60%;

  font-size: 13px;
  color: #000000;

  text-align: center;
  font-family: "Tsukushi B Round Gothic" , "筑紫B丸ゴシック",sans-serif;
}

.hamburger {
  position: absolute;
  right: 16px;
  width: 32px;
  height: 32px;
  cursor: pointer;

  transition: transform 0.3s;
}

.hamburger img {
  width: 100%;
}

.hamburger.active {
  transform: rotate(90deg);
}

.menu {
  position: fixed;
  top: 60px;
  right: -200px;
  width: 200px;
  background: #fff;

  transition: 0.3s;
  box-shadow: -2px 0 8px rgba(0,0,0,0.1);
}

.menu a {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: #000000;
  border-bottom: 1px solid #eee;
}

.menu.active {
  right: 0;
}
