@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');


html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #252525;
  background-color: #dddcd6;
  height: 100svh;
}

@media (max-width: 767.98px) {
  body {
    font-size: 0.875rem;
  }
}

*{
  box-sizing: border-box;
}

.wrapper{
  width: 80%;
  margin: auto;
}

a {
  display: block;
  position: relative;
  color: #252525;
  text-decoration: none;
  width: 100%;
  max-width: 450px;
  margin: 60px auto;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #252525;
  font-weight: bold;
  
}

a:after{
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  content: "\f054";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  font-size: 0.875rem;
}