@charset "UTF-8";
/* CSS Document */
/*----- flexbox -----*/
*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*----------------------------------------------------------------------
//////////■■■■base style■■■■//////////
----------------------------------------------------------------------*/
:root {
  --black: #4e4e4e;
  --purple: #8578c1;
  --font_size_16: clamp(1.3rem, 1.6vw, 1.6rem);
  --font_size_26: clamp(1.6rem, 2.6vw, 2.6rem);
  --font_size_36: clamp(1.8rem, 3.4vw, 3.6rem);
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;
  --Montserrat: "Montserrat", serif;
}

html {
  font-size: 62.5%;
}

body {
  background: #fff;
  color: #4e4e4e;
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0em;
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
  min-width: 100%;
  width: 100%;
}

a {
  color: #fff;
  text-decoration: none;
}

em {
  font-style: normal;
}

img,
svg {
  display: block;
  width: 100%;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}/*# sourceMappingURL=base.css.map */