@import url("./_variables.css");
@import url("./_reset.css");

@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900");

html {
  scroll-behavior: smooth;
}
body {
  color: var(--text-color);
  line-height: 1.5;
  font-size: var(--font-size-base);
  -webkit-font-smoothing: antialiased;
  font-family: "Jost", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, Meiryo,
    sans-serif;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.025em;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  margin: 0;
  font-size: var(--font-size-xl);
  font-feature-settings: "palt" 1;
}

/* container */
.container {
  margin: auto;
  box-sizing: border-box;
  padding-inline: 14px;
  max-width: 100%;
  min-width: 100%;
}

/* @mixin mobile() */
@media screen and (max-width: 769px) {
  .container {
    max-width: 100%;
    min-width: 100%;
  }
}

/* @mixin tablet() */
@media screen and (min-width: 769px) {
  .container {
    width: var(--tablet);
    min-width: var(--tablet);
  }
}

/* @mixin desktop() */
@media screen and (min-width: 960px) {
  .container {
    width: var(--desktop);
    min-width: var(--desktop);
  }
}

/* @mixin widescreen() */
/* @media screen and (min-width: 1125px) {
  .container {
    width: var(--widescreen);
    min-width: var(--widescreen);
  }
} */

/* responsive「 */
/* @mixin mobile() */
@media screen and (max-width: 769px) {
  *.mobile {
    display: inherit;
  }

  *.no-mobile {
    display: none;
  }

  *.tablet {
    display: inherit;
  }

  *.no-tablet {
    display: none;
  }

  *.desktop {
    display: inherit;
  }

  *.no-desktop {
    display: none;
  }
  *.widescreen {
    display: inherit;
  }

  *.no-widescreen {
    display: none;
  }
}

/* @mixin tablet() */
@media screen and (min-width: 769px) {
  *.mobile {
    display: none;
  }

  *.no-mobile {
    display: inherit;
  }

  *.tablet {
    display: inherit;
  }

  *.no-tablet {
    display: none;
  }

  *.desktop {
    display: inherit;
  }

  *.no-desktop {
    display: none;
  }

  *.widescreen {
    display: inherit;
  }

  *.no-widescreen {
    display: none;
  }
}

/* @mixin desktop() */
@media screen and (min-width: 960px) {
  *.mobile {
    display: none;
  }

  *.no-mobile {
    display: inherit;
  }

  *.tablet {
    display: none;
  }

  *.no-tablet {
    display: inherit;
  }

  *.desktop {
    display: inherit;
  }

  *.no-desktop {
    display: none;
  }

  *.widescreen {
    display: inherit;
  }

  *.no-widescreen {
    display: none;
  }
}

/* @mixin widescreen() */
@media screen and (min-width: 1125px) {
  *.mobile {
    display: none;
  }

  *.no-mobile {
    display: inherit;
  }

  *.tablet {
    display: none;
  }

  *.no-tablet {
    display: inherit;
  }

  *.desktop {
    display: none;
  }

  *.no-desktop {
    display: inherit;
  }

  *.widescreen {
    display: inherit;
  }

  *.no-widescreen {
    display: none;
  }
}
