/*breakpoint*/
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blur {
  0% {
    -ms-filter: blur(12px);
    filter: blur(12px);
  }
  100% {
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
.chartered {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.chartered h3 {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 2.4rem;
  color: #A35CEB;
  letter-spacing: 0.7rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .chartered h3 {
    margin-bottom: 3rem;
  }
}
.chartered h3 img {
  width: 7rem;
}
.chartered .chartered__text {
  font-size: 1.6rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .chartered .chartered__text {
    font-size: 1.4rem;
  }
}
.chartered .chartered__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .chartered .chartered__list {
    display: block;
    margin-bottom: 4rem;
  }
}
.chartered .chartered__list li {
  background: #008AE3;
  text-align: center;
  width: 32%;
  border-radius: 2.5rem;
  height: 5rem;
  color: #fff;
  line-height: 5rem;
}
@media screen and (max-width: 767px) {
  .chartered .chartered__list li {
    width: 240px;
    margin: 0 auto;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    height: 3.8rem;
    line-height: 3.8rem;
  }
}
.chartered .chartered__consul {
  margin-bottom: 10rem;
}
.chartered .chartered__consul .consul__text {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.chartered .chartered__consul .consul__text::before {
  content: "";
  background-image: url(/skate/shinyokohama/assets/img/chartered/icon-snow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  background-position: center;
  display: inline-block;
  line-height: 2.2rem;
  margin-right: 1rem;
}
.chartered .chartered__consul .consul__text::after {
  content: "";
  background-image: url(/skate/shinyokohama/assets/img/chartered/icon-snow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  background-position: center;
  display: inline-block;
  line-height: 2.2rem;
  margin-right: 1rem;
}
.chartered .chartered__consul .consul__tel {
  font-size: 2.6rem;
  font-weight: 600;
  border-bottom: 4px solid #A35CEB;
  display: inline-block;
}/*# sourceMappingURL=chartered.css.map */