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

/* CTAボタン */
.button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 43.33%;
  margin: 0 auto;
}
.button a{
  display: block;
  line-height: 1;
  transition: all 0.3s ease;
  opacity: 1;
}
.button a:hover{
  opacity: 0.5;
}
.button01{
  bottom: 4.8vw;
}
.button02{
  bottom: 4.8vw;
}
.button03{
  bottom: 4.8vw;
}
@media(min-width:1001px){
  .button01 {
    bottom: 48px;
  }
  .button02 {
    bottom: 48px;
  }
  .button03 {
    bottom: 48px;
  }
}

/* フッター */
.footer {
  border-top: #2fa657 3px solid;
  margin: 0;
  padding: 4vw 0;
  text-align: center;
}
.footer p{
  color:#000;
  font-size: clamp(12px, 2vw, 20px);
  font-family: system-ui;
  font-weight: 300;
  line-height: 1.5;
}
.footer p.-sub{
  color:#909090;
  font-size: clamp(10px, 1.7vw, 17px);
  margin-top: 1em;
}
.footer a{
  text-decoration: none;
}
.footer .adress{
  max-width: clamp(360px, 53vw, 530px);
  height: auto;
}
@media(min-width:1001px){
  .footer {
    padding: 40px 0;
  }
  .footer p{
    font-size: 20px;
  }
  .footer p.-sub{
    font-size: 17px;
  }
  .footer .adress{
    max-width: 530px;
    height: auto;
  }
}