/* _setting CSS */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,900|Noto+Serif+JP:400,900&display=swap&subset=japanese");
/*
* base
*/
/* ------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;900&display=swap");
html {
  font-size: 10px;
}

body {
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h2, h3, h4 {
  font-weight: normal;
}

p {
  line-height: 1.5;
  font-weight: 100;
}

/* --btn----------------------------------------------------------------------- */
/*------------------######################################### 
----------------------------
----------------------------
min-width: 768px
----------------------------
--------------------#########################################*/
@media screen and (min-width: 768px) {
  .inner {
    width: 1050px;
    margin: 0 auto;
  }

  .sp {
    display: none !important;
  }

  .pc {
    display: initial;
  }

  /* --content_wrap----------------------------------------------------------------------- */
}
/*------------------######################################### 
----------------------------
----------------------------
max-width: 767px
----------------------------
--------------------#########################################*/
@media screen and (max-width: 767px) {
  .inner {
    width: 100%;
    padding: 2.66667vw;
  }

  .sp {
    display: initial;
  }

  .pc {
    display: none !important;
  }

  /* --content_wrap----------------------------------------------------------------------- */
}
