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

/*----------------------------------------------------------------------
//////////■■■■base style■■■■//////////
----------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

:root {
  --color_red: #de0000;
  --color_brown: #935842;
  --color_yellow: #ffe680;
  --color_g_brown: linear-gradient(to right, #551807, #812b14, #551807);
  --color_g_gold: linear-gradient(to right, #cfa150, #dac477, #cfa150);
  --color_g_gold_t: linear-gradient(to top, #cfa150, #dac477, #cfa150);
  --color_g_red: linear-gradient(to right, #5e0000, #970000, #5e0000);
  --font_base: clamp(1.6rem, 2.2vw, 2.2rem);
}

body {
  background: #fff;
  color: #000;
  font-size: var(--font_base);
  font-weight: 400;
  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.85;
  overflow-x: hidden;
  position: relative;
  min-width: 100%;
  width: 100%;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}/*# sourceMappingURL=base.css.map */