/* --------------------------------------------------
	000.margin and padding
-------------------------------------------------- */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas,
main {
  margin: 0;
  padding: 0;
}

article,
aside,
figure,
figcaption,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* --------------------------------------------------
	001.HTML, Body, Anchor
-------------------------------------------------- */
html {
  font-size: 62.5%;
  overflow-y: scroll;
  * overflow-x: hidden;
  _overflow: auto;
  font-size: 0.52vw;
}

@media only screen and (max-width: 1024px) {
  html {
    font-size: 0.8vw;
  }
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Work Sans", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-size: 1.4rem;
  /* background: #fff; */
  background: #fcf7f3;
  line-height: 1.6;
  color: #000;
  font-weight: 400;
}


@media only screen and (min-width: 1025px) {
  .sp-visible {
    display: none !important;
  }

  .tablet-visible {
    display: none !important;
  }
}

@media only screen and (max-width: 1024px) {
  .tablet-hidden {
    display: none;
  }

  .sp-visible {
    display: none !important;
  }
}

@media only screen and (max-width: 1024px) and (max-width: 767px) {
  .sp-visible {
    display: block !important;
  }

  .sp-hidden {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  html {
    font-size: 3.125vw;
  }

  body {
    letter-spacing: 0;
  }

  select,
  textarea,
  input[type='url'],
  input[type='text'],
  input[type='date'],
  input[type='tel'],
  input[type='email'],
  input[type='submit'] {
    -webkit-appearance: none;
  }
}

span.link,
a {
  color: #000;
  text-decoration: none;
  transition: all 0.5s;
  cursor: pointer;
}

span.link.none,
a.none {
  opacity: 0.4;
  pointer-events: none;
}

@media only screen and (min-width: 1025px) {
  a:hover {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
  }
}

/* --------------------------------------------------
	002.Heading, Paragraph
-------------------------------------------------- */
dt,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 700;
}

p {
  line-height: 1.6;
}

/* --------------------------------------------------
	003.List
-------------------------------------------------- */
ol,
ul,
li {
  list-style: none;
}

/* --------------------------------------------------
	004.Table
-------------------------------------------------- */
table {
  font-size: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  vertical-align: top;
  font-weight: 400;
}

/* --------------------------------------------------
	005.Form
-------------------------------------------------- */
fieldset {
  border: none;
}

input,
textarea,
select,
label {
  font-size: 100%;
  font-family: "Work Sans", "Noto Sans JP", sans-serif;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

@media only screen and (max-width: 767px) {

  input,
  textarea,
  select {
    font-size: 1.6rem;
    box-sizing: border-box;
  }
}

button {
  font-family: "Work Sans", "Noto Sans JP", sans-serif;
}

label {
  cursor: pointer;
}

textarea {
  overflow: auto;
}

legend {
  display: none;
}

/* --------------------------------------------------
	006.Other
-------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

object {
  vertical-align: middle;
  outline: none;
}

em {
  font-style: italic;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 100%;
}

i {
  font-style: normal;
}

u {
  text-decoration: none;
}

abbr,
acronym {
  border: none;
  font-variant: normal;
}

address,
caption,
cite,
code,
dfn,
var {
  font-weight: normal;
  font-style: normal;
}

sup {
  font-size: 1em;
  vertical-align: text-top;
}

sub {
  font-size: 1em;
  vertical-align: text-bottom;
}

hr {
  display: none;
}

/* --------------------------------------
		101 outline
-------------------------------------- */
#wrap {
  position: relative;
}

@media only screen and (max-width: 1024px) {
  #wrap {
    overflow: hidden;
  }
}

div:focus,
img:focus,
textarea:focus,
a:focus,
button:focus,
input:focus {
  outline: none;
  box-shadow: none;
}

/* --------------------------------------
		105 other
-------------------------------------- */
#loader {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1), #fff;
  transition: all 1s;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  opacity: 1;
}

#loader.on {
  opacity: 0;
  z-index: -1;
}

body #wrap {
  z-index: -1;
  position: relative;
  /* padding-top: 10rem; */
}

@media only screen and (max-width: 1024px) {
  body #wrap {
    /* padding-top: 4.3rem; */
  }
}

body #wrap.on {
  z-index: 1;
}

/* --------------------------------------
		102 header
-------------------------------------- */
.header {
  width: 100%;
  height: 10rem;
  background: #fff;
  box-shadow: 2px 0 5px 0 rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .5s;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .header {
    height: 4.8rem;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4);
  }
}

.header.headDown {
  top: 0;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 2rem;
  position: relative;
  z-index: 1000;
}

.header-logo-catch {
  width: 15.8rem;
  margin-right: 2.3rem;
}

.header-logo-name {
  width: 22.4rem;
}

.header-logo-name span {
  margin-top: 1rem;
}

@media only screen and (max-width: 767px) {
  .header-logo-name {
    width: 13rem;
    line-height: 1;
  }

  .header-logo-name span {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .header-menu {
    position: fixed;
    width: 5rem;
    height: 4.3rem;
    z-index: 1000;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .header-menu span {
    width: 2.1rem;
    height: .3rem;
    margin: .3rem auto;
    background: #db0012;
  }

  .header-menu.on span:nth-of-type(1) {
    position: absolute;
    transform: rotate(45deg);
    left: 50%;
    margin-left: -1.05rem;
    top: 50%;
    margin-top: -.3rem;
  }

  .header-menu.on span:nth-of-type(3) {
    display: none;
  }

  .header-menu.on span:nth-of-type(2) {
    position: absolute;
    transform: rotate(-45deg);
    right: 50%;
    margin-right: -1.05rem;
    top: 50%;
    margin-top: -.3rem;
  }
}

.header-btn {
  padding-right: 4.5rem;
}

.header-btn a {
  height: 3.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: .3rem;
  background: #000;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  padding: 0 1rem;
}

.header-nav {
  width: 100%;
  height: 10rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .header-nav {
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    max-height: 0;
    overflow: hidden;
    transition: all .5s;
    position: fixed;
    left: 0;
    top: 4.8rem;
    z-index: 999;
    background: #fff;
  }

  .header-nav.active {
    height: 100vh;
    max-height: 99999rem;
    overflow: auto;
    transition: all .5s;
    padding-bottom: 4.8rem;
  }
}

.header-nav .div-bnr {
  width: 100%;
  background: #db0012;
  padding: 1rem 0;
}

.header-nav .div-bnr a {
  width: 27.7rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: #fff;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.16);
  margin: 2.1rem auto;
}

.header-nav .div-bnr a>img {
  width: auto;
  height: 4rem;
  margin-right: .5rem;
  flex-shrink: 0;
  margin-left: 1.5rem;
}

.header-nav .div-bnr a i {
  font-size: 2rem;
  color: #db0012;
  margin-right: 1rem;
  flex-shrink: 0;
}

.header-nav .div-bnr a p {
  font-size: 1.8rem;
  font-weight: 700;
  color: #db0012;
  text-align: center;
}

.header-nav .div-bnr a p>img {
  width: auto;
  height: 2rem;
}

.header-nav .div-bnr a p span {
  font-size: 1.1rem;
  color: #000;
  height: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  position: relative;
}

.header-nav .div-bnr a p span>img {
  width: auto;
  height: 1rem;
}

.header-nav .div-bnr a p span:before,
.header-nav .div-bnr a p span:after {
  content: "";
  width: .2rem;
  height: 1.2rem;
  background: #db0012;
  border-radius: 1rem;
  margin: 0 1rem;
}

.header-nav .div-bnr a p span:before {
  transform: rotate(-30deg);
}

.header-nav .div-bnr a p span:after {
  transform: rotate(30deg);
}

.header-nav .div-bnr a:nth-of-type(2) p span:before,
.header-nav .div-bnr a:nth-of-type(2) p span:after {
  background: #06c755;
}

.header-nav>ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .header-nav>ul {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
  }
}

.header-nav>ul>li {
  height: 10rem;
  font-weight: 700;
  padding: 0 2vw;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .header-nav>ul>li {
    width: 100%;
    height: auto;
    border-bottom: .1rem solid #fff;
    padding: 0;
  }
}

.header-nav>ul>li:after {
  content: "";
  width: .1rem;
  height: 4rem;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -2rem;
  background: #000;
}

@media only screen and (max-width: 767px) {
  .header-nav>ul>li:after {
    display: none;
  }
}

.header-nav>ul>li:nth-last-of-type(1):after {
  display: none;
}

.header-nav>ul>li>a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.2;
  height: 10rem;
}

@media only screen and (max-width: 767px) {
  .header-nav>ul>li>a {
    height: 4.2rem;
    background: #000;
    color: #fff;
    position: relative;
  }

  .header-nav>ul>li>a:after {
    content: "\e906";
    font-family: "icomoon";
    position: absolute;
    right: 1.1rem;
    top: 50%;
    margin-top: -.5em;
    line-height: 1;
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 1025px) {
  .header-nav>ul>li>a:hover {
    color: #db0012;
  }
}

@media only screen and (max-width: 767px) {
  .header-nav>ul>li>a:after {
    content: "\e90c";
  }
}

@media only screen and (max-width: 767px) {
  .header-nav>ul>li.has>a:after {
    content: "\e906";
  }

  .header-nav>ul>li.has.on {
    border-bottom: none;
  }

  .header-nav>ul>li.has.on a:after {
    transform: scale(1, -1);
  }

  .header-nav>ul>li.has.on ul {
    max-height: 9999rem;
    opacity: 1;
    transition: all .5s;
  }

  .header-nav>ul>li.has.on ul a {
    max-height: 5rem;
  }
}

@media only screen and (min-width: 1025px) {
  .header-nav>ul>li.has:hover ul {
    max-height: 9999rem;
    opacity: 1;
    transition: all .5s;
  }

  .header-nav>ul>li.has:hover ul a {
    max-height: 5rem;
  }
}

.header-nav>ul>li ul {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  max-height: 0;
  overflow: hidden;
  transition: all .5s;
  position: absolute;
  left: 0;
  top: 10rem;
  opacity: 0;
}

@media only screen and (max-width: 767px) {
  .header-nav>ul>li ul {
    position: static;
    background: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.header-nav>ul>li ul li {
  font-weight: 500;
  border-bottom: .1rem solid #000;
}

@media only screen and (max-width: 767px) {
  .header-nav>ul>li ul li {
    width: 50%;
    border-right: .1rem solid #000;
    border-bottom: none;
    text-align: center;
    line-height: 1.3;
  }

  .header-nav>ul>li ul li:nth-of-type(2n) {
    border-right: none;
  }
}

@media only screen and (max-width: 767px) {

  .header-nav>ul>li ul li:nth-of-type(3),
  .header-nav>ul>li ul li:nth-of-type(4) {
    border-top: .1rem solid #000;
    border-bottom: .1rem solid #000;
  }
}

.header-nav>ul>li ul li:nth-last-of-type(1) {
  border-bottom: none;
}

.header-nav>ul>li ul li a {
  height: 5rem;
  max-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  transition: all .5s;
}

@media only screen and (max-width: 1024px) {
  .header-nav>ul>li ul li a {
    font-size: 1.28rem;
    height: 4.2rem;
    font-weight: 700;
  }
}

@media only screen and (min-width: 1025px) {
  .header-nav>ul>li ul li a:hover {
    background: #db0012;
    color: #fff;
  }
}

/* --------------------------------------
		103 content
-------------------------------------- */
#wrap {
  overflow: hidden;
}

.btn-normal {
  width: 50rem;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  padding: .6rem;
  background: linear-gradient(270deg, #db0012 0%, #910000 100%);
  color: #fff;
  font-weight: 700;
  font-size: 2.2rem;
  position: relative;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .btn-normal {
    width: 100%;
    height: 8.5rem;
    max-width: 27.7rem;
    font-size: 1.7rem;
  }
}

.btn-normal i {
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  right: 2.8rem;
  top: 50%;
  margin-top: -.65em;
}

@media only screen and (max-width: 767px) {
  .btn-normal i {
    font-size: 2rem;
    right: 2rem;
  }
}

@media only screen and (min-width: 1025px) {
  .btn-normal:hover {
    border: 0.6rem solid #db0012;
    background: #fff;
    color: #db0012;
    padding: 0;
  }

  .btn-normal:hover i {
    right: 2.2rem;
  }
}

.btn-more {
  width: 50rem;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  border: .6rem solid #000;
  background: #000;
  color: #fff;
  font-weight: 700;
  font-size: 2.2rem;
  position: relative;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .btn-more {
    width: 100%;
    max-width: 27.7rem;
    height: 5.1rem;
    font-size: 1.3rem;
  }
}

.btn-more i {
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  right: 2.2rem;
  top: 50%;
  margin-top: -.65em;
}

@media only screen and (max-width: 767px) {
  .btn-more i {
    font-size: 2rem;
    right: 1.8rem;
  }
}

@media only screen and (min-width: 1025px) {
  .btn-more:hover {
    background: #fff;
    color: #000;
  }
}

.btn-border {
  width: 100%;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: .4rem solid #000;
  font-size: 2.2rem;
  font-weight: 700;
  border-radius: 5rem;
  background: #fff;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .btn-border {
    font-size: 1.15rem;
    border-width: .2rem;
    height: 5.1rem;
  }
}

.btn-border i {
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  right: 2.2rem;
  top: 50%;
  margin-top: -.65em;
}

@media only screen and (max-width: 767px) {
  .btn-border i {
    font-size: 1.7rem;
    right: 1rem;
  }
}

@media only screen and (min-width: 1025px) {
  .btn-border:hover {
    background: #000;
    color: #fff;
  }
}

/* --------------------------------------
		104 footer
-------------------------------------- */
.div-fixed-btn {
  height: 15rem;
  position: fixed;
  right: 0;
  top: 50%;
  margin-top: -7.5rem;
  z-index: 9999;
}

@media only screen and (max-width: 767px) {
  .div-fixed-btn {
    right: 1rem;
  }
}

.div-fixed-btn a {
  width: 7.1rem;
  height: 25.8rem;
  background: url("/commons/img/top/bg-fixed-btn.svg") no-repeat 50% 50%;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 2rem;
  line-height: 1.2;
  transition: all .5s;
  font-weight: 900;
}

.div-fixed-btn a b {
  margin-bottom: 1rem;
}

.div-fixed-btn a i {
  width: 3.6rem;
  height: 3.6rem;
  background: #db0012;
  flex-shrink: 0;
  color: #fff;
  border-radius: 50%;
  letter-spacing: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .div-fixed-btn a {
    display: none;
  }
}

@media only screen and (min-width: 1025px) {
  .div-fixed-btn a:hover {
    width: 6.7rem;
  }
}

.footer {
  width: 100%;
  position: relative;
  z-index: 2;
  background: #000;
  color: #fff;
  padding: 12rem 4rem 6rem;
}

@media only screen and (max-width: 767px) {
  .footer {
    padding: 6rem 2rem 6rem;
  }
}

.footer-nav {
  max-width: 100rem;
  margin: 0 auto 10rem;
  display: flex;
  justify-content: space-between;
  text-align: left;
}

@media only screen and (max-width: 1024px) {
  .footer-nav {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .footer-nav {
    flex-direction: column;
    margin-bottom: 4.5rem;
  }
}

.footer-nav>ul {
  width: 30%;
}

@media only screen and (max-width: 767px) {
  .footer-nav>ul {
    width: 100%;
  }
}

.footer-nav>ul>li {
  font-weight: 700;
  position: relative;
  margin-bottom: 2.4rem;
}

@media only screen and (max-width: 767px) {
  .footer-nav>ul>li {
    height: auto;
    margin-bottom: 1.2rem;
  }
}

.footer-nav>ul>li>a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.8rem;
  height: 4.6rem;
  border-bottom: .1rem solid #fff;
  color: #fff;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 1024px) {
  .footer-nav>ul>li>a {
    height: 6rem;
    font-size: 2.2rem;
  }
}

@media only screen and (max-width: 767px) {
  .footer-nav>ul>li>a {
    height: 4.6rem;
    font-size: 1.4rem;
    position: relative;
  }

  .footer-nav>ul>li>a:after {
    content: "\e906";
    font-family: "icomoon";
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    top: 50%;
    margin-top: -.75rem;
    padding-top: .1rem;
    line-height: 1;
    font-size: .9rem;
    border-radius: 50%;
    background: #fff;
    color: #000;
    box-sizing: border-box;
  }
}

@media only screen and (min-width: 1025px) {
  .footer-nav>ul>li>a:hover {
    color: #db0012;
  }
}

@media only screen and (max-width: 767px) {
  .footer-nav>ul>li>a:after {
    content: "\e90c";
  }
}

@media only screen and (max-width: 767px) {
  .footer-nav>ul>li.has>a:after {
    content: "\e906";
  }

  .footer-nav>ul>li.has.on {
    border-bottom: none;
  }

  .footer-nav>ul>li.has.on a:after {
    transform: scale(1, -1);
  }

  .footer-nav>ul>li.has.on ul {
    max-height: 9999rem;
    opacity: 1;
    transition: all .5s;
  }

  .footer-nav>ul>li.has.on ul a {
    max-height: 5rem;
  }
}

@media only screen and (min-width: 1025px) {
  .footer-nav>ul>li.has:hover ul {
    max-height: 9999rem;
    opacity: 1;
    transition: all .5s;
  }
}

.footer-nav>ul>li ul {
  width: 100%;
  transition: all .5s;
}

@media only screen and (max-width: 767px) {
  .footer-nav>ul>li ul {
    overflow: hidden;
    max-height: 0;
  }
}

.footer-nav>ul>li ul li {
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .footer-nav>ul>li ul li {
    font-weight: 500;
    line-height: 1.3;
  }
}

.footer-nav>ul>li ul li a {
  font-size: 1.4rem;
  min-height: 2.4rem;
  padding: .7rem 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  .footer-nav>ul>li ul li a {
    font-size: 1.7rem;
    min-height: 4.6rem;
  }
}

@media only screen and (max-width: 767px) {
  .footer-nav>ul>li ul li a {
    min-height: 2.4rem;
    font-size: 1.28rem;
  }
}

@media only screen and (min-width: 1025px) {
  .footer-nav>ul>li ul li a:hover {
    color: #db0012;
  }
}

.footer-copy {
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}

.headDown {
  opacity: 0;
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes boat {

  0%,
  100% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(5deg);
  }
}

@font-face {
  font-family: 'icomoon';
  src: url("/commons/fonts/icomoon.eot?ce1e42");
  src: url("/commons/fonts/icomoon.eot?ce1e42#iefix") format("embedded-opentype"), url("/commons/fonts/icomoon.ttf?ce1e42") format("truetype"), url("/commons/fonts/icomoon.woff?ce1e42") format("woff"), url("/commons/fonts/icomoon.svg?ce1e42#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow:before {
  content: "\e900";
}

.icon-covid1:before {
  content: "\e901";
}

.icon-covid2:before {
  content: "\e902";
  font-size: 130%;
}

.icon-covid3:before {
  content: "\e903";
}

.icon-covid4:before {
  content: "\e904";
  font-size: 120%;
}

.icon-cost:before {
  content: "\e905";
}

.icon-d:before {
  content: "\e906";
}

.icon-food:before {
  content: "\e907";
}

.icon-good:before {
  content: "\e908";
}

.icon-peke:before {
  content: "\e90a";
}

.icon-plus:before {
  content: "\e90b";
}

.icon-r:before {
  content: "\e90c";
}

.icon-schedule:before {
  content: "\e90d";
}

.icon-talk:before {
  content: "\e90e";
}

.icon-tel:before {
  content: "\e90f";
}

.en {
  font-family: "Work Sans", sans-serif;
}

.icon-crown {
  background: url("/commons/img/gym/crown.svg") no-repeat;
  background-size: 24px auto;
  width: 24px;
  height: 24px;
  margin: 0 auto;
}