/*reset*/
@import url("https://fonts.googleapis.com/css2?family=Cinzel&text=0123456789");
/* line 3, ../scss/_reset.scss */
*, *:after, *:before {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
/* カラー提案 */
.main_bg {
  /* background-color: #5D5855; */
  /* background-color: #d9e2ef; */
  /* background-color: #b3e1e0; */
  /* background-color: #b2d8eb; */
  background: linear-gradient(90deg, #7fb6b6, #eafbfa);
  background-size: 200% 200%;
  animation: bggradient 10s ease infinite;
}
@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* line 10, ../scss/_reset.scss */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* line 30, ../scss/_reset.scss */
img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

/* line 40, ../scss/_reset.scss */
html {
  font-size: 100%;
}

/* line 43, ../scss/_reset.scss */
body {
  line-height: 1;
}

/* line 47, ../scss/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 52, ../scss/_reset.scss */
nav ul {
  list-style: none;
}

/* line 56, ../scss/_reset.scss */
blockquote, q {
  quotes: none;
}

/* line 60, ../scss/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 66, ../scss/_reset.scss */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none !important;
  color: inherit;
  text-decoration: none;
}

/* change colours to suit your needs */
/* line 78, ../scss/_reset.scss */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
/* line 85, ../scss/_reset.scss */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

/* line 92, ../scss/_reset.scss */
del {
  text-decoration: line-through;
}

/* line 96, ../scss/_reset.scss */
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/* line 100, ../scss/_reset.scss */
dfn {
  font-weight: 400;
  font-style: normal;
}

/* line 105, ../scss/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 109, ../scss/_reset.scss */
input, select {
  vertical-align: middle;
}

/* line 112, ../scss/_reset.scss */
li {
  list-style: none;
}

/* line 115, ../scss/_reset.scss */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}