@charset "utf-8";

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight:400;
  font-style: normal;
}
.outfit {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight:400;
  font-style: normal;
}

body {
    background-color: #f1f1f1;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    width: 50%;
}
p.information_txt {
    text-align: center;
    font-size: 250%;
    margin: 120px auto 0;
    color: #3f3c3c;
    font-weight: 400;
    /* display: inline-block; */
    letter-spacing: 30%;
}

@media screen and (max-width: 768px) {
	/* 768px以下に適用されるCSS */
    .container {
    width: 80%;
}
p.information_txt {
    font-size: 100%;
    margin: 40px auto 0;
    letter-spacing: 30%;
}
}