@charset "UTF-8";
/* CSS Document */
html {
	font-size: 62.5%; /* 1rem = 10px */
}
body {
	font-size: 100%; /* htmlのサイズをそのまま継承 = 10px */
	color: var(--text-color);
	font-family: "Noto Sans JP", serif;
	letter-spacing: 0.04em;
	line-height: 1.55;
}
header{
	text-align: center;
}
.wrapper {
  width: 100%;
	max-width: 500px;
  margin: 0 auto;
  position: relative;
  background-color: #FFF;/*都度調整してください*/
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 26px 0px;/*都度調整してください*/
	overflow:hidden;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
a {
  cursor: pointer;
  display: block;
}
small {
  display: block;
	text-align-last: center;
}
/*CTAエリア*/
.ctaArea a {
  width: 90%;
  margin: 0 auto;
}
/*footerエリア*/
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
}

@media screen and (min-width: 500px) {
	body {
  	background-image: url(../img/body_bg.webp);
    background-color: #f1f1f1;
    background-size: 20%;
		background-repeat: repeat;
}
}