/**
 * @Author: Your name
 * @Date:   2023-09-26 15:42:00
 * @Last Modified by:   Your name
 * @Last Modified time: 2023-09-27 16:14:24
 */
/* reset&ベース
----------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

@media only screen and (min-width: 1024px) {
  html {
    font-size: 1.33333vw;
  }
}

@media only screen and (max-width: 1023px) {
  html {
    font-size: 2.66667vw;
  }
}

body,
html {
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
/* reset&ベースここまで
----------------------------------------*/
main {
  position: relative;
  z-index: 0;
}


button, input, select, textarea {
  font-family: inherit;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

select::-ms-expand {
  display: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

a {
  outline: none;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}

picture {
  display: block;
}

main {
  display: block;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}