@charset "utf-8";
/* ==========================
  SVGアニメーション
========================== */
/* SVGでの手描きアニメーション */
.st0,
.st1,
.st2,
.st3,
.st4,
.st5,
.st6,
.st7,
.st8,
.st9,
.st10,
.st11,
.st12,
.st13,
.st14,
.st15,
.st16,
.st17,
.st18,
.st19,
.st20,
.st21,
.st22,
.st23,
.st24,
.st25,
.st26 {
  fill: none;
  stroke: #fff;
  stroke-width: 11;
  stroke-miterlimit: 10;
  stroke-dasharray: 200px; /* ここは文字の線の長さによって変わります */
  stroke-dashoffset: 200px; /* ここは文字の線の長さによって変わります */
}


/* ==========================
  ローディング
========================== */
.loading {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: 100;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading-box {
    width: 100%;
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.loading_in {
    width: 51.59vw;
    aspect-ratio: 780 / 285;
}
.loading svg{
}
@media screen and (max-width: 1024px) {
    .loading_in {
        width: 80%;
    }
}
@media screen and (max-width: 768px) {
    .loading_in {
        max-width: 500px;
        width: 95%;
    }
}