@charset "utf-8";
/* ========================
Media Queries
======================== */
@media screen and (max-width: 1440px) {}

@media screen and (max-width: 1280px) {}

@media screen and (max-width: 1080px) {}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 979px) {}

@media screen and (max-width: 919px) {}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 768px) and (max-height: 1024px) {}

@media screen and (max-width: 767px) {
  /* ========================
  layout
  ======================== */
  /* ------------------------
  grid
  ------------------------ */
  .grid-m-1 {
    clear: both;
    float: none;
    width: 100%;
  }

  .grid-m-2 {
    width: 50%;
  }

  .grid-m-3 {
    width: 33.33333%;
    width: calc(100% / 3);
  }

  .grid-m-4 {
    width: 25%;
  }

  .grid-m-5 {
    width: 20%;
  }

  .grid-m-6 {
    width: 16.66666%;
    width: calc(100% / 6);
  }

  .grid-m-7 {
    width: 14.28571%;
    width: calc(100% / 7);
  }

  .grid-m-8 {
    width: 12.5%;
  }

  .grid-m-9 {
    width: 11.11111%;
    width: calc(100% / 9);
  }

  .grid-m-10 {
    width: 10%;
  }

  .grid-m-12 {
    width: 8.33333%;
    width: calc(100% / 12);
  }
}

@media screen and (max-width: 567px) {
  /* ========================
  layout
  ======================== */
  /* ------------------------
  grid
  ------------------------ */
  .grid-s-1 {
    clear: both;
    float: none;
    width: 100%;
  }

  .grid-s-2 {
    width: 50%;
  }

  .grid-s-3 {
    width: 33.33333%;
    width: calc(100% / 3);
  }

  .grid-s-4 {
    width: 25%;
  }

  .grid-s-5 {
    width: 20%;
  }

  .grid-s-6 {
    width: 16.66666%;
    width: calc(100% / 6);
  }

  .grid-s-7 {
    width: 14.28571%;
  }

  .grid-s-8 {
    width: 12.5%;
  }

  .grid-s-9 {
    width: 11.11111%;
    width: calc(100% / 9);
  }

  .grid-s-10 {
    width: 10%;
  }

  .grid-s-12 {
    width: 8.33333%;
    width: calc(100% / 12);
  }
}

@media screen and (max-width: 360px) {}

@media screen and (max-width: 320px) {
  body {
    min-width: 320px;
  }
}

@media screen and (max-height: 414px) {}

@media screen and (max-width: 568px) and (max-height: 320px) {}