@charset "utf-8";
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  width:900px;
  margin: 0 auto;
}
@media(max-width:900px){
  body {
    width: 100%;
  }
}
img {
  width: 100%;
}
.cta{
  position: relative;
}

/* CTAボタン */
.button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 67.3%;
  margin: 0 auto;
}
.button a{
  display: inline-block;
  background: #000000;
  color: #FFF;
  line-height: 1;
  height:14.5vw;
  max-height: 132px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.button01{
  top: 5.8vw;
}
.button02{
  bottom: 30vw;
}
.button03{
  top: 40.8vw;
}
@media(min-width:901px){
  .button01 {
    top: 52px;
  }
  .button02 {
    bottom: 269px;
  }
  .button03 {
    top: 368px;
  }
}

/* フッター */
.footer {
  background-color: #fff200;
  border-top: #000 solid 0.8vw;
  border-bottom: #000 solid 0.8vw;
  padding-top: 4vw;
  padding-bottom: 4vw;
  text-align: center;
}
.footer p{
  font-size: 3.6vw;
  font-family: system-ui;
  font-weight: 300;
  line-height: 1.5;
}
.footer a{
  text-decoration: underline;
}
@media(min-width:901px){
  .footer {
    border-top: #000 solid 7px;
    border-bottom: #000 solid 7px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
    .footer p{
    font-size: 34px;
  }
}