@charset "UTF-8";
:root{
  --outer-height: 100vh;
}
.wrapper {
  visibility: hidden;
}
html.wf-active .wrapper,
html.loading-delay .wrapper{
  visibility: visible;
  background:#FF6;
}

body {
	background:#FF6;
	color: rgba(0, 0, 0, 0.7);
	font-feature-settings: "palt";
	line-height: 1.6;
}

#main .inner{
display:flex;
height: var(--outer-height);
justify-content: center;
align-items: center;
padding:0 4vw;
}
.title__copy{
margin-top:1rem;
font-size:1.2rem;
font-weight:600;
}
@media screen and (min-width: 768px) {
.title__logo{
width:30vw;
}
}