@charset "utf-8";
/******************************************************

        PCサイト用

******************************************************/
@media screen and (min-width: 768px), print {


/******************************************************/
/* elements  */
/******************************************************/
* {
    margin: 0;
    padding: 0;
}
html {
    font-size: 10px;
}
body {
    background: #f4f4f4;
    color: #383838;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.1;
    letter-spacing: 0.024em;
    text-align: left;
    font-family: "Momo Trust Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
p {
    font-size: 16px;
    text-align: justify;
}


/******************************************************/
/* header  */
/******************************************************/
header {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100dvh;
}
header #logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.12em;
}
header #logo strong {
    display: block;
    margin-bottom: 20px;
}
header #logo img {
    width: 450px;
    height: auto;
    aspect-ratio: 300 / 50;
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.9);
    animation: logoview 3s 1s ease-out forwards;
}
@keyframes logoview {
    0%  {opacity: 0;}
    100%  {opacity: 1; transform: translate3d(0, 0, 0) scale(1);}
}
header #announce p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1;
    text-align: center;
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.9);
    animation: logoview 3s 1s ease-out forwards;
}


}