@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Baloo+2&family=Comfortaa&family=M+PLUS+Rounded+1c:wght@300&family=Noto+Sans+JP:wght@400;700&display=swap");

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  max-width: 470px;
  margin: 0 auto;
}
section{
  background-color: #FFF;
}
img, a{
  display: block;
  width: 100%;
}
a{
  transition: 0.5s ease;
}
a:hover{
  transform: scale(1.03);
  opacity: 1;
}
a:hover img{
  opacity: 1;
}
/* header */
.header{
  display: flex;
  padding: 10px;
  justify-content: space-between;
  align-items: center;
}
.header img[src*="logo"]{
  width: 42.5%;
  height: fit-content;
  aspect-ratio: 191 / 22;
  object-fit: contain;
}
.header a{
  width: 50%;
  height: fit-content;
}
/* fv */

/* time */
.fv_wrapper{
  position: relative;
}
.fv_wrapper a{
  position: absolute;
  bottom: 2.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
}
.fv_wrapper a img{
  transition: 0.5s ease;
}
.fv_wrapper a:hover img{
  transform: scale(1.03);
}
/* footer */
footer{
  padding: 25px 0;
  background: #FFF;
  color: #999;
  text-align: center;
  border-bottom: none;
}