/*
buzzlyCore is a private css framework that is mainly for businesses.
Last Updated:202209
Author: buzzlyhan@gmail.com itami.info
*/
/*
buzzlyCore is a private css framework that is mainly for businesses.
Last Updated:202209
Author: buzzlyhan@gmail.com itami.info
*/
/*
Buzzly is a private css framework that is mainly for businesses.
Last Updated:202209
Author: buzzlyhan@gmail.com itami.info
*/
/*
Buzzly is a private css framework that is mainly for businesses.
Last Updated:202209
Author: buzzlyhan@gmail.com itami.info
*/
/*
	breakpoints
  	xs: 1,
  	sm: 576px,
  	md: 768px,
  	lg: 992px,
  	xl: 1200px,
  	xxl: 1400px
*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, 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;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

main {
  display: block;
}

/*
Buzzly is a private css framework that is mainly for businesses.
Last Updated:202209
Author: buzzlyhan@gmail.com itami.info
*/
html {
  font-family: "Courier new", Courier, monospace;
}

body {
  font-size: 100%;
  background-color: #fff;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

input, select {
  vertical-align: middle;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

p {
  margin: 0;
  padding: 0;
}

/*common*/
/*
Buzzly is a private css framework that is mainly for businesses.
Last Updated:202209
Author: buzzlyhan@gmail.com itami.info
*/
.html_single .rootWrapp {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "a" "b" "c";
  grid-gap: 0px;
  height: 100%;
}
.html_single .rootWrapp header {
  grid-area: a;
}
.html_single .rootWrapp main {
  grid-area: b;
}
.html_single .rootWrapp footer {
  grid-area: c;
}
.html_single .rootWrapp main {
  width: 100%;
  height: 100%;
  margin: 0px auto;
  background: #f6f7f9;
}

.html_two .rootWrapp {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 0.7fr 0.3fr auto;
  grid-template-areas: "a" "b" "c" "d";
  grid-gap: 0px;
  height: 100%;
}
.html_two .rootWrapp header {
  grid-area: a;
}
.html_two .rootWrapp main {
  grid-area: b;
}
.html_two .rootWrapp aside {
  grid-area: c;
}
.html_two .rootWrapp footer {
  grid-area: d;
}
.html_two .rootWrapp main {
  width: 100%;
  margin: initial;
  max-width: initial;
  background: #f6f7f9;
}

@media screen and (min-width: 768px) {
  .html_single .rootWrapp {
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "a" "b" "c";
    grid-gap: 0;
    margin: auto;
    height: 100%;
  }
  .html_single .rootWrapp header {
    grid-area: a;
  }
  .html_single .rootWrapp main {
    grid-area: b;
  }
  .html_single .rootWrapp footer {
    grid-area: c;
  }
  .html_two .rootWrapp {
    display: grid;
    grid-template-columns: 0.8fr 0.2fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "a a" "b c" "d d";
    grid-gap: 5px;
    margin: auto;
    height: 100%;
  }
  .html_two .rootWrapp header {
    grid-area: a;
  }
  .html_two .rootWrapp main {
    grid-area: b;
  }
  .html_two .rootWrapp aside {
    grid-area: c;
  }
  .html_two .rootWrapp footer {
    grid-area: d;
  }
}
/*
Buzzly is a private css framework that is mainly for businesses.
Last Updated:202209
Author: buzzlyhan@gmail.com itami.info
*/
.base_icon {
  display: inline-block;
  border-radius: 3px;
  padding: 2px 4px;
  width: 1.2em;
  text-align: center;
  vertical-align: baseline;
  margin-right: 10px;
  background-color: #f18b2b;
  color: #fff;
  font-size: 16px;
  margin-top: 4px;
}

.plate {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  width: 90%;
  margin: 20px auto;
  overflow: hidden;
  padding: 30px 0;
}

.base_button {
  position: relative;
  display: inline-block;
  padding: 0.25em 0.5em;
  text-decoration: none;
  color: #FFF;
  background: #03A9F4;
  border: solid 1px #0f9ada;
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.base_button:hover {
  background: rgb(98, 205, 252);
  transition-duration: 0.4s;
}

html:has(#hamburger_menu.opened) {
  overflow: hidden;
}

#hamburger_menu {
  width: fit-content;
  height: fit-content;
  background: transparent;
}

#hamburger_menu.opened {
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6666666667);
  transition: background 0.8s;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-end;
}

#hamburger_menu.opened .menu_inner {
  padding: 16px;
  width: 20vw;
  height: 100vh;
  transition: width 0.3s;
  background: var(--light_base_color);
  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--main_color);
  overflow: auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  row-gap: 16px;
}

#hamburger_menu .menu_inner {
  background: transparent;
  width: 50px;
}

#hamburger_menu .menu_head {
  display: flex;
  justify-content: flex-end;
}

#hamburger_menu .menu_trigger,
#hamburger_menu .menu_trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

#hamburger_menu .menu_trigger {
  position: relative;
  width: 50px;
  height: 44px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}

#hamburger_menu .menu_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
}

#hamburger_menu .menu_trigger span:nth-of-type(1) {
  top: 0;
  background: var(--light_base_color);
}

#hamburger_menu .menu_trigger span:nth-of-type(2) {
  top: 20px;
  background: var(--light_base_color);
}

#hamburger_menu .menu_trigger span:nth-of-type(3) {
  bottom: 0;
  background: var(--light_base_color);
}

#hamburger_menu.opened .menu_trigger span:nth-of-type(1) {
  transform: translateY(20px) rotate(-45deg);
  background: var(--main_color);
}

#hamburger_menu.opened .menu_trigger span:nth-of-type(2) {
  opacity: 0;
  background: var(--main_color);
}

#hamburger_menu.opened .menu_trigger span:nth-of-type(3) {
  transform: translateY(-20px) rotate(45deg);
  background: var(--main_color);
}

#hamburger_menu .menu_body {
  display: none;
}

#hamburger_menu.opened .menu_body {
  display: block;
}

#hamburger_menu.opened .menu_body > div {
  overflow-y: auto;
}

#hamburger_menu .menu_blank {
  width: 0px;
}

#hamburger_menu.opened .menu_blank {
  width: 100vw;
}

#grouping_menu {
  display: flex;
  flex-direction: column;
}

#grouping_menu .menu_section {
  display: flex;
  flex-direction: column;
}

#grouping_menu .menu_section nav h2 {
  color: var(--font_positive_light);
  font-size: 1em;
  font-weight: bold;
  padding: 8px;
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

#grouping_menu .menu_section nav h2:hover {
  background: #efefef;
}

#grouping_menu .menu_section nav ul li {
  margin-left: 16px;
  margin-top: 8px;
}

#grouping_menu .menu_section nav ul {
  display: none;
  height: 0px;
}

#grouping_menu .menu_section nav ul.expanded {
  display: block;
  height: fit-content;
  margin-bottom: 32px;
}

#grouping_menu .menu_section nav,
#grouping_menu .menu_section i {
  color: var(--font_positive_light);
  font-size: 1em;
}

#grouping_menu .menu_section a {
  cursor: pointer;
}

#grouping_menu .menu_section a:hover {
  color: var(--accent_color);
}

.login_user_wrapper {
  color: var(--font_positive_light);
  font-size: 1em;
  font-weight: 900;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.0352941176);
  padding: 8px;
}

.login_user_wrapper i {
  color: var(--font_positive_light);
  font-size: 1.2em;
  font-weight: 900;
}

.button.main {
  border-radius: 5px;
  background: var(--main_color);
  padding: 4px 16px;
  color: var(--font_negative_light);
  cursor: pointer;
  text-align: center;
  border: 1px solid var(--dark_main_color);
}

#vue_base {
  height: 100%;
  width: 100%;
}

/************/
/*desktop*/
/************/
@media screen and (min-width: 768px) {
  main {
    width: 100%;
  }
  #hamburger_menu.opened {
    grid-template-columns: 0.7fr 0.3fr;
  }
}
/*
Buzzly is a private css framework that is mainly for businesses.
Last Updated:202209
Author: buzzlyhan@gmail.com itami.info
*//*# sourceMappingURL=myStyle.css.map */