@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}
html {
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "メイリオ", "Meiryo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
}

@media all and (-ms-high-contrast: none) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}
@media all and (-ms-high-contrast: active) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}
body {
  margin: 0;
  font-size: 14px;
}

h2 {
  text-align: left;
  font-size: 18px;
}

a {
  text-decoration: none;
  color: black;
  transition: all 0.2s;
}

img {
  width: 100%;
}

hr {
  display: block;
  width: 100%;
  height: 1px;
  background-color: gray;
  border: 0;
}

input[type=text]:focus, input[type=number]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=password]:focus, textarea:focus, select:focus {
  outline: none;
  border: 1px solid #F7852D;
}

textarea {
  resize: vertical;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.header {
  text-align: center;
  background-color: #F7852D;
  color: #fff;
  box-shadow: 0 2px 6px rgba(247, 133, 45, 0.5019607843);
}
@media screen and (max-width:480px) {
  .header {
    height: 50px;
  }
}
.header .logo {
  margin: 5px 0;
}
@media screen and (max-width:480px) {
  .header .logo {
    margin: 10px 0;
  }
}
.header .logo img {
  width: 70%;
  vertical-align: middle;
}
@media screen and (max-width:480px) {
  .header .logo img {
    width: 35%;
  }
}
.header .avatar {
  text-align: right;
  position: relative;
}
.header .avatar img {
  width: 40px;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4666666667);
}
@media screen and (max-width:480px) {
  .header .avatar img {
    position: absolute;
    right: 0;
    top: -43px;
    width: 35px;
  }
}
.header .back-manager {
  text-align: right;
}
.header .back-manager br {
  display: none;
}
@media screen and (max-width:480px) {
  .header .back-manager {
    position: absolute;
    right: 5px;
    font-size: 10px;
  }
  .header .back-manager br {
    display: block;
  }
}
.header .navbar-nav {
  display: flex;
  flex-direction: row-reverse;
  list-style: none;
  line-height: 18px;
  font-size: 14px;
}
.header .navbar-nav .nav-link {
  display: block;
  padding: 0.5rem;
}
.header .navbar-dropdown {
  position: absolute;
  right: 0;
  top: 33px;
  border-radius: 5px;
  padding: 15px 0;
  background: white;
  font-size: 14px;
  text-align: left;
  list-style: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4666666667);
  z-index: 99999;
}
@media screen and (max-width:480px) {
  .header .navbar-dropdown {
    top: -22px;
  }
}
.header .navbar-dropdown::before {
  content: "";
  position: absolute;
  right: 18px;
  top: -4px;
  width: 6px;
  height: 6px;
  background: white;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(-45deg);
}
@media screen and (max-width:480px) {
  .header .navbar-dropdown::before {
    right: 14px;
  }
}
.header .navbar-dropdown li {
  padding: 8px 60px 8px 15px;
  transition: all 0.2s;
  cursor: pointer;
}
.header .navbar-dropdown li:hover {
  background: #F7852D;
}
.header .hamburger-menu {
  display: none;
}
@media screen and (max-width:480px) {
  .header .hamburger-menu {
    display: block;
  }
}
.header .menu-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  height: 30px;
  width: 30px;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.header .menu-btn span, .header .menu-btn span::before, .header .menu-btn span::after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.header .menu-btn span::before {
  bottom: 8px;
}
.header .menu-btn span::after {
  top: 8px;
}
.header #menu-btn-check {
  display: none;
}
.header #menu-btn-check:checked ~ .menu-content {
  right: 0;
}
.header #menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
.header #menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
.header #menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
.header .menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  z-index: 80;
  background-color: rgba(33, 33, 33, 0.9098039216);
  transition: all 0.5s;
}
.header .menu-content ul {
  padding: 50px 10px 0;
}
.header .menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.header .menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 14px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.header .menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width:820px) {
  .main {
    height: 100%;
  }
}
.main .page_tab {
  padding-bottom: 20px;
}
.main .page_tab ul {
  list-style: none;
  display: flex;
}
.main .page_tab ul li {
  width: 85px;
  padding: 10px 0;
  margin-right: 8px;
  text-align: center;
  border-bottom: 2px solid #F7852D;
}
.main .page_tab ul li.open {
  background: #F7852D;
  border-bottom: 2px solid #F7852D;
}
.main .page_tab ul li.open a {
  color: white;
  font-weight: bold;
}
.main .page_tab ul li.close {
  border-bottom: 2px solid rgba(189, 189, 189, 0.6666666667);
}
.main .page_tab ul li.close a {
  color: rgba(189, 189, 189, 0.6666666667);
}

.sidebar {
  width: 240px;
  border-right: 1px solid #eee;
  margin-right: 10px;
}
@media screen and (max-width:820px) {
  .sidebar {
    width: 200px;
    margin-right: 20px;
  }
}
.sidebar h3 {
  text-align: left;
  padding: 5px 0;
  border-bottom: 1px solid;
}
.sidebar a {
  padding: 5px;
}
.sidebar a:hover {
  color: #fff;
  background-color: #F7852D;
}

.footer {
  min-height: 70px;
  line-height: 40px;
  text-align: center;
  background-color: #F7852D;
  padding: 5px;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  line-height: 30px;
}

.contents {
  margin: 10px 0 65px;
  min-height: calc(100vh - 190px);
}

.inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 10px;
}

.docs, .edit {
  max-width: 800px;
  margin: 0 auto;
}
.docs h1, .edit h1 {
  margin: 1rem 0 2rem;
  text-align: center;
}
.docs h2, .docs h3, .edit h2, .edit h3 {
  text-align: left !important;
  padding-bottom: 0 !important;
}

.docs a {
  text-decoration: underline;
  color: #F7852D;
}
.docs img {
  width: -moz-min-content;
  width: min-content;
  max-width: 600px;
}
@media screen and (max-width:480px) {
  .docs img {
    width: 100%;
  }
}
.docs ol ul {
  list-style-type: disc;
}
.docs .brackets {
  margin-left: 1.5em;
}
.docs .brackets li {
  list-style-type: none;
  counter-increment: cnt;
}
.docs .brackets li::before {
  content: "（" counter(cnt) "）";
  display: inline-block;
  margin-left: -3em;
  width: 3em;
}

.breadcrumb {
  padding: 0 0 10px 20px;
}
@media screen and (max-width:480px) {
  .breadcrumb {
    padding: 0 0 10px 5px;
  }
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  padding: 0;
  margin: 0;
}
.breadcrumb ul li {
  padding-right: 10px;
  padding-bottom: 5px;
  font-size: 0.9rem;
  list-style: none;
  font-size: 14px;
}
@media screen and (max-width:480px) {
  .breadcrumb ul li {
    font-size: 11px;
  }
}
.breadcrumb ul li:first-of-type {
  padding-left: 0;
}
.breadcrumb ul li::after {
  content: "»";
  padding-left: 10px;
  color: rgb(65, 65, 65);
}
.breadcrumb ul li:last-child::after {
  content: "";
}
.breadcrumb ul li a {
  color: #e76b0e;
}
.breadcrumb ul li a.current {
  color: black;
}

.qa-box {
  margin: 0 auto;
}
.qa-box div {
  padding: 10px 0;
  border-bottom: 1px solid #c8c8c8;
}
.qa-box div dt, .qa-box div dd {
  display: flex;
  align-items: baseline;
  margin: 10px 0;
}
.qa-box div dt p {
  margin: 0;
  padding-left: 15px;
  font-weight: bold;
  width: 100%;
}
.qa-box div dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #6699b7;
  width: 2em;
  height: 2em;
}
.qa-box div dd p {
  margin: 0;
  padding-left: 15px;
  width: 100%;
}
.qa-box div dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #F7852D;
  width: 2em;
  height: 2em;
}
.qa-box div:last-of-type {
  border-bottom: none;
}

.terms {
  border-bottom: 1px dotted;
  cursor: pointer;
}

.overview h1 {
  text-align: center;
}
.overview ul {
  font-size: 14px;
  margin-top: 50px;
  padding: 0 10px;
  word-break: keep-all;
}
.overview ul li {
  list-style-type: none;
}
.overview ul li dl {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
@media screen and (max-width:480px) {
  .overview ul li dl {
    flex-direction: column;
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}
.overview ul li dl:before, .overview ul li dl:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 1px;
  top: auto;
  bottom: 0;
  background-color: #F7852D;
}
.overview ul li dl:before {
  opacity: 0.1;
  left: auto;
  right: 0;
  width: calc(100% - 115px);
}
@media screen and (max-width:480px) {
  .overview ul li dl:before {
    width: 0%;
  }
}
.overview ul li dl:after {
  width: 230px;
}
@media screen and (max-width:480px) {
  .overview ul li dl:after {
    width: 100%;
  }
}
.overview ul li dl dt {
  width: 230px;
  padding-left: 10px;
  font-weight: bold;
}
@media screen and (max-width:480px) {
  .overview ul li dl dt {
    width: 100%;
    margin-bottom: 10px;
  }
}
.overview ul li dl dd {
  width: calc(100% - 230px);
  padding-left: 10px;
  margin: 0;
}
@media screen and (max-width:480px) {
  .overview ul li dl dd {
    width: 100%;
  }
}
.overview a {
  text-decoration: underline;
}

#address.overlay > div {
  width: 460px;
  margin: auto;
  margin-top: 5vh;
  background: white;
  padding: 20px;
  max-height: 80vh;
  overflow: scroll;
}
@media screen and (max-width:480px) {
  #address.overlay > div {
    padding: 20px 10px;
    width: calc(100vw - 40px);
  }
}
#address.overlay > div .close::before, #address.overlay > div .close::after {
  background: black;
  right: 0;
  top: 0;
}
#address.overlay > div ul {
  padding: 0 20px;
  cursor: pointer;
}
#address.overlay > div ul li {
  border-bottom: 1px solid;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.6);
}
.overlay-inner {
  max-width: 800px;
  height: 100%;
  background: white;
  overflow: scroll;
  margin: 0 auto;
  padding: 15px;
  position: relative;
}
.overlay .close, .overlay .close::before, .overlay .close::after {
  content: "";
  display: block;
  right: 5px;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.overlay .close {
  background-color: rgba(255, 255, 255, 0);
}
.overlay .close::before {
  top: 5px;
  transform: rotate(45deg);
}
.overlay .close::after {
  top: 5px;
  transform: rotate(-45deg);
}

.loading {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.9333333333);
  z-index: 99999;
  font-size: 20px;
}
.loading.active {
  display: block;
}
.loading .animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  animation: lodanimetion 3000ms ease-out forwards infinite;
}

@keyframes lodanimetion {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
}
.search-group {
  margin-bottom: 0.5rem;
  align-items: center;
}
.search-group label {
  text-align: center;
}
.search-group input[type=checkbox] + label {
  padding-right: 10px;
}

.form-group {
  margin-bottom: 0.5rem;
  align-items: center;
  justify-content: space-between;
}
.form-group-innercol2 {
  flex-basis: calc((100% - 10px) / 2);
  max-width: calc((100% - 10px) / 2);
  position: relative;
}
@media screen and (max-width:480px) {
  .form-group-innercol2 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.form-group-innercol3 {
  flex-basis: calc((75% - 10px) / 3);
  max-width: calc((75% - 10px) / 3);
  position: relative;
  margin-right: 5px;
}
@media screen and (max-width:820px) {
  .form-group-innercol3 {
    flex-basis: calc((90% - 10px) / 3);
    max-width: calc((90% - 10px) / 3);
  }
}
@media screen and (max-width:480px) {
  .form-group-innercol3 {
    flex-basis: 100%;
    max-width: 100%;
    margin-right: 0;
  }
}
.form-group .ex-show::before {
  content: "例）" attr(data-ex);
  position: absolute;
  top: 30px;
  color: #919191;
  left: 10px;
  z-index: 9;
  font-size: 14px;
}
.form-group .ex-show.disabled::before {
  content: "";
}
.form-group .ex-show::after {
  bottom: 2px;
  content: attr(data-unit);
  color: #333333;
  position: absolute;
  right: 2%;
  font-size: 16px;
  font-weight: bold;
}

.form-control {
  display: block;
  width: 100%;
  height: 45px;
  padding: 0 5px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #000;
  background: white;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  box-sizing: border-box;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:valid {
  border: 1px solid #ced4da;
}
.form-control:invalid {
  border: 1px solid red;
}

.help-block {
  padding: 5px 0;
  color: red;
  text-align: center;
}

.text-maincolor {
  color: #F7852D;
}

.text-muted {
  color: #a1a1a1;
}

.text-required {
  color: red;
}

.text-public {
  color: green;
}

.text-private, .text-primary {
  color: blue;
}

.text-pending {
  color: red;
}

.text-underline {
  text-decoration: underline;
}

.icon-verified {
  color: green;
}

.icon-unverified {
  color: red;
}

.icon-pending {
  color: #F7852D;
}

.font-bold {
  font-weight: bold;
}

.small {
  font-size: 80% !important;
  font-weight: 400;
}

.big {
  font-size: 120% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mr-1 {
  margin-right: 1rem;
}

.py-1 {
  padding: 1rem 0;
}

.p-0 {
  padding: 0 !important;
}

.px-1 {
  padding: 0 1rem;
}

.px-2 {
  padding: 0 2rem;
}

.px-3 {
  padding: 0 3rem;
}

.material-icons, .material-icons-outlined {
  width: 24px;
  padding-right: 8px;
}

.alert {
  text-align: center;
}
.alert.alert-success {
  color: green;
  font-size: 14px;
  margin-bottom: 20px;
  margin-top: -20px;
  padding: 5px 0;
  background: #f7ffdc;
}
.alert.alert-warning {
  color: red;
  font-size: 14px;
  margin-bottom: 20px;
  padding: 5px 0;
  background: #f2f2f2;
}

.align-item-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.row > div {
  box-sizing: border-box;
}
.row.gap {
  gap: 10px 0;
}

.pagination {
  list-style: none;
  display: flex;
  margin: 50px auto;
  padding: 0;
}
.pagination li {
  padding: 0 10px;
  font-size: 16px;
  font-weight: bold;
}
.pagination li.active {
  color: red;
}
.pagination li.disabled {
  color: gray;
}

.custom-checkbox input[type=checkbox] {
  display: none;
}
.custom-checkbox label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 35px 3px;
  position: relative;
}
.custom-checkbox label::before {
  content: "";
  border: 1px solid #999999;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -8px;
  border-radius: 3px;
}
.custom-checkbox label::after {
  border-right: 3px solid #F7852D;
  border-bottom: 3px solid #F7852D;
  content: "";
  display: block;
  height: 9px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
.custom-checkbox input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.custom-checkbox label.not_included::after {
  border-right: 3px solid #ffcca4;
  border-bottom: 3px solid #ffcca4;
}

.custom-radio {
  margin: 0.5rem;
}
.custom-radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.custom-radio input[type=radio] + .radio-label:before {
  content: "";
  background: white;
  border-radius: 100%;
  border: 1px solid white;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: -0.2em;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.custom-radio input[type=radio]:checked + .radio-label:before {
  background-color: #F7852D;
  box-shadow: inset 0 0 0 4px white;
}
.custom-radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #F7852D;
}
.custom-radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

#confirm > div {
  width: 460px;
  margin: auto;
  margin-top: 10vh;
  background: white;
  padding: 20px;
  max-height: 80vh;
  overflow: scroll;
}
@media screen and (max-width:480px) {
  #confirm > div {
    padding: 20px 10px;
    width: calc(100vw - 40px);
  }
}
#confirm > div button, #confirm > div input[type=submit] {
  width: 80%;
  padding: 10px;
  border-radius: 10px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-2-3 {
  flex: 0 0 20%;
  max-width: 20%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media screen and (max-width:820px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-1-2 {
    flex: 0 0 12.33333333%;
    max-width: 12.33333333%;
  }
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-2-3 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .m-md-0 {
    padding: 0 !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
}
@media screen and (max-width:480px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-0-1 {
    flex: 0 0 4.33333333%;
    max-width: 4.33333333%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-1-2 {
    flex: 0 0 12.33333333%;
    max-width: 12.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-2-3 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-11-12 {
    flex: 0 0 95.66666667%;
    max-width: 95.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .m-sm-0 {
    padding: 0 !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
}
.btn {
  width: 150px;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  box-shadow: 0 2px 5px -1px #545454;
  border-radius: 0.45em;
  font-weight: 700;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn.clear {
  box-shadow: 0 0 0 0;
}
.btn:hover, .btn:focus {
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

@media screen and (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn-primary {
  color: #ffffff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #ffffff;
  background-color: #0069d9;
  border-color: #0062cc;
}
.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #ffffff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #ffffff;
  background-color: #0062cc;
  border-color: #005cbf;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary {
  color: #ffffff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #ffffff;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #ffffff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #ffffff;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #ffffff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success:focus, .btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #ffffff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-danger {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #ffffff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #ffffff;
  background-color: #bd2130;
  border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-transparent {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-consent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 1.2em;
  box-sizing: border-box;
  visibility: hidden;
  z-index: 99999;
}
.cookie-consent.is-show {
  visibility: visible;
}
.cookie-consent a {
  color: #fff !important;
}
@media screen and (max-width:480px) {
  .cookie-consent {
    flex-direction: column;
  }
}

.cookie-agree {
  color: #fff;
  background: dodgerblue;
  padding: 0.5em 1.5em;
}
.cookie-agree:hover {
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .cookie-text {
    margin-bottom: 1em;
  }
}/*# sourceMappingURL=common.css.map */