/* Color */
/* Pink */
/* Skyblue */
/* Blue */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  background: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-weight: 600;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.2;
  min-height: 100%;
  overflow-x: hidden;
}
@media screen and (min-width: 769px) {
  body .main-wrapper {
    width: 100%;
  }
}

video,
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
  outline: none;
}
a[href^="mailto:"] {
  color: inherit;
}
a[href^="mailto:"]:hover {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px #333;
  box-shadow: none;
}

sup {
  font-size: 60%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

sub {
  font-size: 60%;
  vertical-align: bottom;
  position: relative;
  bottom: -0.1em;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  list-style: none;
}

small {
  font-size: 16px;
}

.fs-14 {
  font-size: 14px !important;
}

.f-poppins {
  font-family: "Poppins", sans-serif;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

/* Fading entrances  */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeft2x {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft2x {
  animation-name: fadeInLeft2x;
}

@keyframes fadeInLeftBottom2x {
  0% {
    opacity: 0;
    transform: translate(100px, -50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBottom2x {
  animation-name: fadeInLeftBottom2x;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRight2x {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight2x {
  animation-name: fadeInRight2x;
}

@keyframes fadeInRightBottom2x {
  0% {
    opacity: 0;
    transform: translate(-100px, -50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBottom2x {
  animation-name: fadeInRightBottom2x;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes zoomOutIn {
  0% {
    transform: scale(0.8);
  }
  80% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.zoomOutIn {
  animation-name: zoomOutIn;
}

@keyframes zoomOut {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes fadeZoomOut {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fadeZoomOut {
  animation-name: fadeZoomOut;
}

@keyframes fadeZoomOutIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fadeZoomOutIn {
  animation-name: fadeZoomOutIn;
}

@keyframes widthRight {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.widthRight {
  overflow: hidden;
  animation-name: widthRight;
}

@keyframes flash1 {
  from, 90%, 60%, 30% {
    opacity: 0;
  }
  75%, 45%, 15%, 100% {
    opacity: 1;
  }
}
.flash1 {
  animation-name: flash1;
}

@keyframes flash2 {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  2% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  6% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.animation-flash {
  animation: flash2 5s linear infinite;
}

.l-content {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
}
.l-content--small {
  max-width: 772px;
}
.l-content--medium {
  max-width: 1080px;
}
.l-content--max {
  max-width: 1440px;
}
@media screen and (max-width: 768px) {
  .l-content {
    padding: 0 24px;
  }
}

.l-header {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 10px;
  transition: top 0.3s;
}
.l-header__inner {
  background: #FFF;
  border: 1px solid rgba(64, 217, 188, 0.7);
  box-shadow: 0px 0px 10.7px #C5FFF4, inset 0px 2px 0px -41px #ACF2E5;
  border-radius: 100px;
  padding: 14px 20px 0 32px;
  height: 70px;
}
.l-header__menu ul {
  display: flex;
  align-items: center;
  height: 44px;
  justify-content: flex-end;
}
.l-header__menu ul li.item-link {
  margin-right: 30px;
}
.l-header__menu ul li.item-button {
  margin-right: 16px;
}
.l-header__menu ul li.border-left {
  position: relative;
  padding-left: 16px;
}
.l-header__menu ul li.border-left::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2px;
  height: 28px;
  background: #91CFE5;
}
.l-header__menu ul li:last-child {
  margin-right: 0;
}
.l-header__menu .link {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333;
}
.l-header .sp-menu {
  display: none;
}

@media screen and (max-width: 1080px) {
  .l-header {
    top: 24px;
    padding: 0 24px;
  }
  .l-header .sp-menu {
    display: block;
  }
  .l-header .c-row {
    display: block;
  }
  .l-header__inner {
    padding: 0;
    height: auto;
    border-radius: 26px;
  }
  .l-header__logo {
    display: flex;
    justify-content: space-between;
    padding: 5px 7px 0 15px;
    height: 52px;
  }
  .l-header__logo .logo img {
    margin-top: 6px;
    width: 152px;
  }
  .l-header__menu {
    overflow: hidden;
    transition: 0.3s;
    max-height: 0;
  }
  .l-header__menu ul {
    flex-direction: column;
    height: auto;
    padding: 0 24px 24px;
  }
  .l-header__menu ul li {
    width: 100%;
    text-align: center;
  }
  .l-header__menu ul li a {
    width: 320px;
  }
  .l-header__menu ul li.item-link {
    margin: 0 0 20px;
  }
  .l-header__menu ul li.item-link a {
    line-height: 30px;
  }
  .l-header__menu ul li.item-button {
    margin: 0 0 16px;
  }
  .l-header__menu ul li.item-button:last-child {
    margin-bottom: 0;
  }
  .l-header__menu ul li.border-left {
    padding: 16px 0 0;
  }
  .l-header__menu ul li.border-left::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
  }
  .show-menu .l-header__menu {
    max-height: 500px;
  }
}
@media screen and (max-width: 440px) {
  .l-header__menu ul li,
  .l-header__menu ul li a,
  .l-header__menu ul li a span {
    width: 100%;
  }
}
.l-footer {
  background: linear-gradient(192.03deg, rgba(88, 219, 191, 0.5) 12.02%, rgba(121, 219, 206, 0.5) 48.22%, rgba(179, 197, 255, 0.5) 77.86%, rgba(179, 197, 255, 0.5) 83.72%);
  padding: 64px 10px 40px;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
}
.l-footer__inner {
  max-width: 1280px;
}
.l-footer__logo {
  padding-bottom: 54px;
}
.l-footer__social {
  padding-bottom: 30px;
}
.l-footer__social a {
  display: inline-block;
  margin-right: 30px;
}
.l-footer__social a:last-child {
  margin-right: 0;
}
.l-footer__menu--2 {
  padding-top: 10px;
  text-align: right;
}
.l-footer__menu--2 a {
  display: inline-block;
  margin-right: 40px;
  color: #333;
  font-weight: 700;
}
.l-footer__menu--2 a:last-child {
  margin-right: 0;
}
.l-footer__info p {
  margin-bottom: 8px;
}
.l-footer__info p:last-child {
  margin-bottom: 0;
}
.l-footer__copyright {
  padding-top: 32px;
  text-align: center;
}
.l-footer .c-row--1 {
  padding-bottom: 40px;
  border-bottom: 1px solid #FFF;
}

@media screen and (max-width: 768px) {
  .l-footer {
    padding: 25px 0 30px;
  }
  .l-footer__logo, .l-footer__social {
    padding-bottom: 28px;
  }
  .l-footer__info {
    padding-bottom: 35px;
  }
  .l-footer__menu--2 {
    border-top: 1px solid #FFF;
    padding-top: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 32px;
  }
  .l-footer__menu--2 a {
    margin: 0;
  }
  .l-footer__copyright {
    padding-top: 25px;
  }
  .l-footer .c-row--1 {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.p-top {
  background: linear-gradient(179.8deg, rgba(193, 251, 240, 0.19) 51.45%, rgba(167, 250, 234, 0.19) 66.26%, rgba(198, 212, 255, 0.23) 77.9%, rgba(198, 212, 255, 0.23) 90.68%), #FFF;
}
.p-top .c-kv {
  padding: 0;
  background: none;
}
.p-top .c-kv h1 {
  height: 100%;
  width: 100%;
}
.p-top .c-kv h1 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top__banner {
  display: inline-flex;
  position: relative;
  width: 100%;
  background-color: #f3fefc;
  padding-top: 40px;
  padding-bottom: 4px;
}
.p-top__banner--img {
  display: inline-block;
  max-width: 772px;
  height: auto;
  margin: 0 auto;
}
.p-top__banner--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p-top .c-kv::after {
    bottom: -175px;
  }
  .p-top .c-kv h1 {
    height: 100vh;
  }
}
@media screen and (max-width: 768px) and (hover: none) and (pointer: coarse) {
  @supports (-webkit-appearance: none) {
    .p-top .c-kv h1 {
      height: 100dvh;
    }
  }
}
@media screen and (max-width: 768px) {
  @supports (height: -webkit-fill-available) {
    .p-top .c-kv h1 {
      height: -webkit-fill-available;
    }
  }
  .p-top__banner {
    padding: 0 10px;
  }
  .p-top__banner .c-button--banner---top {
    max-width: 354px;
    height: auto;
    border-radius: 14px;
  }
  .p-top__banner .c-button--banner---top span {
    width: 100%;
    border-radius: 14px;
    transform: translateY(-6px);
    border: none;
  }
}
@media screen and (width: 768px) {
  .p-top .c-kv {
    min-height: 100vh;
  }
}
@media screen and (width: 1024px) {
  .p-top .c-kv {
    min-height: 39vh;
  }
}
@media screen and (width: 820px) {
  .p-top .c-kv {
    min-height: 42vh;
  }
}
.p-about {
  position: relative;
}
.p-about .c-kv {
  align-items: center;
  background: url(../images/about/about-kv.png) no-repeat top center;
  background-size: max(100%, 1440px) auto;
  aspect-ratio: 3/1;
  min-height: 515px;
  padding: 10px;
}
.p-about__kv--inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: url(../images/about/banner.png) repeat-x center center/auto 100%;
  max-width: 970px;
  min-height: 212px;
  margin: 60px auto 0;
  border-radius: 20px;
}
.p-about__kv--inner::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border-radius: 18px;
  border: 2px solid #56BAA7;
  pointer-events: none;
}
.p-about__kv--content {
  max-width: 438px;
  margin: 0 auto;
}
.p-about__kv--title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #56BAA7;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
.p-about__kv--line {
  width: 100%;
  height: 2px;
  background: #56BAA7;
  border: none;
  outline: none;
}
.p-about__kv--img {
  margin-top: 16px;
}

@media screen and (min-width: 1441px) {
  .p-about .c-kv {
    height: 460px;
    background-size: 100% auto;
    background-position: top center;
  }
}
@media screen and (max-width: 768px) {
  .p-about .c-kv {
    align-items: flex-start;
    background: url(../images/about/about-kv-sp.png) no-repeat top center;
    background-size: max(100%, 400px) auto;
    min-height: 375px;
    padding-bottom: 0;
    padding-top: 110px;
  }
  .p-about .c-kv::after {
    bottom: -220px;
    height: 238px;
  }
  .p-about .c-kv .l-content {
    padding: 0 16px;
  }
  .p-about__kv--inner {
    justify-content: flex-start;
    background: url(../images/about/banner-sp.png) no-repeat center center/100% 100%;
    max-width: 354px;
    height: auto;
    padding: 0 16px;
    border-radius: 20px;
    margin: 0 auto;
  }
  .p-about__kv--content {
    margin-top: 24px;
  }
  .p-about__kv--title {
    margin-top: 22px;
  }
  .p-about__kv--img {
    max-width: 296px;
  }
  .p-about__kv--img img {
    width: 100%;
    height: 100%;
  }
}
.p-audition {
  position: relative;
}
.p-audition::after, .p-audition::before {
  content: "";
  position: absolute;
  top: 1084px;
  width: 720px;
  height: calc(100% - 1084px);
  background: url(../images/audition-1st/bg-audition-page.png) top left/1440px auto repeat-y;
  z-index: 1;
  pointer-events: none;
}
.p-audition::before {
  left: 0;
}
.p-audition::after {
  right: 0;
  background-position: top right;
}
.p-audition > section {
  position: relative;
  z-index: 5;
}
.p-audition__1st {
  background: linear-gradient(179.8deg, rgba(247, 236, 255, 0.19) 37.24%, rgba(247, 236, 255, 0.19) 82.68%, rgba(198, 212, 255, 0.23) 91.84%, rgba(198, 212, 255, 0.23) 94.86%), #FFF;
}
.p-audition .c-kv {
  align-items: center;
  background: url(../images/audition-1st/img-kv.png) no-repeat top center;
  background-size: max(100%, 1440px) auto;
  aspect-ratio: 3/1;
  height: 530px;
  padding: 0 10px;
}
.p-audition .c-kv::after {
  background-image: url(../images/common/bg-curve-pink.png);
  bottom: 2px;
  height: 72px;
}
@media screen and (min-width: 1445px) {
  .p-audition .c-kv::after {
    bottom: 0;
    height: 76px;
  }
}
.p-audition .p-about__kv--content {
  max-width: 100%;
}
.p-audition .p-about__kv--inner {
  background-image: url(../images/audition-1st/banner.png);
  position: relative;
  margin-top: 46px;
}
.p-audition .p-about__kv--inner::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border-radius: 18px;
  border: 2px solid #CC81F2;
  pointer-events: none;
}
.p-audition .p-about__kv--title {
  color: #CC81F2;
}
.p-audition .p-about__kv--line {
  background: #CC81F2;
}
.p-audition .content--text {
  font-size: 22px;
  font-weight: 500;
  line-height: 2;
  color: #333;
  margin: 0 auto;
  text-align: center;
}
.p-audition .c-audition__heading--sub {
  margin-left: -12px;
}
.p-audition__background {
  background: linear-gradient(0deg, #FFF, #FFF), linear-gradient(179.8deg, rgba(247, 236, 255, 0.19) 37.24%, rgba(247, 236, 255, 0.19) 82.68%, rgba(198, 212, 255, 0.23) 91.84%, rgba(198, 212, 255, 0.23) 94.86%);
}
.p-audition__banner {
  position: relative;
  padding: 0 0 80px;
  text-align: center;
  z-index: 5;
}
.p-audition__message {
  padding-bottom: 65px;
}
.p-audition__content {
  margin-top: 40px;
}
.p-audition__support--items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  margin-top: 80px;
}
.p-audition__support--items .item__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  grid-column: span 2;
  position: relative;
  border-radius: 10px;
  padding: 36px 22px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(0deg, rgba(163, 38, 241, 0.4) 0%, rgba(135, 105, 255, 0.4) 100%) border-box;
  box-sizing: border-box;
}
.p-audition__support--items .item__card:nth-child(1) {
  grid-column: 2/span 2;
}
.p-audition__support--items .item__card:nth-child(2) {
  grid-column: 4/span 2;
}
.p-audition__support--items .item__card.note1--card::before {
  content: "";
  background: url(../images/audition-1st/card-note1.svg) no-repeat center center/100% 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -35%);
  width: 210px;
  height: 62px;
}
.p-audition__support--items .item__card.note2--card::before {
  content: "";
  background: url(../images/audition-1st/card-note2.svg) no-repeat center center/100% 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -35%);
  width: 210px;
  height: 62px;
}
.p-audition__support--items .item__card--img {
  text-align: center;
  margin-bottom: 10px;
}
.p-audition__support--items .item__card--title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  text-align: center;
  display: flex;
  align-items: center;
}
.p-audition__support--items .item__card--2 .item__card--title {
  height: 46px;
}
.p-audition .l-content__precautions {
  max-width: 802px;
}
.p-audition__bottom {
  width: 100%;
  height: 198px;
  background: url(../images/audition-1st/bg-audition-bottom.png) bottom center/auto 100% repeat-x;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .p-audition::before {
    background-image: url(../images/audition-1st/bg-audition-page-sp.png);
    background-size: 100% auto;
    width: 100%;
  }
  .p-audition::after {
    display: none;
  }
  .p-audition .c-kv {
    background: url(../images/audition-1st/img-kv-sp.png) no-repeat top center;
    background-size: max(100%, 400px) auto;
    aspect-ratio: unset;
    height: 400px;
    background-color: #FEFBFF;
  }
  .p-audition .c-kv::after {
    background: url(../images/common/bg-curve-pink-sp.png) bottom center/100% auto no-repeat;
    height: 60px;
    bottom: 0;
  }
  .p-audition .p-about__kv--inner {
    background-image: url(../images/audition-1st/banner-sp.png);
    min-height: 200px;
    margin-top: 40px;
  }
  .p-audition .p-about__kv--content {
    margin-top: 0;
  }
  .p-audition .p-about__kv--title {
    justify-content: center;
    margin-top: 30px;
  }
  .p-audition .p-about__kv--line {
    display: inline-block;
    width: 29px;
  }
  .p-audition .content--text {
    font-size: 18px;
  }
  .p-audition__banner {
    padding-bottom: 35px;
  }
  .p-audition__support--items {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 50px;
  }
  .p-audition__support--items .item__card {
    justify-content: flex-start;
    grid-column: span 1;
    padding: 17px 12px 20px;
    min-height: 182px;
  }
  .p-audition__support--items .item__card:nth-child(1) {
    grid-column: span 1;
  }
  .p-audition__support--items .item__card:nth-child(2) {
    grid-column: span 1;
  }
  .p-audition__support--items .item__card:nth-child(5) {
    grid-column: 1/-1;
    justify-self: center;
    width: calc(50% - 5px);
  }
  .p-audition__support--items .item__card.note1--card::before {
    max-width: 140px;
    transform: translate(-50%, -40%);
  }
  .p-audition__support--items .item__card.note2--card::before {
    max-width: 140px;
    transform: translate(-50%, -40%);
  }
  .p-audition__support--items .item__card--img {
    margin-top: 5px;
    margin-bottom: 0;
  }
  .p-audition__support--items .item__card--title {
    font-size: 14px;
    line-height: 1.5;
  }
  .p-audition .l-content__precautions {
    max-width: 100%;
    padding: 0 20px;
  }
  .p-audition .c-button--large span {
    padding: 0 55px 0 85px;
  }
}
.p-audition-yum {
  background: linear-gradient(179.8deg, rgba(193, 241, 251, 0.19) 58.7%, rgba(193, 241, 251, 0.19) 78.43%, rgba(198, 212, 255, 0.23) 100.63%), #FFF;
}
.p-audition-yum::after, .p-audition-yum::before {
  background-image: url(../images/audition-yum/bg-audition-yum-page.png);
}
.p-audition-yum .c-kv {
  background-image: url(../images/audition-yum/img-kv.png);
}
.p-audition-yum .c-kv::after {
  background-image: url(../images/common/bg-curve-blue.png);
}
.p-audition-yum .c-letter__text {
  line-height: 30px;
}
.p-audition-yum .p-about__kv--inner {
  background-image: url(../images/audition-yum/banner.png);
}
.p-audition-yum .p-about__kv--inner::before {
  border-color: #56BBDD;
}
.p-audition-yum .p-about__kv--title {
  color: #56BBDD;
}
.p-audition-yum .p-about__kv--line {
  background: #56BBDD;
}

@media screen and (max-width: 768px) {
  .p-audition-yum::before {
    background-image: url(../images/audition-yum/bg-audition-yum-page-sp.png);
  }
  .p-audition-yum .c-kv {
    background-image: url(../images/audition-yum/img-kv-sp.png);
    background-color: #FEFBFF;
  }
  .p-audition-yum .c-kv::after {
    background-image: url(../images/common/bg-curve-blue-sp.png);
  }
  .p-audition-yum .p-about__kv--inner {
    background-image: url(../images/audition-yum/banner-sp.png);
  }
  .p-audition-yum .l-content__precautions {
    padding: 0 20px;
  }
  .p-audition-yum .c-button--large span {
    padding: 0 55px 0 85px;
  }
}
.p-story {
  background: linear-gradient(179.8deg, rgba(193, 251, 240, 0.19) 51.45%, rgba(167, 250, 234, 0.19) 66.26%, rgba(198, 212, 255, 0.23) 77.9%, rgba(198, 212, 255, 0.23) 90.68%), #FFF;
}
.p-story .p-about__kv--content {
  max-width: 100%;
}
.p-story .p-about__kv--inner {
  position: relative;
  padding: 0 24px;
}
.p-story .p-about__kv--inner::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border-radius: 18px;
  border: 2px solid #56BAA7;
  pointer-events: none;
}
.p-story .c-about {
  padding-top: 110px;
}
.p-story .c-about::after, .p-story .c-about::before {
  background: url(../images/story/bg-decor.png) top left/1440px auto repeat-y;
  height: calc(100% - 140px);
}
.p-story .c-about::after {
  background-position-x: right;
}
.p-story .c-about__content {
  gap: 0;
  margin-top: 0;
}
.p-story .c-about__content--text {
  margin: 0;
}
.p-story .l-info {
  padding: 0 24px;
}
.p-story .c-audition {
  background: url(../images/story/bg-audition.jpg) top center/1440px auto repeat-x;
}
.p-story .c-audition::before {
  display: none;
}
.p-story__image {
  position: relative;
  display: inline-block;
}
.p-story__image--box {
  box-shadow: 5px 5px 0px rgba(37, 185, 195, 0.28);
  border-radius: 20px;
}
.p-story__image video, .p-story__image--box-2 {
  border: 2px solid rgba(37, 185, 195, 0.35);
}
.p-story__caption {
  margin-top: -138px;
  text-align: center;
  position: relative;
  z-index: 5;
}
.p-story__caption--2 {
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 1;
  width: 100%;
  text-align: center;
}
.p-story__link-all {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
}
.p-story__list ul {
  display: flex;
  justify-content: center;
}
.p-story__list ul li {
  flex: 1 0 auto;
}
.p-story__list--item {
  text-align: center;
  width: 241px;
  padding: 50px 0 0 20px;
  background: url(../images/story/icon-story-star-01.svg) 0 0/215px auto no-repeat;
}
.p-story__list--item-2 {
  background-image: url(../images/story/icon-story-star-02.svg);
}
.p-story__list--item-3 {
  background-image: url(../images/story/icon-story-star-03.svg);
}
.p-story__list--item-4 {
  background-image: url(../images/story/icon-story-star-04.svg);
}
.p-story__list--item-5 {
  background-image: url(../images/story/icon-story-star-05.svg);
}
.p-story__list--image {
  padding-bottom: 25px;
  height: 211px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.p-story__list--title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.05em;
  padding-bottom: 15px;
}
.p-story__list--title-en {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
  .p-story__list li {
    flex: 1 0 25%;
  }
  .p-story__list--item {
    width: auto;
    background-size: 80% auto;
  }
}
@media screen and (max-width: 768px) {
  .p-story .c-kv {
    min-height: 390px;
    background-position: top center;
  }
  .p-story .c-kv::after {
    bottom: -205px;
  }
  .p-story .p-about__kv--content {
    margin-top: 10px;
  }
  .p-story .p-about__kv--title {
    justify-content: center;
  }
  .p-story .p-about__kv--line {
    display: inline-block;
    width: 74px;
  }
  .p-story .c-about {
    padding-top: 0;
  }
  .p-story .c-about::after, .p-story .c-about::before {
    background-image: url(../images/story/bg-decor-sp.png);
    background-size: 402px auto;
    display: block;
    top: 650px;
    height: calc(100% - 650px);
  }
  .p-story .c-about .l-about {
    margin: 14px 24px 0;
  }
  .p-story .c-audition {
    padding: 60px 0 120px;
  }
  .p-story__image--box {
    border-radius: 10px;
  }
  .p-story__caption {
    margin-top: -57px;
  }
  .p-story__caption img {
    max-width: 95%;
  }
  .p-story__list {
    padding: 0 10px;
  }
  .p-story__list ul {
    flex-wrap: wrap;
  }
  .p-story__list ul li {
    flex: 0 1 50%;
    text-align: center;
    margin-bottom: 20px;
  }
  .p-story__list ul li:last-child {
    margin-bottom: 0;
  }
  .p-story__list ul li.sp-full-center {
    flex: 0 1 100%;
    display: flex;
    justify-content: center;
  }
  .p-story__list ul li.sp-full-center .p-story__list--item {
    width: 50%;
  }
  .p-story__list ul li.sp-order-1 {
    order: 1;
  }
  .p-story__list ul li.sp-order-2 {
    order: 2;
  }
  .p-story__list ul li.sp-order-3 {
    order: 3;
  }
  .p-story__list ul li.sp-order-4 {
    order: 4;
  }
  .p-story__list ul li.sp-order-5 {
    order: 5;
  }
  .p-story__list--item {
    display: block;
    padding-top: 10vw;
    padding-left: 15px;
  }
}
@media screen and (max-width: 480px) {
  .p-story__list--item {
    padding-top: 28px;
    padding-left: 10px;
    background-size: 85% auto;
  }
}
.c-text {
  font-size: 14px;
  font-weight: 400;
}

.c-text--gray {
  color: #5B5B5B;
}

.c-text--greenb {
  color: #107764;
}

.c-row {
  display: flex;
  flex-wrap: wrap;
}
.c-row.space-between {
  justify-content: space-between;
}
.c-row__item {
  flex: 1 0 auto;
  max-width: 100%;
}

.c-kv {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: url(../images/common/bg-kv.png) no-repeat center center;
  background-size: max(100%, 1440px) auto;
  aspect-ratio: 2/1;
  height: auto;
  min-height: 744px;
  width: 100%;
  padding: 0 10px 150px 10px;
}
.c-kv::after {
  content: "";
  background: url(../images/common/bg-curve-story.png) no-repeat center center/100% 100%;
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .c-kv {
    background: url(../images/common/bg-curve-story-sp.png) no-repeat center center;
    background-size: max(100%, 402px) auto;
    height: auto;
    min-height: 704px;
  }
  .c-kv::after {
    background: url(../images/common/curve-bg-sp.png) no-repeat center center/100% 100%;
    bottom: -162px;
    height: 238px;
    z-index: 0;
  }
}
.c-video .embed iframe,
.c-video .embed embed,
.c-video .embed img {
  max-width: 100%;
}

.c-button {
  display: inline-block;
  border-radius: 22px;
  cursor: pointer;
  margin-top: 4px;
  width: 194px;
  height: 44px;
}
.c-button span {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.05em;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  border: 2px solid #FFF;
  border-radius: 22px;
  color: #FFF;
  transform: translateY(-4px);
  transition: transform 0.3s;
}
.c-button--audition, .c-button--skyblue {
  background: rgba(77, 181, 216, 0.25);
  width: 100%;
  max-width: 310px;
  height: 64px;
  border-radius: 32px;
  margin-left: 4px;
}
.c-button--audition span, .c-button--skyblue span {
  background: linear-gradient(278.23deg, #49D7E6 22.34%, #32DBC3 61.08%);
  text-shadow: 0px 2px 0px rgba(77, 181, 216, 0.251);
  border-radius: 32px;
  position: relative;
  transform: translate(-4px, -4px);
}
.c-button--audition span::after, .c-button--audition span::before, .c-button--skyblue span::after, .c-button--skyblue span::before {
  content: "";
  background: url(../images/icon/ico-star.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
.c-button--audition span::before, .c-button--skyblue span::before {
  left: 24px;
}
.c-button--audition span::after, .c-button--skyblue span::after {
  right: 24px;
}
.c-button--skyblue span {
  font-size: 18px;
  line-height: 22px;
}
.c-button--audition {
  width: 320px;
  height: 50px;
  margin-left: 0;
}
.c-button--audition span {
  font-size: 16px;
  line-height: 19px;
  transform: translateY(-4px);
}
.c-button--pink {
  background: rgba(225, 212, 255, 0.83);
}
.c-button--pink span {
  background: linear-gradient(89.7deg, #C568FF 0.81%, #BBAAFF 96.17%);
  text-shadow: 0px 2px 0px #B86AF0;
}
.c-button--blue {
  background: #C3E3F3;
}
.c-button--blue span {
  background: linear-gradient(89.7deg, #219FF2 0.81%, #1FC8E6 96.17%);
  text-shadow: 0px 2px 0px #24A4D7;
}
.c-button--menu {
  background: #C3E3F3;
  width: 40px;
  height: 40px;
}
.c-button--menu span {
  background: linear-gradient(270deg, #64DFC7 12.5%, #56BAA7 93.75%);
  padding: 0;
}
.c-button--menu span::before, .c-button--menu span::after {
  content: "";
  background: url(../images/common/icon-menu-close.svg) center/12px 12px no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.c-button--menu span::before {
  background-image: url(../images/common/icon-menu-bar.svg);
  background-size: 18px 12px;
  opacity: 1;
}
.c-button--menu.active {
  background: #F4F4F4;
}
.c-button--menu.active span {
  background: linear-gradient(270deg, #F4F4F4 12.5%, #E9E9E9 93.75%);
}
.c-button--menu.active span::before {
  opacity: 0;
}
.c-button--menu.active span::after {
  opacity: 1;
}
.c-button--menu:hover span {
  transform: translateY(-4px);
}
.c-button--banner---top {
  max-width: 776px;
  width: 100%;
  height: 92px;
  background-color: #C3E3F3;
  margin: 0 auto;
  border-radius: 9px;
}
.c-button--banner---top span {
  border-radius: 10px;
  width: 776px;
  padding: 0;
}
.c-button--banner---top span img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-button--large {
  width: 772px;
  height: 110px;
  max-width: 100%;
  border-radius: 10px;
}
.c-button--large span {
  font-size: 16px;
  line-height: 19px;
  justify-content: flex-start;
  padding: 0 73px 0 111px;
  border-radius: 10px;
}
.c-button--large span::before, .c-button--large span::after {
  content: "";
  background: url(../images/icon/ico-arrow-right.svg) center/100% auto no-repeat;
  width: 27px;
  height: 23px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.c-button--large span::before {
  background-image: url(../images/icon/ico-circle-pencil.svg);
  left: 39px;
  width: 54px;
  height: 54px;
}
.c-button--large span::after {
  right: 39px;
}
.c-button--large span.entry--pink::before {
  background-image: url(../images/icon/ico-circle-pencil-pink.svg);
}
.c-button--large span b {
  font-size: 24px;
  text-transform: uppercase;
  margin-right: 16px;
}

.c-button-2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  height: 36px;
  background: linear-gradient(278.23deg, #49D7E6 22.34%, #32DBC3 61.08%);
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.05em;
  color: #FFF;
  text-shadow: 0px 2px 0px rgba(18, 143, 131, 0.25);
}

.c-button-3 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 28px;
  background: #6B99D7;
  border-radius: 4px;
  color: #FFF;
  padding: 0 8px;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
}
.c-button-3[target=_blank]::after {
  content: "";
  display: inline-block;
  background-color: #FFF;
  -webkit-mask-image: url(../images/icon/ico-blank.svg);
          mask-image: url(../images/icon/ico-blank.svg);
  width: 14px;
  height: 14px;
  margin-left: 6px;
}

@media screen and (max-width: 768px) {
  .c-button--large {
    width: auto;
    height: 100px;
  }
  .c-button--large span {
    padding: 0 60px 0 85px;
  }
  .c-button--large span::before {
    left: 22px;
    width: 45px;
    height: 45px;
  }
  .c-button--large span::after {
    right: 22px;
  }
}
.c-audition {
  position: relative;
  background: linear-gradient(180deg, rgba(240, 254, 251, 0.302) 0%, rgba(188, 252, 255, 0.302) 100%);
  padding-top: 88px;
  padding-bottom: 175px;
}
.c-audition::before {
  content: "";
  background: linear-gradient(180deg, #C2EBE6 -91.94%, rgba(161, 252, 240, 0) 77.42%);
  width: 100%;
  height: 124px;
  position: absolute;
  top: 0;
  left: 0;
}
.c-audition::after {
  content: "";
  background: url(../images/top/audition/cover.png) bottom center/auto 100% repeat-x;
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 198px;
  z-index: 0;
}
.c-audition .l-audition {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 10px;
}
.c-audition__content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 53px;
  gap: 32px;
  width: 100%;
}
.c-audition__card {
  width: 50%;
  padding: 40px 36px;
  background-color: #FFF;
  border-radius: 20px 20px 28px;
  position: relative;
}
.c-audition__card.card--pink {
  border: 3px solid #E3A8FF;
  box-shadow: 6px 6px 0px #F0D9FF;
  background: url(../images/top/audition/card-pink.png) no-repeat center center/auto 100%;
  background-color: #FFF;
}
.c-audition__card.card--blue {
  border: 3px solid #58CDF5;
  box-shadow: 6px 6px 0px #B0EBFF;
  background: url(../images/top/audition/card-blue.png) no-repeat center center/auto 100%;
  background-color: #FFF;
}
.c-audition__card--title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 484px;
  margin: 0 auto 22px;
  z-index: 1;
}
.c-audition__card--line {
  width: 92px;
  height: 10px;
  border: none;
  outline: none;
  margin: 0 auto;
}
.c-audition__card--line.line--pink {
  background: linear-gradient(89.7deg, rgba(197, 104, 255, 0.4) 0.81%, rgba(187, 175, 255, 0.4) 96.17%);
}
.c-audition__card--line.line--blue {
  background: linear-gradient(89.7deg, rgba(33, 159, 242, 0.4) 0.81%, rgba(31, 200, 230, 0.4) 96.17%);
}
.c-audition__card--content {
  position: relative;
}
.c-audition__card--desc {
  text-align: center;
  max-width: 323px;
  margin: 26px auto 23px auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}
.c-audition__card star-base, .c-audition__card .star__pink-s,
.c-audition__card .star__blue-s, .c-audition__card .star__pink-m,
.c-audition__card .star__blue-m {
  position: absolute;
}
.c-audition__card .star__pink-m,
.c-audition__card .star__blue-m {
  top: 82%;
  left: -4%;
}
@media screen and (max-width: 1025px) {
  .c-audition__card .star__pink-m,
  .c-audition__card .star__blue-m {
    top: 60%;
    left: -6%;
  }
}
.c-audition__card .star__pink-s,
.c-audition__card .star__blue-s {
  top: 58%;
  left: 10%;
}
@media screen and (max-width: 1025px) {
  .c-audition__card .star__pink-s,
  .c-audition__card .star__blue-s {
    top: 35%;
    left: 12%;
  }
}
.c-audition__card--btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .c-audition {
    height: auto;
    padding-bottom: 130px;
  }
  .c-audition::after {
    background: url(../images/top/audition/cover-sp.png) repeat-x bottom center/auto 100%;
    height: auto;
    min-height: 200px;
  }
  .c-audition .l-audition {
    margin: 0 16px;
    padding: 0;
  }
  .c-audition__content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
  }
  .c-audition__card {
    width: calc(50% - 8px);
    padding: 26px 14px;
    position: relative;
    min-height: 320px;
    overflow: hidden;
  }
  .c-audition__card.card--pink {
    background: url(../images/top/audition/card-pink-bg.png) no-repeat center center/100% 100%;
    background-color: #FFF;
  }
  .c-audition__card.card--pink::before, .c-audition__card.card--pink::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
  }
  .c-audition__card.card--pink::before {
    background: url(../images/top/audition/card-pink-decor.png) no-repeat top center/100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
  }
  .c-audition__card.card--pink::after {
    background: url(../images/top/audition/card-pink-model.png) no-repeat bottom right/auto 100%;
    top: 68px;
    left: auto;
    right: -56px;
    transform: scale(0.9);
  }
}
@media screen and (max-width: 768px) and (min-width: 599px) {
  .c-audition__card.card--pink::after {
    top: 90px;
    left: auto;
    transform: scale(0.9);
  }
}
@media screen and (max-width: 768px) {
  .c-audition__card.card--blue {
    background: url(../images/top/audition/card-blue-bg.png) no-repeat center center/100% 100%;
    background-color: #FFF;
  }
  .c-audition__card.card--blue::before, .c-audition__card.card--blue::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
  }
  .c-audition__card.card--blue::before {
    background: url(../images/top/audition/card-blue-decor.png) no-repeat top center/100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
  }
  .c-audition__card.card--blue::after {
    background: url(../images/top/audition/card-blue-model.png) no-repeat bottom right/auto 100%;
    top: 40px;
    left: auto;
    right: -42px;
    transform: scale(0.7);
  }
}
@media screen and (max-width: 768px) and (min-width: 599px) {
  .c-audition__card.card--blue::after {
    top: 90px;
    left: auto;
    right: -18px;
    transform: scale(0.9);
  }
}
@media screen and (max-width: 768px) {
  .c-audition__card--title {
    max-width: 484px;
    margin: 0 auto 27px;
  }
  .c-audition__card--line {
    width: 30%;
    max-width: 92px;
  }
  .c-audition__card--content {
    max-width: 310px;
    margin: 0 auto;
  }
  .c-audition__card--desc {
    font-size: 14px;
    max-width: 100%;
    min-height: 100px;
  }
  .c-audition__card .star__pink-m,
  .c-audition__card .star__blue-m {
    width: 42px;
    height: 39px;
    top: -35px;
    left: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 500px) {
  .c-audition__card .star__pink-m,
  .c-audition__card .star__blue-m {
    left: 15%;
  }
}
@media screen and (max-width: 768px) {
  .c-audition__card .star__pink-s,
  .c-audition__card .star__blue-s {
    width: 27px;
    height: 25px;
    top: -55px;
    left: 30px;
  }
}
@media screen and (max-width: 768px) and (min-width: 500px) {
  .c-audition__card .star__pink-s,
  .c-audition__card .star__blue-s {
    left: 25%;
  }
}
@media screen and (max-width: 768px) {
  .c-audition__card--btn .c-button--audition {
    max-width: 320px;
  }
  .c-audition__card--btn .c-button span {
    max-width: 320px;
  }
}
.c-about {
  position: relative;
  background-color: #f3fefc;
  padding-top: 142px;
  padding-bottom: 104px;
}
.c-about::before {
  content: "";
  position: absolute;
  top: 140px;
  left: 0;
  width: 50%;
  height: 89%;
  background: url(../images/top/about/left-decor-bg.png) no-repeat left bottom;
  background-size: auto max(100%, 1440px);
  z-index: 0;
  pointer-events: none;
}
.c-about::after {
  content: "";
  position: absolute;
  top: 140px;
  right: 0;
  width: 50%;
  height: 89%;
  background: url(../images/top/about/right-decor-bg.png) no-repeat right bottom;
  background-size: auto max(100%, 1440px);
  z-index: 0;
  pointer-events: none;
}
.c-about .l-about {
  position: relative;
  max-width: 925px;
  margin: -70px auto 0 auto;
  padding: 0 10px;
  z-index: 1;
}
.c-about > * {
  position: relative;
  z-index: 2;
}
.c-about__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-transform: uppercase;
  margin-left: 14px;
}
.c-about__heading--title {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
  color: #1E7AB7;
  font-family: "Poppins", sans-serif;
}
.c-about__heading--line {
  margin: 4px auto 12px;
  width: 92px;
  height: 10px;
  background: linear-gradient(89.7deg, rgba(33, 159, 242, 0.4) 0.81%, rgba(31, 200, 230, 0.4) 96.17%);
  border: none;
  outline: none;
}
.c-about__heading--sub {
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: 2px;
  color: #333;
}
.c-about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 53px;
}
.c-about__content--text {
  font-size: 22px;
  line-height: 1.9;
  letter-spacing: 2px;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin-left: 14px;
}
.c-about__content--item {
  max-width: 770px;
}
.c-about__btn {
  margin: 60px auto 0;
  max-width: 310px;
}

@media screen and (max-width: 768px) {
  .c-about {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .c-about::before, .c-about::after {
    display: none;
  }
  .c-about .fz-17-sp {
    font-size: 17px !important;
  }
  .c-about .l-about {
    margin: 0 10px;
    padding: 0;
  }
  .c-about__heading {
    padding-left: 0;
  }
  .c-about__heading--title {
    font-size: 40px;
  }
  .c-about__heading--title-2 {
    font-size: 28px;
    line-height: 34px;
  }
  .c-about__heading--line {
    margin: 0 auto;
  }
  .c-about__heading--sub {
    font-size: 18px;
  }
  .c-about__content {
    margin-top: 50px;
  }
  .c-about__content--text {
    margin-left: 0;
    font-size: 18px;
  }
  .c-about__btn {
    margin: 40px auto 0;
  }
}
.c-info {
  position: relative;
  background-color: #f3fefc;
  padding-top: 140px;
  padding-bottom: 80px;
}
.c-info::before {
  content: "";
  position: absolute;
  top: 140px;
  left: 0;
  width: 50%;
  height: 178%;
  background: url(../images/about/about-left-decor.png) no-repeat left bottom;
  background-size: auto max(100%, 1440px);
  z-index: 0;
}
.c-info::after {
  content: "";
  position: absolute;
  top: 140px;
  right: 0;
  width: 50%;
  height: 178%;
  background: url(../images/about/about-right-decor.png) no-repeat right bottom;
  background-size: auto max(100%, 1440px);
  z-index: 0;
}
.c-info .l-info {
  position: relative;
  max-width: 900px;
  margin: -70px auto 0 auto;
  padding: 0 10px;
  z-index: 1;
}
.c-info__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 14px;
}
.c-info__content--text {
  font-size: 22px;
  line-height: 2;
  letter-spacing: 2px;
  font-weight: 500;
  color: #333;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-info {
    padding-top: 20px;
    padding-bottom: 56px;
  }
  .c-info::before, .c-info::after {
    display: none;
  }
  .c-info .l-info {
    margin: 0 14px;
    padding: 0;
  }
  .c-info__content--text {
    font-size: 18px;
    letter-spacing: 1.5px;
  }
  .c-info .fz-17-sp {
    font-size: 17px !important;
  }
}
.c-usecases {
  position: relative;
  padding: 0 10px 180px 10px;
  background-color: transparent;
}
.c-usecases::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f3fefc;
  z-index: -1;
}
.c-usecases::after {
  content: "";
  background: url(../images/about/cover-usecases.png) bottom center/auto 100% repeat-x;
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 198px;
  z-index: 0;
}
.c-usecases .l-usecases {
  max-width: 1160px;
  margin: 0 auto;
}
.c-usecases__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}
.c-usecases__heading--title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2px;
  color: #333;
  font-family: "Poppins", sans-serif;
  color: #1E7AB7;
}
.c-usecases__heading--line {
  width: 6px;
  height: 2px;
  border: none;
  outline: none;
  background-color: #1E7AB7;
}
.c-usecases__heading--sub {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 2px;
  color: #333;
}
.c-usecases__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 28px;
  margin-top: 24px;
  width: 100%;
}
.c-usecases__card {
  width: 100%;
  padding: 8px;
  position: relative;
  min-height: 363px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(180deg, rgba(88, 219, 191, 0.5) 4.07%, rgba(121, 219, 206, 0.5) 99.6%, rgba(179, 197, 255, 0.5) 107.27%, rgba(179, 197, 255, 0.5) 116.46%) border-box;
  box-sizing: border-box;
}
.c-usecases__card::before {
  content: "";
  background: url(../images/icon/ico-corner.svg) no-repeat center center/100% 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.c-usecases__card::after {
  content: "";
  background: url(../images/icon/ico-corner.svg) no-repeat center center/100% 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 10px;
  right: 10px;
  transform: rotate(90deg);
}
.c-usecases__card--img {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 82px;
  margin: 40px auto 38px;
}
.c-usecases__card--img::before {
  content: "";
  background: url(../images/icon/ico-corner.svg) no-repeat center center/100% 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  transform: rotate(270deg);
}
.c-usecases__card--img::after {
  content: "";
  background: url(../images/icon/ico-corner.svg) no-repeat center center/100% 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  transform: rotate(180deg);
}
.c-usecases__card--content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.c-usecases__card--title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  color: #333;
}
.c-usecases__card--icon {
  width: 16px;
  height: 16px;
}
.c-usecases__card--desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #5B5B5B;
  margin: 0 14px;
}
.c-usecases__desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 69px auto 0;
  max-width: 970px;
}
.c-usecases__desc--text {
  font-size: 22px;
  line-height: 2;
  letter-spacing: 2px;
  font-weight: 500;
  color: #333;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-usecases {
    height: auto;
    padding-bottom: 130px;
  }
  .c-usecases::after {
    background: url(../images/about/cover-usecases-sp.png) repeat-x center center/auto 100%;
    height: auto;
    min-height: 200px;
  }
  .c-usecases__heading--title {
    font-size: 20px;
  }
  .c-usecases__heading--sub {
    font-size: 18px;
  }
  .c-usecases__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .c-usecases__card {
    min-height: 294px;
  }
  .c-usecases__card--title {
    font-size: 18px;
    flex-wrap: wrap;
    text-align: center;
  }
  .c-usecases__card--img {
    min-height: 103px;
    margin: 14px auto 24px;
  }
  .c-usecases__card--desc {
    font-size: 15px;
    margin: 0 12px;
  }
  .c-usecases__desc {
    max-width: 100%;
    width: 100%;
    margin: 59px auto 0;
  }
  .c-usecases__desc--text {
    font-size: 18px;
  }
}
.c-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #000;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: left center;
          mask-position: left center;
}
.c-icon.ico-instagram {
  -webkit-mask-image: url(../images/icon/ico-instagram.svg);
          mask-image: url(../images/icon/ico-instagram.svg);
}
.c-icon.ico-pinterest {
  -webkit-mask-image: url(../images/icon/ico-pinterest.svg);
          mask-image: url(../images/icon/ico-pinterest.svg);
}
.c-icon.ico-linkedin {
  -webkit-mask-image: url(../images/icon/ico-linkedin.svg);
          mask-image: url(../images/icon/ico-linkedin.svg);
}
.c-icon.ico-facebook {
  -webkit-mask-image: url(../images/icon/ico-facebook.svg);
          mask-image: url(../images/icon/ico-facebook.svg);
}
.c-icon.ico-x {
  width: 40px;
  height: 40px;
  background: url(../images/icon/ico-x.png) no-repeat center/100% 100%;
}

.c-link--blue {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #6B99D7;
}
.c-link--play {
  text-decoration-line: underline;
  color: #107764;
}
.c-link--play::after {
  display: inline-block;
  content: "";
  background: url(../images/icon/ico-play.svg) 0 0/100% auto no-repeat;
  width: 13px;
  height: 13px;
  margin-left: 5px;
}

.c-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
}
.c-heading--title {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.5;
  color: #1E7AB7;
  font-family: "Poppins", sans-serif;
}
.c-heading--line {
  margin: 0 auto;
  width: 44px;
  height: 8px;
  background: linear-gradient(89.7deg, rgba(33, 159, 242, 0.4) 0.81%, rgba(31, 200, 230, 0.4) 96.17%);
  border: none;
  outline: none;
}
.c-heading--sub {
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: 2px;
  color: #333;
}
.c-heading--style1 .c-heading--title {
  font-size: 40px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
.c-heading--style1 .c-heading--sub {
  font-weight: 600;
  font-size: 18px;
  line-height: 34px;
  letter-spacing: 2px;
  margin-top: -8px;
  font-family: "Poppins", sans-serif;
}
.c-heading--style2 {
  justify-content: flex-start;
  flex-direction: unset;
  text-transform: uppercase;
}
.c-heading--style2 .c-heading--title {
  display: flex;
  align-items: baseline;
  gap: 32px;
  line-height: 1.2;
  color: #1E7AB7;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
}
.c-heading--style2 .c-heading--title-2 {
  font-size: 40px;
  font-weight: 700;
}
.c-heading--style2 .c-heading--line {
  display: inline-block;
  align-self: center;
  margin-top: 24px;
  width: 26px;
  height: 4px;
  border: none;
  outline: none;
  background: linear-gradient(89.7deg, rgba(33, 159, 242, 0.4) 0.81%, rgba(31, 200, 230, 0.4) 96.17%);
}
.c-heading--style2 .c-heading--sub {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  margin-left: -22px;
}
.c-heading--style2 .c-heading--sub-2 {
  font-size: 18px;
  margin-left: -12px;
}
.c-heading--style2 .c-heading--sub.text-blue {
  color: rgba(33, 159, 242, 0.6);
}
.c-heading--style2 .c-heading--sub.text-pink {
  color: rgba(197, 104, 255, 0.6);
}
.c-heading--style2--line--pink .c-heading--sub {
  position: relative;
  padding-left: 26px;
}
.c-heading--style2--line--pink .c-heading--sub::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 4px;
  background: rgba(197, 104, 255, 0.6);
}
.c-heading--style2--line--blue .c-heading--sub, .c-heading--style2--inline--blue .c-heading--sub {
  position: relative;
  padding-left: 26px;
}
.c-heading--style2--line--blue .c-heading--sub::before, .c-heading--style2--inline--blue .c-heading--sub::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 4px;
  background: rgba(33, 159, 242, 0.6);
}
.c-heading.heading--pink .c-heading--line {
  background: linear-gradient(89.7deg, rgba(197, 104, 255, 0.4) 0.81%, rgba(187, 170, 255, 0.4) 96.17%);
}
.c-heading.heading--pink .c-heading--sub {
  color: rgba(197, 104, 255, 0.6);
}
.c-heading.heading--blue .c-heading--line {
  background: linear-gradient(89.7deg, rgba(33, 159, 242, 0.4) 0.81%, rgba(31, 200, 230, 0.4) 96.17%);
}
.c-heading.heading--blue .c-heading--sub {
  color: #219FF2;
}

@media screen and (max-width: 768px) {
  .c-heading--title {
    text-align: center;
  }
  .c-heading--style1 .fz28-sp {
    font-size: 28px;
  }
  .c-heading--style2 .c-heading--title {
    font-size: 34px;
    gap: 12px;
  }
  .c-heading--style2 .c-heading--line {
    margin-top: 12px;
  }
  .c-heading--style2 .c-heading--sub {
    font-size: 16px;
    margin-left: 0;
  }
  .c-heading--style2--line--pink {
    flex-direction: column;
  }
  .c-heading--style2--line--blue, .c-heading--style2--inline--blue {
    flex-direction: column;
  }
  .c-heading--style2--inline--blue {
    flex-direction: unset;
  }
}
.c-list-step ul > li {
  display: flex;
  gap: 30px;
  padding: 35px 30px;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 2px solid transparent;
}
.c-list-step ul > li:last-child {
  margin-bottom: 0;
}
.c-list-step ul > li > * {
  flex: 0 1 auto;
}
.c-list-step--pink ul > li {
  background: url(../images/common/bg-pink-list-step-item.png) top right/108px auto no-repeat padding-box, linear-gradient(#FFF, #FFF) padding-box, linear-gradient(0deg, rgba(163, 38, 241, 0.4) 0%, rgba(135, 105, 255, 0.4) 100%) border-box;
}
.c-list-step--blue ul > li {
  background: url(../images/common/bg-blue-list-step-item.png) top right/108px auto no-repeat padding-box, linear-gradient(#FFF, #FFF) padding-box, linear-gradient(0deg, rgba(33, 159, 242, 0.4) 0%, rgba(31, 200, 230, 0.4) 100%) border-box;
}
.c-list-step__number {
  display: flex;
  align-items: center;
}
.c-list-step__number span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
}
.c-list-step__number--pink span {
  background: url(../images/common/bg-list-number-pink.svg) 0 0/100% auto no-repeat;
}
.c-list-step__number--blue span {
  background: url(../images/common/bg-list-number-blue.svg) 0 0/100% auto no-repeat;
}
.c-list-step__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.c-list-step__desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.9;
}

.c-list-dot li {
  padding-left: 20px;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  word-break: break-all;
  color: #5B5B5B;
}
.c-list-dot li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 0px;
  top: 14px;
}
.c-list-dot--pink li::before {
  background: #DDAFE7;
}
.c-list-dot--blue li::before {
  background: #56BBDD;
}

.c-list-image {
  display: flex;
  gap: 32px;
}
.c-list-image li {
  flex: 1 0 0;
  text-align: center;
}
.c-list-image__image {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding-bottom: 25px;
}
.c-list-image__image--2 img {
  transform: translateX(20px);
}
.c-list-image__desc {
  font-weight: 400;
  font-size: 12px;
  line-height: 2;
  color: #5B5B5B;
}
.c-list-image__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}
.c-list-image .c-box {
  padding: 32px 12px 0;
  min-height: 192px;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .c-list-step ul > li {
    gap: 17px;
    padding: 24px 24px 24px 17px;
    margin-bottom: 20px;
  }
  .c-list-step__number span {
    font-size: 20px;
  }
  .c-list-step__title {
    font-size: 18px;
  }
  .c-list-step__desc {
    font-size: 14px;
  }
  .c-list-image {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  .c-list-image li {
    flex: none;
    width: calc(50% - 3px);
  }
  .c-list-image .c-box {
    height: auto;
    padding: 30px 4px 20px;
    margin-bottom: 0;
    font-size: 14px;
    min-height: 224px;
  }
  .c-list-image__title {
    min-height: 84px;
  }
}
@media screen and (max-width: 480px) {
  .c-list-image__title {
    font-size: 11px;
  }
}
.c-box {
  border-radius: 10px;
  border: 2px solid transparent;
  padding: 36px;
  color: #333;
}
.c-box a {
  text-decoration-line: underline;
  color: #107764;
}
.c-box--pink {
  background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(0deg, rgba(163, 38, 241, 0.4) 0%, rgba(135, 105, 255, 0.4) 100%) border-box;
}
.c-box--blue {
  background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(0deg, rgba(33, 159, 242, 0.4) 0%, rgba(31, 200, 230, 0.4) 100%) border-box;
}

@media screen and (max-width: 768px) {
  .c-box {
    padding: 24px;
  }
}
.c-requirement__row .c-list-dot {
  margin-left: 10px;
}
.c-requirement__heading {
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 15px;
}
.c-requirement__heading .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 16px;
  border: 1px solid transparent;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.05em;
}
.c-requirement__heading span {
  font-size: 26px;
  line-height: 1.8;
  letter-spacing: 2px;
}
.c-requirement__heading--pink::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(192.03deg, rgba(194, 103, 243, 0.5) 12.02%, rgba(217, 112, 255, 0.5) 56.83%);
  margin-top: 16px;
}
.c-requirement__heading--pink .number {
  background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(0deg, rgba(163, 38, 241, 0.4) 0%, rgba(135, 105, 255, 0.4) 100%) border-box;
  color: #C56AFF;
}
.c-requirement__heading--blue::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #AAE7FF;
  margin-top: 16px;
}
.c-requirement__heading--blue .number {
  background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(0deg, rgba(33, 159, 242, 0.4) 0%, rgba(31, 200, 230, 0.4) 100%) border-box;
  color: #56BBDD;
}

@media screen and (max-width: 768px) {
  .c-requirement__heading .number {
    font-size: 20px;
  }
  .c-requirement__heading span {
    font-size: 20px;
  }
}
.c-letter {
  max-width: 1052px;
  padding: 56px 0;
  margin: 0 auto;
  border-radius: 10px;
  position: relative;
}
.c-letter::after, .c-letter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background: url(../images/common/letter-banner.png) top center/100% auto no-repeat;
  height: 50%;
}
.c-letter::after {
  top: auto;
  bottom: 0;
  background-position: bottom center;
}
.c-letter--blue::after, .c-letter--blue::before {
  background-image: url(../images/common/letter-banner-blue.png);
}
.c-letter__text {
  font-size: 22px;
  font-weight: 500;
  line-height: 2;
  color: #333;
  max-width: 795px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .c-letter {
    padding: 40px;
  }
  .c-letter::after, .c-letter::before {
    background-image: url(../images/common/letter-banner-sp.png);
    left: -10px;
    width: calc(100% + 20px);
  }
  .c-letter--blue::after, .c-letter--blue::before {
    background-image: url(../images/common/letter-banner-blue-sp.png);
  }
  .c-letter__text {
    font-size: 18px;
  }
}
.c-positions__row {
  margin-top: 24px;
}
.c-positions__item--title {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  padding-left: 36px;
  color: #5B5B5B;
}
.c-positions__item--title.title--pink::before {
  content: "";
  position: absolute;
  background: url("../images/icon/ico-star-pink.svg");
  width: 24px;
  height: 24px;
  left: 0;
}
.c-positions__item--title.title--blue::before {
  content: "";
  position: absolute;
  background: url("../images/icon/ico-star-blue.svg");
  width: 24px;
  height: 24px;
  left: 0;
}
.c-positions__item ul {
  padding-left: 56px;
}
.c-positions__item ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #5B5B5B;
  list-style: disc;
}
.c-positions__item ul li.list--pink::marker {
  color: #DDAFE7;
}
.c-positions__item ul li.list--blue::marker {
  color: #56BBDD;
}

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

@media screen and (min-width: 769px) {
  .pd-top-0 {
    padding-top: 0 !important;
  }
  .pd-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .pd-top-5 {
    padding-top: 5px;
  }
  .pd-bottom-5 {
    padding-bottom: 5px;
  }
  .mg-5 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .mg-top-5 {
    margin-top: 5px;
  }
  .mg-bottom-5 {
    margin-bottom: 5px;
  }
  .pd-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .pd-top-10 {
    padding-top: 10px;
  }
  .pd-bottom-10 {
    padding-bottom: 10px;
  }
  .mg-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .mg-top-10 {
    margin-top: 10px;
  }
  .mg-bottom-10 {
    margin-bottom: 10px;
  }
  .pd-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .pd-top-15 {
    padding-top: 15px;
  }
  .pd-bottom-15 {
    padding-bottom: 15px;
  }
  .mg-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .mg-top-15 {
    margin-top: 15px;
  }
  .mg-bottom-15 {
    margin-bottom: 15px;
  }
  .pd-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .pd-top-20 {
    padding-top: 20px;
  }
  .pd-bottom-20 {
    padding-bottom: 20px;
  }
  .mg-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .mg-top-20 {
    margin-top: 20px;
  }
  .mg-bottom-20 {
    margin-bottom: 20px;
  }
  .pd-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .pd-top-25 {
    padding-top: 25px;
  }
  .pd-bottom-25 {
    padding-bottom: 25px;
  }
  .mg-25 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .mg-top-25 {
    margin-top: 25px;
  }
  .mg-bottom-25 {
    margin-bottom: 25px;
  }
  .pd-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .pd-top-30 {
    padding-top: 30px;
  }
  .pd-bottom-30 {
    padding-bottom: 30px;
  }
  .mg-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .mg-top-30 {
    margin-top: 30px;
  }
  .mg-bottom-30 {
    margin-bottom: 30px;
  }
  .pd-35 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .pd-top-35 {
    padding-top: 35px;
  }
  .pd-bottom-35 {
    padding-bottom: 35px;
  }
  .mg-35 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .mg-top-35 {
    margin-top: 35px;
  }
  .mg-bottom-35 {
    margin-bottom: 35px;
  }
  .pd-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pd-top-40 {
    padding-top: 40px;
  }
  .pd-bottom-40 {
    padding-bottom: 40px;
  }
  .mg-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .mg-top-40 {
    margin-top: 40px;
  }
  .mg-bottom-40 {
    margin-bottom: 40px;
  }
  .pd-45 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .pd-top-45 {
    padding-top: 45px;
  }
  .pd-bottom-45 {
    padding-bottom: 45px;
  }
  .mg-45 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .mg-top-45 {
    margin-top: 45px;
  }
  .mg-bottom-45 {
    margin-bottom: 45px;
  }
  .pd-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pd-top-50 {
    padding-top: 50px;
  }
  .pd-bottom-50 {
    padding-bottom: 50px;
  }
  .mg-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .mg-top-50 {
    margin-top: 50px;
  }
  .mg-bottom-50 {
    margin-bottom: 50px;
  }
  .pd-55 {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .pd-top-55 {
    padding-top: 55px;
  }
  .pd-bottom-55 {
    padding-bottom: 55px;
  }
  .mg-55 {
    margin-top: 55px;
    margin-bottom: 55px;
  }
  .mg-top-55 {
    margin-top: 55px;
  }
  .mg-bottom-55 {
    margin-bottom: 55px;
  }
  .pd-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .pd-top-60 {
    padding-top: 60px;
  }
  .pd-bottom-60 {
    padding-bottom: 60px;
  }
  .mg-60 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .mg-top-60 {
    margin-top: 60px;
  }
  .mg-bottom-60 {
    margin-bottom: 60px;
  }
  .pd-65 {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .pd-top-65 {
    padding-top: 65px;
  }
  .pd-bottom-65 {
    padding-bottom: 65px;
  }
  .mg-65 {
    margin-top: 65px;
    margin-bottom: 65px;
  }
  .mg-top-65 {
    margin-top: 65px;
  }
  .mg-bottom-65 {
    margin-bottom: 65px;
  }
  .pd-70 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pd-top-70 {
    padding-top: 70px;
  }
  .pd-bottom-70 {
    padding-bottom: 70px;
  }
  .mg-70 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .mg-top-70 {
    margin-top: 70px;
  }
  .mg-bottom-70 {
    margin-bottom: 70px;
  }
  .pd-75 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pd-top-75 {
    padding-top: 75px;
  }
  .pd-bottom-75 {
    padding-bottom: 75px;
  }
  .mg-75 {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .mg-top-75 {
    margin-top: 75px;
  }
  .mg-bottom-75 {
    margin-bottom: 75px;
  }
  .pd-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .pd-top-80 {
    padding-top: 80px;
  }
  .pd-bottom-80 {
    padding-bottom: 80px;
  }
  .mg-80 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .mg-top-80 {
    margin-top: 80px;
  }
  .mg-bottom-80 {
    margin-bottom: 80px;
  }
  .pd-85 {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .pd-top-85 {
    padding-top: 85px;
  }
  .pd-bottom-85 {
    padding-bottom: 85px;
  }
  .mg-85 {
    margin-top: 85px;
    margin-bottom: 85px;
  }
  .mg-top-85 {
    margin-top: 85px;
  }
  .mg-bottom-85 {
    margin-bottom: 85px;
  }
  .pd-90 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .pd-top-90 {
    padding-top: 90px;
  }
  .pd-bottom-90 {
    padding-bottom: 90px;
  }
  .mg-90 {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .mg-top-90 {
    margin-top: 90px;
  }
  .mg-bottom-90 {
    margin-bottom: 90px;
  }
  .pd-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .pd-top-95 {
    padding-top: 95px;
  }
  .pd-bottom-95 {
    padding-bottom: 95px;
  }
  .mg-95 {
    margin-top: 95px;
    margin-bottom: 95px;
  }
  .mg-top-95 {
    margin-top: 95px;
  }
  .mg-bottom-95 {
    margin-bottom: 95px;
  }
  .pd-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pd-top-100 {
    padding-top: 100px;
  }
  .pd-bottom-100 {
    padding-bottom: 100px;
  }
  .mg-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .mg-top-100 {
    margin-top: 100px;
  }
  .mg-bottom-100 {
    margin-bottom: 100px;
  }
  .pd-105 {
    padding-top: 105px;
    padding-bottom: 105px;
  }
  .pd-top-105 {
    padding-top: 105px;
  }
  .pd-bottom-105 {
    padding-bottom: 105px;
  }
  .mg-105 {
    margin-top: 105px;
    margin-bottom: 105px;
  }
  .mg-top-105 {
    margin-top: 105px;
  }
  .mg-bottom-105 {
    margin-bottom: 105px;
  }
  .pd-110 {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .pd-top-110 {
    padding-top: 110px;
  }
  .pd-bottom-110 {
    padding-bottom: 110px;
  }
  .mg-110 {
    margin-top: 110px;
    margin-bottom: 110px;
  }
  .mg-top-110 {
    margin-top: 110px;
  }
  .mg-bottom-110 {
    margin-bottom: 110px;
  }
  .pd-115 {
    padding-top: 115px;
    padding-bottom: 115px;
  }
  .pd-top-115 {
    padding-top: 115px;
  }
  .pd-bottom-115 {
    padding-bottom: 115px;
  }
  .mg-115 {
    margin-top: 115px;
    margin-bottom: 115px;
  }
  .mg-top-115 {
    margin-top: 115px;
  }
  .mg-bottom-115 {
    margin-bottom: 115px;
  }
  .pd-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .pd-top-120 {
    padding-top: 120px;
  }
  .pd-bottom-120 {
    padding-bottom: 120px;
  }
  .mg-120 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .mg-top-120 {
    margin-top: 120px;
  }
  .mg-bottom-120 {
    margin-bottom: 120px;
  }
  .pd-125 {
    padding-top: 125px;
    padding-bottom: 125px;
  }
  .pd-top-125 {
    padding-top: 125px;
  }
  .pd-bottom-125 {
    padding-bottom: 125px;
  }
  .mg-125 {
    margin-top: 125px;
    margin-bottom: 125px;
  }
  .mg-top-125 {
    margin-top: 125px;
  }
  .mg-bottom-125 {
    margin-bottom: 125px;
  }
  .pd-130 {
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .pd-top-130 {
    padding-top: 130px;
  }
  .pd-bottom-130 {
    padding-bottom: 130px;
  }
  .mg-130 {
    margin-top: 130px;
    margin-bottom: 130px;
  }
  .mg-top-130 {
    margin-top: 130px;
  }
  .mg-bottom-130 {
    margin-bottom: 130px;
  }
  .pd-135 {
    padding-top: 135px;
    padding-bottom: 135px;
  }
  .pd-top-135 {
    padding-top: 135px;
  }
  .pd-bottom-135 {
    padding-bottom: 135px;
  }
  .mg-135 {
    margin-top: 135px;
    margin-bottom: 135px;
  }
  .mg-top-135 {
    margin-top: 135px;
  }
  .mg-bottom-135 {
    margin-bottom: 135px;
  }
  .pd-140 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .pd-top-140 {
    padding-top: 140px;
  }
  .pd-bottom-140 {
    padding-bottom: 140px;
  }
  .mg-140 {
    margin-top: 140px;
    margin-bottom: 140px;
  }
  .mg-top-140 {
    margin-top: 140px;
  }
  .mg-bottom-140 {
    margin-bottom: 140px;
  }
  .pd-145 {
    padding-top: 145px;
    padding-bottom: 145px;
  }
  .pd-top-145 {
    padding-top: 145px;
  }
  .pd-bottom-145 {
    padding-bottom: 145px;
  }
  .mg-145 {
    margin-top: 145px;
    margin-bottom: 145px;
  }
  .mg-top-145 {
    margin-top: 145px;
  }
  .mg-bottom-145 {
    margin-bottom: 145px;
  }
  .pd-150 {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .pd-top-150 {
    padding-top: 150px;
  }
  .pd-bottom-150 {
    padding-bottom: 150px;
  }
  .mg-150 {
    margin-top: 150px;
    margin-bottom: 150px;
  }
  .mg-top-150 {
    margin-top: 150px;
  }
  .mg-bottom-150 {
    margin-bottom: 150px;
  }
  .pd-155 {
    padding-top: 155px;
    padding-bottom: 155px;
  }
  .pd-top-155 {
    padding-top: 155px;
  }
  .pd-bottom-155 {
    padding-bottom: 155px;
  }
  .mg-155 {
    margin-top: 155px;
    margin-bottom: 155px;
  }
  .mg-top-155 {
    margin-top: 155px;
  }
  .mg-bottom-155 {
    margin-bottom: 155px;
  }
  .pd-160 {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .pd-top-160 {
    padding-top: 160px;
  }
  .pd-bottom-160 {
    padding-bottom: 160px;
  }
  .mg-160 {
    margin-top: 160px;
    margin-bottom: 160px;
  }
  .mg-top-160 {
    margin-top: 160px;
  }
  .mg-bottom-160 {
    margin-bottom: 160px;
  }
  .pd-165 {
    padding-top: 165px;
    padding-bottom: 165px;
  }
  .pd-top-165 {
    padding-top: 165px;
  }
  .pd-bottom-165 {
    padding-bottom: 165px;
  }
  .mg-165 {
    margin-top: 165px;
    margin-bottom: 165px;
  }
  .mg-top-165 {
    margin-top: 165px;
  }
  .mg-bottom-165 {
    margin-bottom: 165px;
  }
  .pd-170 {
    padding-top: 170px;
    padding-bottom: 170px;
  }
  .pd-top-170 {
    padding-top: 170px;
  }
  .pd-bottom-170 {
    padding-bottom: 170px;
  }
  .mg-170 {
    margin-top: 170px;
    margin-bottom: 170px;
  }
  .mg-top-170 {
    margin-top: 170px;
  }
  .mg-bottom-170 {
    margin-bottom: 170px;
  }
  .pd-175 {
    padding-top: 175px;
    padding-bottom: 175px;
  }
  .pd-top-175 {
    padding-top: 175px;
  }
  .pd-bottom-175 {
    padding-bottom: 175px;
  }
  .mg-175 {
    margin-top: 175px;
    margin-bottom: 175px;
  }
  .mg-top-175 {
    margin-top: 175px;
  }
  .mg-bottom-175 {
    margin-bottom: 175px;
  }
  .pd-180 {
    padding-top: 180px;
    padding-bottom: 180px;
  }
  .pd-top-180 {
    padding-top: 180px;
  }
  .pd-bottom-180 {
    padding-bottom: 180px;
  }
  .mg-180 {
    margin-top: 180px;
    margin-bottom: 180px;
  }
  .mg-top-180 {
    margin-top: 180px;
  }
  .mg-bottom-180 {
    margin-bottom: 180px;
  }
  .pd-185 {
    padding-top: 185px;
    padding-bottom: 185px;
  }
  .pd-top-185 {
    padding-top: 185px;
  }
  .pd-bottom-185 {
    padding-bottom: 185px;
  }
  .mg-185 {
    margin-top: 185px;
    margin-bottom: 185px;
  }
  .mg-top-185 {
    margin-top: 185px;
  }
  .mg-bottom-185 {
    margin-bottom: 185px;
  }
  .pd-190 {
    padding-top: 190px;
    padding-bottom: 190px;
  }
  .pd-top-190 {
    padding-top: 190px;
  }
  .pd-bottom-190 {
    padding-bottom: 190px;
  }
  .mg-190 {
    margin-top: 190px;
    margin-bottom: 190px;
  }
  .mg-top-190 {
    margin-top: 190px;
  }
  .mg-bottom-190 {
    margin-bottom: 190px;
  }
  .pd-195 {
    padding-top: 195px;
    padding-bottom: 195px;
  }
  .pd-top-195 {
    padding-top: 195px;
  }
  .pd-bottom-195 {
    padding-bottom: 195px;
  }
  .mg-195 {
    margin-top: 195px;
    margin-bottom: 195px;
  }
  .mg-top-195 {
    margin-top: 195px;
  }
  .mg-bottom-195 {
    margin-bottom: 195px;
  }
  .pd-200 {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .pd-top-200 {
    padding-top: 200px;
  }
  .pd-bottom-200 {
    padding-bottom: 200px;
  }
  .mg-200 {
    margin-top: 200px;
    margin-bottom: 200px;
  }
  .mg-top-200 {
    margin-top: 200px;
  }
  .mg-bottom-200 {
    margin-bottom: 200px;
  }
  .pd-205 {
    padding-top: 205px;
    padding-bottom: 205px;
  }
  .pd-top-205 {
    padding-top: 205px;
  }
  .pd-bottom-205 {
    padding-bottom: 205px;
  }
  .mg-205 {
    margin-top: 205px;
    margin-bottom: 205px;
  }
  .mg-top-205 {
    margin-top: 205px;
  }
  .mg-bottom-205 {
    margin-bottom: 205px;
  }
  .pd-210 {
    padding-top: 210px;
    padding-bottom: 210px;
  }
  .pd-top-210 {
    padding-top: 210px;
  }
  .pd-bottom-210 {
    padding-bottom: 210px;
  }
  .mg-210 {
    margin-top: 210px;
    margin-bottom: 210px;
  }
  .mg-top-210 {
    margin-top: 210px;
  }
  .mg-bottom-210 {
    margin-bottom: 210px;
  }
  .pd-215 {
    padding-top: 215px;
    padding-bottom: 215px;
  }
  .pd-top-215 {
    padding-top: 215px;
  }
  .pd-bottom-215 {
    padding-bottom: 215px;
  }
  .mg-215 {
    margin-top: 215px;
    margin-bottom: 215px;
  }
  .mg-top-215 {
    margin-top: 215px;
  }
  .mg-bottom-215 {
    margin-bottom: 215px;
  }
  .pd-220 {
    padding-top: 220px;
    padding-bottom: 220px;
  }
  .pd-top-220 {
    padding-top: 220px;
  }
  .pd-bottom-220 {
    padding-bottom: 220px;
  }
  .mg-220 {
    margin-top: 220px;
    margin-bottom: 220px;
  }
  .mg-top-220 {
    margin-top: 220px;
  }
  .mg-bottom-220 {
    margin-bottom: 220px;
  }
  .pd-225 {
    padding-top: 225px;
    padding-bottom: 225px;
  }
  .pd-top-225 {
    padding-top: 225px;
  }
  .pd-bottom-225 {
    padding-bottom: 225px;
  }
  .mg-225 {
    margin-top: 225px;
    margin-bottom: 225px;
  }
  .mg-top-225 {
    margin-top: 225px;
  }
  .mg-bottom-225 {
    margin-bottom: 225px;
  }
  .pd-230 {
    padding-top: 230px;
    padding-bottom: 230px;
  }
  .pd-top-230 {
    padding-top: 230px;
  }
  .pd-bottom-230 {
    padding-bottom: 230px;
  }
  .mg-230 {
    margin-top: 230px;
    margin-bottom: 230px;
  }
  .mg-top-230 {
    margin-top: 230px;
  }
  .mg-bottom-230 {
    margin-bottom: 230px;
  }
  .pd-235 {
    padding-top: 235px;
    padding-bottom: 235px;
  }
  .pd-top-235 {
    padding-top: 235px;
  }
  .pd-bottom-235 {
    padding-bottom: 235px;
  }
  .mg-235 {
    margin-top: 235px;
    margin-bottom: 235px;
  }
  .mg-top-235 {
    margin-top: 235px;
  }
  .mg-bottom-235 {
    margin-bottom: 235px;
  }
  .pd-240 {
    padding-top: 240px;
    padding-bottom: 240px;
  }
  .pd-top-240 {
    padding-top: 240px;
  }
  .pd-bottom-240 {
    padding-bottom: 240px;
  }
  .mg-240 {
    margin-top: 240px;
    margin-bottom: 240px;
  }
  .mg-top-240 {
    margin-top: 240px;
  }
  .mg-bottom-240 {
    margin-bottom: 240px;
  }
  .pd-245 {
    padding-top: 245px;
    padding-bottom: 245px;
  }
  .pd-top-245 {
    padding-top: 245px;
  }
  .pd-bottom-245 {
    padding-bottom: 245px;
  }
  .mg-245 {
    margin-top: 245px;
    margin-bottom: 245px;
  }
  .mg-top-245 {
    margin-top: 245px;
  }
  .mg-bottom-245 {
    margin-bottom: 245px;
  }
  .pd-250 {
    padding-top: 250px;
    padding-bottom: 250px;
  }
  .pd-top-250 {
    padding-top: 250px;
  }
  .pd-bottom-250 {
    padding-bottom: 250px;
  }
  .mg-250 {
    margin-top: 250px;
    margin-bottom: 250px;
  }
  .mg-top-250 {
    margin-top: 250px;
  }
  .mg-bottom-250 {
    margin-bottom: 250px;
  }
  .pd-255 {
    padding-top: 255px;
    padding-bottom: 255px;
  }
  .pd-top-255 {
    padding-top: 255px;
  }
  .pd-bottom-255 {
    padding-bottom: 255px;
  }
  .mg-255 {
    margin-top: 255px;
    margin-bottom: 255px;
  }
  .mg-top-255 {
    margin-top: 255px;
  }
  .mg-bottom-255 {
    margin-bottom: 255px;
  }
  .pd-260 {
    padding-top: 260px;
    padding-bottom: 260px;
  }
  .pd-top-260 {
    padding-top: 260px;
  }
  .pd-bottom-260 {
    padding-bottom: 260px;
  }
  .mg-260 {
    margin-top: 260px;
    margin-bottom: 260px;
  }
  .mg-top-260 {
    margin-top: 260px;
  }
  .mg-bottom-260 {
    margin-bottom: 260px;
  }
  .pd-265 {
    padding-top: 265px;
    padding-bottom: 265px;
  }
  .pd-top-265 {
    padding-top: 265px;
  }
  .pd-bottom-265 {
    padding-bottom: 265px;
  }
  .mg-265 {
    margin-top: 265px;
    margin-bottom: 265px;
  }
  .mg-top-265 {
    margin-top: 265px;
  }
  .mg-bottom-265 {
    margin-bottom: 265px;
  }
  .pd-270 {
    padding-top: 270px;
    padding-bottom: 270px;
  }
  .pd-top-270 {
    padding-top: 270px;
  }
  .pd-bottom-270 {
    padding-bottom: 270px;
  }
  .mg-270 {
    margin-top: 270px;
    margin-bottom: 270px;
  }
  .mg-top-270 {
    margin-top: 270px;
  }
  .mg-bottom-270 {
    margin-bottom: 270px;
  }
  .pd-275 {
    padding-top: 275px;
    padding-bottom: 275px;
  }
  .pd-top-275 {
    padding-top: 275px;
  }
  .pd-bottom-275 {
    padding-bottom: 275px;
  }
  .mg-275 {
    margin-top: 275px;
    margin-bottom: 275px;
  }
  .mg-top-275 {
    margin-top: 275px;
  }
  .mg-bottom-275 {
    margin-bottom: 275px;
  }
  .pd-280 {
    padding-top: 280px;
    padding-bottom: 280px;
  }
  .pd-top-280 {
    padding-top: 280px;
  }
  .pd-bottom-280 {
    padding-bottom: 280px;
  }
  .mg-280 {
    margin-top: 280px;
    margin-bottom: 280px;
  }
  .mg-top-280 {
    margin-top: 280px;
  }
  .mg-bottom-280 {
    margin-bottom: 280px;
  }
  .pd-285 {
    padding-top: 285px;
    padding-bottom: 285px;
  }
  .pd-top-285 {
    padding-top: 285px;
  }
  .pd-bottom-285 {
    padding-bottom: 285px;
  }
  .mg-285 {
    margin-top: 285px;
    margin-bottom: 285px;
  }
  .mg-top-285 {
    margin-top: 285px;
  }
  .mg-bottom-285 {
    margin-bottom: 285px;
  }
  .pd-290 {
    padding-top: 290px;
    padding-bottom: 290px;
  }
  .pd-top-290 {
    padding-top: 290px;
  }
  .pd-bottom-290 {
    padding-bottom: 290px;
  }
  .mg-290 {
    margin-top: 290px;
    margin-bottom: 290px;
  }
  .mg-top-290 {
    margin-top: 290px;
  }
  .mg-bottom-290 {
    margin-bottom: 290px;
  }
  .pd-295 {
    padding-top: 295px;
    padding-bottom: 295px;
  }
  .pd-top-295 {
    padding-top: 295px;
  }
  .pd-bottom-295 {
    padding-bottom: 295px;
  }
  .mg-295 {
    margin-top: 295px;
    margin-bottom: 295px;
  }
  .mg-top-295 {
    margin-top: 295px;
  }
  .mg-bottom-295 {
    margin-bottom: 295px;
  }
  .pd-300 {
    padding-top: 300px;
    padding-bottom: 300px;
  }
  .pd-top-300 {
    padding-top: 300px;
  }
  .pd-bottom-300 {
    padding-bottom: 300px;
  }
  .mg-300 {
    margin-top: 300px;
    margin-bottom: 300px;
  }
  .mg-top-300 {
    margin-top: 300px;
  }
  .mg-bottom-300 {
    margin-bottom: 300px;
  }
  .mg-left-10 {
    margin-left: 10px;
  }
  .mg-left-20 {
    margin-left: 20px;
  }
  .pd-right-10 {
    padding-right: 10px;
  }
  .pd-right-20 {
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sp-pd-top-0 {
    padding-top: 0 !important;
  }
  .sp-pd-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .sp-pd-top-5 {
    padding-top: 5px;
  }
  .sp-pd-bottom-5 {
    padding-bottom: 5px;
  }
  .sp-mg-5 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .sp-mg-top-5 {
    margin-top: 5px;
  }
  .sp-mg-bottom-5 {
    margin-bottom: 5px;
  }
  .sp-pd-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .sp-pd-top-10 {
    padding-top: 10px;
  }
  .sp-pd-bottom-10 {
    padding-bottom: 10px;
  }
  .sp-mg-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .sp-mg-top-10 {
    margin-top: 10px;
  }
  .sp-mg-bottom-10 {
    margin-bottom: 10px;
  }
  .sp-pd-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .sp-pd-top-15 {
    padding-top: 15px;
  }
  .sp-pd-bottom-15 {
    padding-bottom: 15px;
  }
  .sp-mg-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .sp-mg-top-15 {
    margin-top: 15px;
  }
  .sp-mg-bottom-15 {
    margin-bottom: 15px;
  }
  .sp-pd-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .sp-pd-top-20 {
    padding-top: 20px;
  }
  .sp-pd-bottom-20 {
    padding-bottom: 20px;
  }
  .sp-mg-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .sp-mg-top-20 {
    margin-top: 20px;
  }
  .sp-mg-bottom-20 {
    margin-bottom: 20px;
  }
  .sp-pd-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .sp-pd-top-25 {
    padding-top: 25px;
  }
  .sp-pd-bottom-25 {
    padding-bottom: 25px;
  }
  .sp-mg-25 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .sp-mg-top-25 {
    margin-top: 25px;
  }
  .sp-mg-bottom-25 {
    margin-bottom: 25px;
  }
  .sp-pd-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .sp-pd-top-30 {
    padding-top: 30px;
  }
  .sp-pd-bottom-30 {
    padding-bottom: 30px;
  }
  .sp-mg-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .sp-mg-top-30 {
    margin-top: 30px;
  }
  .sp-mg-bottom-30 {
    margin-bottom: 30px;
  }
  .sp-pd-35 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .sp-pd-top-35 {
    padding-top: 35px;
  }
  .sp-pd-bottom-35 {
    padding-bottom: 35px;
  }
  .sp-mg-35 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .sp-mg-top-35 {
    margin-top: 35px;
  }
  .sp-mg-bottom-35 {
    margin-bottom: 35px;
  }
  .sp-pd-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .sp-pd-top-40 {
    padding-top: 40px;
  }
  .sp-pd-bottom-40 {
    padding-bottom: 40px;
  }
  .sp-mg-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .sp-mg-top-40 {
    margin-top: 40px;
  }
  .sp-mg-bottom-40 {
    margin-bottom: 40px;
  }
  .sp-pd-45 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .sp-pd-top-45 {
    padding-top: 45px;
  }
  .sp-pd-bottom-45 {
    padding-bottom: 45px;
  }
  .sp-mg-45 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .sp-mg-top-45 {
    margin-top: 45px;
  }
  .sp-mg-bottom-45 {
    margin-bottom: 45px;
  }
  .sp-pd-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .sp-pd-top-50 {
    padding-top: 50px;
  }
  .sp-pd-bottom-50 {
    padding-bottom: 50px;
  }
  .sp-mg-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .sp-mg-top-50 {
    margin-top: 50px;
  }
  .sp-mg-bottom-50 {
    margin-bottom: 50px;
  }
  .sp-pd-55 {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .sp-pd-top-55 {
    padding-top: 55px;
  }
  .sp-pd-bottom-55 {
    padding-bottom: 55px;
  }
  .sp-mg-55 {
    margin-top: 55px;
    margin-bottom: 55px;
  }
  .sp-mg-top-55 {
    margin-top: 55px;
  }
  .sp-mg-bottom-55 {
    margin-bottom: 55px;
  }
  .sp-pd-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .sp-pd-top-60 {
    padding-top: 60px;
  }
  .sp-pd-bottom-60 {
    padding-bottom: 60px;
  }
  .sp-mg-60 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .sp-mg-top-60 {
    margin-top: 60px;
  }
  .sp-mg-bottom-60 {
    margin-bottom: 60px;
  }
  .sp-pd-65 {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .sp-pd-top-65 {
    padding-top: 65px;
  }
  .sp-pd-bottom-65 {
    padding-bottom: 65px;
  }
  .sp-mg-65 {
    margin-top: 65px;
    margin-bottom: 65px;
  }
  .sp-mg-top-65 {
    margin-top: 65px;
  }
  .sp-mg-bottom-65 {
    margin-bottom: 65px;
  }
  .sp-pd-70 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .sp-pd-top-70 {
    padding-top: 70px;
  }
  .sp-pd-bottom-70 {
    padding-bottom: 70px;
  }
  .sp-mg-70 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .sp-mg-top-70 {
    margin-top: 70px;
  }
  .sp-mg-bottom-70 {
    margin-bottom: 70px;
  }
  .sp-pd-75 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .sp-pd-top-75 {
    padding-top: 75px;
  }
  .sp-pd-bottom-75 {
    padding-bottom: 75px;
  }
  .sp-mg-75 {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .sp-mg-top-75 {
    margin-top: 75px;
  }
  .sp-mg-bottom-75 {
    margin-bottom: 75px;
  }
  .sp-pd-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .sp-pd-top-80 {
    padding-top: 80px;
  }
  .sp-pd-bottom-80 {
    padding-bottom: 80px;
  }
  .sp-mg-80 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .sp-mg-top-80 {
    margin-top: 80px;
  }
  .sp-mg-bottom-80 {
    margin-bottom: 80px;
  }
  .sp-pd-85 {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .sp-pd-top-85 {
    padding-top: 85px;
  }
  .sp-pd-bottom-85 {
    padding-bottom: 85px;
  }
  .sp-mg-85 {
    margin-top: 85px;
    margin-bottom: 85px;
  }
  .sp-mg-top-85 {
    margin-top: 85px;
  }
  .sp-mg-bottom-85 {
    margin-bottom: 85px;
  }
  .sp-pd-90 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .sp-pd-top-90 {
    padding-top: 90px;
  }
  .sp-pd-bottom-90 {
    padding-bottom: 90px;
  }
  .sp-mg-90 {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .sp-mg-top-90 {
    margin-top: 90px;
  }
  .sp-mg-bottom-90 {
    margin-bottom: 90px;
  }
  .sp-pd-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .sp-pd-top-95 {
    padding-top: 95px;
  }
  .sp-pd-bottom-95 {
    padding-bottom: 95px;
  }
  .sp-mg-95 {
    margin-top: 95px;
    margin-bottom: 95px;
  }
  .sp-mg-top-95 {
    margin-top: 95px;
  }
  .sp-mg-bottom-95 {
    margin-bottom: 95px;
  }
  .sp-pd-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .sp-pd-top-100 {
    padding-top: 100px;
  }
  .sp-pd-bottom-100 {
    padding-bottom: 100px;
  }
  .sp-mg-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .sp-mg-top-100 {
    margin-top: 100px;
  }
  .sp-mg-bottom-100 {
    margin-bottom: 100px;
  }
  .sp-pd-105 {
    padding-top: 105px;
    padding-bottom: 105px;
  }
  .sp-pd-top-105 {
    padding-top: 105px;
  }
  .sp-pd-bottom-105 {
    padding-bottom: 105px;
  }
  .sp-mg-105 {
    margin-top: 105px;
    margin-bottom: 105px;
  }
  .sp-mg-top-105 {
    margin-top: 105px;
  }
  .sp-mg-bottom-105 {
    margin-bottom: 105px;
  }
  .sp-pd-110 {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .sp-pd-top-110 {
    padding-top: 110px;
  }
  .sp-pd-bottom-110 {
    padding-bottom: 110px;
  }
  .sp-mg-110 {
    margin-top: 110px;
    margin-bottom: 110px;
  }
  .sp-mg-top-110 {
    margin-top: 110px;
  }
  .sp-mg-bottom-110 {
    margin-bottom: 110px;
  }
  .sp-pd-115 {
    padding-top: 115px;
    padding-bottom: 115px;
  }
  .sp-pd-top-115 {
    padding-top: 115px;
  }
  .sp-pd-bottom-115 {
    padding-bottom: 115px;
  }
  .sp-mg-115 {
    margin-top: 115px;
    margin-bottom: 115px;
  }
  .sp-mg-top-115 {
    margin-top: 115px;
  }
  .sp-mg-bottom-115 {
    margin-bottom: 115px;
  }
  .sp-pd-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .sp-pd-top-120 {
    padding-top: 120px;
  }
  .sp-pd-bottom-120 {
    padding-bottom: 120px;
  }
  .sp-mg-120 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .sp-mg-top-120 {
    margin-top: 120px;
  }
  .sp-mg-bottom-120 {
    margin-bottom: 120px;
  }
  .sp-pd-125 {
    padding-top: 125px;
    padding-bottom: 125px;
  }
  .sp-pd-top-125 {
    padding-top: 125px;
  }
  .sp-pd-bottom-125 {
    padding-bottom: 125px;
  }
  .sp-mg-125 {
    margin-top: 125px;
    margin-bottom: 125px;
  }
  .sp-mg-top-125 {
    margin-top: 125px;
  }
  .sp-mg-bottom-125 {
    margin-bottom: 125px;
  }
  .sp-pd-130 {
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .sp-pd-top-130 {
    padding-top: 130px;
  }
  .sp-pd-bottom-130 {
    padding-bottom: 130px;
  }
  .sp-mg-130 {
    margin-top: 130px;
    margin-bottom: 130px;
  }
  .sp-mg-top-130 {
    margin-top: 130px;
  }
  .sp-mg-bottom-130 {
    margin-bottom: 130px;
  }
  .sp-pd-135 {
    padding-top: 135px;
    padding-bottom: 135px;
  }
  .sp-pd-top-135 {
    padding-top: 135px;
  }
  .sp-pd-bottom-135 {
    padding-bottom: 135px;
  }
  .sp-mg-135 {
    margin-top: 135px;
    margin-bottom: 135px;
  }
  .sp-mg-top-135 {
    margin-top: 135px;
  }
  .sp-mg-bottom-135 {
    margin-bottom: 135px;
  }
  .sp-pd-140 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .sp-pd-top-140 {
    padding-top: 140px;
  }
  .sp-pd-bottom-140 {
    padding-bottom: 140px;
  }
  .sp-mg-140 {
    margin-top: 140px;
    margin-bottom: 140px;
  }
  .sp-mg-top-140 {
    margin-top: 140px;
  }
  .sp-mg-bottom-140 {
    margin-bottom: 140px;
  }
  .sp-pd-145 {
    padding-top: 145px;
    padding-bottom: 145px;
  }
  .sp-pd-top-145 {
    padding-top: 145px;
  }
  .sp-pd-bottom-145 {
    padding-bottom: 145px;
  }
  .sp-mg-145 {
    margin-top: 145px;
    margin-bottom: 145px;
  }
  .sp-mg-top-145 {
    margin-top: 145px;
  }
  .sp-mg-bottom-145 {
    margin-bottom: 145px;
  }
  .sp-pd-150 {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .sp-pd-top-150 {
    padding-top: 150px;
  }
  .sp-pd-bottom-150 {
    padding-bottom: 150px;
  }
  .sp-mg-150 {
    margin-top: 150px;
    margin-bottom: 150px;
  }
  .sp-mg-top-150 {
    margin-top: 150px;
  }
  .sp-mg-bottom-150 {
    margin-bottom: 150px;
  }
  .sp-pd-155 {
    padding-top: 155px;
    padding-bottom: 155px;
  }
  .sp-pd-top-155 {
    padding-top: 155px;
  }
  .sp-pd-bottom-155 {
    padding-bottom: 155px;
  }
  .sp-mg-155 {
    margin-top: 155px;
    margin-bottom: 155px;
  }
  .sp-mg-top-155 {
    margin-top: 155px;
  }
  .sp-mg-bottom-155 {
    margin-bottom: 155px;
  }
  .sp-pd-160 {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .sp-pd-top-160 {
    padding-top: 160px;
  }
  .sp-pd-bottom-160 {
    padding-bottom: 160px;
  }
  .sp-mg-160 {
    margin-top: 160px;
    margin-bottom: 160px;
  }
  .sp-mg-top-160 {
    margin-top: 160px;
  }
  .sp-mg-bottom-160 {
    margin-bottom: 160px;
  }
  .sp-pd-165 {
    padding-top: 165px;
    padding-bottom: 165px;
  }
  .sp-pd-top-165 {
    padding-top: 165px;
  }
  .sp-pd-bottom-165 {
    padding-bottom: 165px;
  }
  .sp-mg-165 {
    margin-top: 165px;
    margin-bottom: 165px;
  }
  .sp-mg-top-165 {
    margin-top: 165px;
  }
  .sp-mg-bottom-165 {
    margin-bottom: 165px;
  }
  .sp-pd-170 {
    padding-top: 170px;
    padding-bottom: 170px;
  }
  .sp-pd-top-170 {
    padding-top: 170px;
  }
  .sp-pd-bottom-170 {
    padding-bottom: 170px;
  }
  .sp-mg-170 {
    margin-top: 170px;
    margin-bottom: 170px;
  }
  .sp-mg-top-170 {
    margin-top: 170px;
  }
  .sp-mg-bottom-170 {
    margin-bottom: 170px;
  }
  .sp-pd-175 {
    padding-top: 175px;
    padding-bottom: 175px;
  }
  .sp-pd-top-175 {
    padding-top: 175px;
  }
  .sp-pd-bottom-175 {
    padding-bottom: 175px;
  }
  .sp-mg-175 {
    margin-top: 175px;
    margin-bottom: 175px;
  }
  .sp-mg-top-175 {
    margin-top: 175px;
  }
  .sp-mg-bottom-175 {
    margin-bottom: 175px;
  }
  .sp-pd-180 {
    padding-top: 180px;
    padding-bottom: 180px;
  }
  .sp-pd-top-180 {
    padding-top: 180px;
  }
  .sp-pd-bottom-180 {
    padding-bottom: 180px;
  }
  .sp-mg-180 {
    margin-top: 180px;
    margin-bottom: 180px;
  }
  .sp-mg-top-180 {
    margin-top: 180px;
  }
  .sp-mg-bottom-180 {
    margin-bottom: 180px;
  }
  .sp-pd-185 {
    padding-top: 185px;
    padding-bottom: 185px;
  }
  .sp-pd-top-185 {
    padding-top: 185px;
  }
  .sp-pd-bottom-185 {
    padding-bottom: 185px;
  }
  .sp-mg-185 {
    margin-top: 185px;
    margin-bottom: 185px;
  }
  .sp-mg-top-185 {
    margin-top: 185px;
  }
  .sp-mg-bottom-185 {
    margin-bottom: 185px;
  }
  .sp-pd-190 {
    padding-top: 190px;
    padding-bottom: 190px;
  }
  .sp-pd-top-190 {
    padding-top: 190px;
  }
  .sp-pd-bottom-190 {
    padding-bottom: 190px;
  }
  .sp-mg-190 {
    margin-top: 190px;
    margin-bottom: 190px;
  }
  .sp-mg-top-190 {
    margin-top: 190px;
  }
  .sp-mg-bottom-190 {
    margin-bottom: 190px;
  }
  .sp-pd-195 {
    padding-top: 195px;
    padding-bottom: 195px;
  }
  .sp-pd-top-195 {
    padding-top: 195px;
  }
  .sp-pd-bottom-195 {
    padding-bottom: 195px;
  }
  .sp-mg-195 {
    margin-top: 195px;
    margin-bottom: 195px;
  }
  .sp-mg-top-195 {
    margin-top: 195px;
  }
  .sp-mg-bottom-195 {
    margin-bottom: 195px;
  }
  .sp-pd-200 {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .sp-pd-top-200 {
    padding-top: 200px;
  }
  .sp-pd-bottom-200 {
    padding-bottom: 200px;
  }
  .sp-mg-200 {
    margin-top: 200px;
    margin-bottom: 200px;
  }
  .sp-mg-top-200 {
    margin-top: 200px;
  }
  .sp-mg-bottom-200 {
    margin-bottom: 200px;
  }
  .sp-pd-205 {
    padding-top: 205px;
    padding-bottom: 205px;
  }
  .sp-pd-top-205 {
    padding-top: 205px;
  }
  .sp-pd-bottom-205 {
    padding-bottom: 205px;
  }
  .sp-mg-205 {
    margin-top: 205px;
    margin-bottom: 205px;
  }
  .sp-mg-top-205 {
    margin-top: 205px;
  }
  .sp-mg-bottom-205 {
    margin-bottom: 205px;
  }
  .sp-pd-210 {
    padding-top: 210px;
    padding-bottom: 210px;
  }
  .sp-pd-top-210 {
    padding-top: 210px;
  }
  .sp-pd-bottom-210 {
    padding-bottom: 210px;
  }
  .sp-mg-210 {
    margin-top: 210px;
    margin-bottom: 210px;
  }
  .sp-mg-top-210 {
    margin-top: 210px;
  }
  .sp-mg-bottom-210 {
    margin-bottom: 210px;
  }
  .sp-pd-215 {
    padding-top: 215px;
    padding-bottom: 215px;
  }
  .sp-pd-top-215 {
    padding-top: 215px;
  }
  .sp-pd-bottom-215 {
    padding-bottom: 215px;
  }
  .sp-mg-215 {
    margin-top: 215px;
    margin-bottom: 215px;
  }
  .sp-mg-top-215 {
    margin-top: 215px;
  }
  .sp-mg-bottom-215 {
    margin-bottom: 215px;
  }
  .sp-pd-220 {
    padding-top: 220px;
    padding-bottom: 220px;
  }
  .sp-pd-top-220 {
    padding-top: 220px;
  }
  .sp-pd-bottom-220 {
    padding-bottom: 220px;
  }
  .sp-mg-220 {
    margin-top: 220px;
    margin-bottom: 220px;
  }
  .sp-mg-top-220 {
    margin-top: 220px;
  }
  .sp-mg-bottom-220 {
    margin-bottom: 220px;
  }
  .sp-pd-225 {
    padding-top: 225px;
    padding-bottom: 225px;
  }
  .sp-pd-top-225 {
    padding-top: 225px;
  }
  .sp-pd-bottom-225 {
    padding-bottom: 225px;
  }
  .sp-mg-225 {
    margin-top: 225px;
    margin-bottom: 225px;
  }
  .sp-mg-top-225 {
    margin-top: 225px;
  }
  .sp-mg-bottom-225 {
    margin-bottom: 225px;
  }
  .sp-pd-230 {
    padding-top: 230px;
    padding-bottom: 230px;
  }
  .sp-pd-top-230 {
    padding-top: 230px;
  }
  .sp-pd-bottom-230 {
    padding-bottom: 230px;
  }
  .sp-mg-230 {
    margin-top: 230px;
    margin-bottom: 230px;
  }
  .sp-mg-top-230 {
    margin-top: 230px;
  }
  .sp-mg-bottom-230 {
    margin-bottom: 230px;
  }
  .sp-pd-235 {
    padding-top: 235px;
    padding-bottom: 235px;
  }
  .sp-pd-top-235 {
    padding-top: 235px;
  }
  .sp-pd-bottom-235 {
    padding-bottom: 235px;
  }
  .sp-mg-235 {
    margin-top: 235px;
    margin-bottom: 235px;
  }
  .sp-mg-top-235 {
    margin-top: 235px;
  }
  .sp-mg-bottom-235 {
    margin-bottom: 235px;
  }
  .sp-pd-240 {
    padding-top: 240px;
    padding-bottom: 240px;
  }
  .sp-pd-top-240 {
    padding-top: 240px;
  }
  .sp-pd-bottom-240 {
    padding-bottom: 240px;
  }
  .sp-mg-240 {
    margin-top: 240px;
    margin-bottom: 240px;
  }
  .sp-mg-top-240 {
    margin-top: 240px;
  }
  .sp-mg-bottom-240 {
    margin-bottom: 240px;
  }
  .sp-pd-245 {
    padding-top: 245px;
    padding-bottom: 245px;
  }
  .sp-pd-top-245 {
    padding-top: 245px;
  }
  .sp-pd-bottom-245 {
    padding-bottom: 245px;
  }
  .sp-mg-245 {
    margin-top: 245px;
    margin-bottom: 245px;
  }
  .sp-mg-top-245 {
    margin-top: 245px;
  }
  .sp-mg-bottom-245 {
    margin-bottom: 245px;
  }
  .sp-pd-250 {
    padding-top: 250px;
    padding-bottom: 250px;
  }
  .sp-pd-top-250 {
    padding-top: 250px;
  }
  .sp-pd-bottom-250 {
    padding-bottom: 250px;
  }
  .sp-mg-250 {
    margin-top: 250px;
    margin-bottom: 250px;
  }
  .sp-mg-top-250 {
    margin-top: 250px;
  }
  .sp-mg-bottom-250 {
    margin-bottom: 250px;
  }
  .sp-pd-255 {
    padding-top: 255px;
    padding-bottom: 255px;
  }
  .sp-pd-top-255 {
    padding-top: 255px;
  }
  .sp-pd-bottom-255 {
    padding-bottom: 255px;
  }
  .sp-mg-255 {
    margin-top: 255px;
    margin-bottom: 255px;
  }
  .sp-mg-top-255 {
    margin-top: 255px;
  }
  .sp-mg-bottom-255 {
    margin-bottom: 255px;
  }
  .sp-pd-260 {
    padding-top: 260px;
    padding-bottom: 260px;
  }
  .sp-pd-top-260 {
    padding-top: 260px;
  }
  .sp-pd-bottom-260 {
    padding-bottom: 260px;
  }
  .sp-mg-260 {
    margin-top: 260px;
    margin-bottom: 260px;
  }
  .sp-mg-top-260 {
    margin-top: 260px;
  }
  .sp-mg-bottom-260 {
    margin-bottom: 260px;
  }
  .sp-pd-265 {
    padding-top: 265px;
    padding-bottom: 265px;
  }
  .sp-pd-top-265 {
    padding-top: 265px;
  }
  .sp-pd-bottom-265 {
    padding-bottom: 265px;
  }
  .sp-mg-265 {
    margin-top: 265px;
    margin-bottom: 265px;
  }
  .sp-mg-top-265 {
    margin-top: 265px;
  }
  .sp-mg-bottom-265 {
    margin-bottom: 265px;
  }
  .sp-pd-270 {
    padding-top: 270px;
    padding-bottom: 270px;
  }
  .sp-pd-top-270 {
    padding-top: 270px;
  }
  .sp-pd-bottom-270 {
    padding-bottom: 270px;
  }
  .sp-mg-270 {
    margin-top: 270px;
    margin-bottom: 270px;
  }
  .sp-mg-top-270 {
    margin-top: 270px;
  }
  .sp-mg-bottom-270 {
    margin-bottom: 270px;
  }
  .sp-pd-275 {
    padding-top: 275px;
    padding-bottom: 275px;
  }
  .sp-pd-top-275 {
    padding-top: 275px;
  }
  .sp-pd-bottom-275 {
    padding-bottom: 275px;
  }
  .sp-mg-275 {
    margin-top: 275px;
    margin-bottom: 275px;
  }
  .sp-mg-top-275 {
    margin-top: 275px;
  }
  .sp-mg-bottom-275 {
    margin-bottom: 275px;
  }
  .sp-pd-280 {
    padding-top: 280px;
    padding-bottom: 280px;
  }
  .sp-pd-top-280 {
    padding-top: 280px;
  }
  .sp-pd-bottom-280 {
    padding-bottom: 280px;
  }
  .sp-mg-280 {
    margin-top: 280px;
    margin-bottom: 280px;
  }
  .sp-mg-top-280 {
    margin-top: 280px;
  }
  .sp-mg-bottom-280 {
    margin-bottom: 280px;
  }
  .sp-pd-285 {
    padding-top: 285px;
    padding-bottom: 285px;
  }
  .sp-pd-top-285 {
    padding-top: 285px;
  }
  .sp-pd-bottom-285 {
    padding-bottom: 285px;
  }
  .sp-mg-285 {
    margin-top: 285px;
    margin-bottom: 285px;
  }
  .sp-mg-top-285 {
    margin-top: 285px;
  }
  .sp-mg-bottom-285 {
    margin-bottom: 285px;
  }
  .sp-pd-290 {
    padding-top: 290px;
    padding-bottom: 290px;
  }
  .sp-pd-top-290 {
    padding-top: 290px;
  }
  .sp-pd-bottom-290 {
    padding-bottom: 290px;
  }
  .sp-mg-290 {
    margin-top: 290px;
    margin-bottom: 290px;
  }
  .sp-mg-top-290 {
    margin-top: 290px;
  }
  .sp-mg-bottom-290 {
    margin-bottom: 290px;
  }
  .sp-pd-295 {
    padding-top: 295px;
    padding-bottom: 295px;
  }
  .sp-pd-top-295 {
    padding-top: 295px;
  }
  .sp-pd-bottom-295 {
    padding-bottom: 295px;
  }
  .sp-mg-295 {
    margin-top: 295px;
    margin-bottom: 295px;
  }
  .sp-mg-top-295 {
    margin-top: 295px;
  }
  .sp-mg-bottom-295 {
    margin-bottom: 295px;
  }
  .sp-pd-300 {
    padding-top: 300px;
    padding-bottom: 300px;
  }
  .sp-pd-top-300 {
    padding-top: 300px;
  }
  .sp-pd-bottom-300 {
    padding-bottom: 300px;
  }
  .sp-mg-300 {
    margin-top: 300px;
    margin-bottom: 300px;
  }
  .sp-mg-top-300 {
    margin-top: 300px;
  }
  .sp-mg-bottom-300 {
    margin-bottom: 300px;
  }
  .sp-mg-left-10 {
    margin-left: 10px;
  }
  .sp-mg-left-20 {
    margin-left: 20px;
  }
  .sp-pd-right-10 {
    padding-right: 10px;
  }
  .sp-pd-right-20 {
    padding-right: 20px;
  }
}
.u-align-top {
  vertical-align: top !important;
  align-self: flex-start !important;
}

.u-align-middle {
  vertical-align: middle !important;
  align-self: center !important;
}

.u-align-bottom {
  vertical-align: bottom !important;
  align-self: flex-end !important;
}

.u-align-center {
  text-align: center !important;
  justify-content: center !important;
}

.u-align-left {
  text-align: left !important;
  justify-content: flex-start !important;
}

.u-align-right {
  text-align: right !important;
  justify-content: flex-end !important;
}

@media screen and (max-width: 768px) {
  .sp-u-align-center {
    text-align: center !important;
  }
  .sp-u-align-left {
    text-align: left !important;
  }
  .sp-u-align-right {
    text-align: right !important;
  }
}
.u-hidden {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}

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

.u-relative {
  position: relative !important;
}

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

.u-inline-block {
  display: inline-block !important;
}

@media screen and (max-width: 768px) {
  .u-sp-block {
    display: block !important;
  }
  .u-sp-inline-block {
    display: inline-block !important;
  }
}
.u-bold {
  font-weight: bold !important;
}

.u-medium {
  font-weight: 500;
}

/* PC and mobile */
.w-20 {
  width: 20px;
}

.w-22 {
  width: 22px;
}

.w-24 {
  width: 24px;
}

.w-26 {
  width: 26px;
}

.w-28 {
  width: 28px;
}

.w-30 {
  width: 30px;
}

.w-32 {
  width: 32px;
}

.w-34 {
  width: 34px;
}

.w-36 {
  width: 36px;
}

.w-38 {
  width: 38px;
}

.w-40 {
  width: 40px;
}

.w-42 {
  width: 42px;
}

.w-44 {
  width: 44px;
}

.w-46 {
  width: 46px;
}

.w-48 {
  width: 48px;
}

.w-50 {
  width: 50px;
}

.w-52 {
  width: 52px;
}

.w-54 {
  width: 54px;
}

.w-56 {
  width: 56px;
}

.w-58 {
  width: 58px;
}

.w-60 {
  width: 60px;
}

.w-62 {
  width: 62px;
}

.w-64 {
  width: 64px;
}

.w-66 {
  width: 66px;
}

.w-68 {
  width: 68px;
}

.w-70 {
  width: 70px;
}

.w-72 {
  width: 72px;
}

.w-74 {
  width: 74px;
}

.w-76 {
  width: 76px;
}

.w-78 {
  width: 78px;
}

.w-80 {
  width: 80px;
}

.w-82 {
  width: 82px;
}

.w-84 {
  width: 84px;
}

.w-86 {
  width: 86px;
}

.w-88 {
  width: 88px;
}

.w-90 {
  width: 90px;
}

.w-92 {
  width: 92px;
}

.w-94 {
  width: 94px;
}

.w-96 {
  width: 96px;
}

.w-98 {
  width: 98px;
}

.w-100 {
  width: 100px;
}

.w-102 {
  width: 102px;
}

.w-104 {
  width: 104px;
}

.w-106 {
  width: 106px;
}

.w-108 {
  width: 108px;
}

.w-110 {
  width: 110px;
}

.w-112 {
  width: 112px;
}

.w-114 {
  width: 114px;
}

.w-116 {
  width: 116px;
}

.w-118 {
  width: 118px;
}

.w-120 {
  width: 120px;
}

.w-122 {
  width: 122px;
}

.w-124 {
  width: 124px;
}

.w-126 {
  width: 126px;
}

.w-128 {
  width: 128px;
}

.w-130 {
  width: 130px;
}

.w-132 {
  width: 132px;
}

.w-134 {
  width: 134px;
}

.w-136 {
  width: 136px;
}

.w-138 {
  width: 138px;
}

.w-140 {
  width: 140px;
}

.w-142 {
  width: 142px;
}

.w-144 {
  width: 144px;
}

.w-146 {
  width: 146px;
}

.w-148 {
  width: 148px;
}

.w-150 {
  width: 150px;
}

.w-152 {
  width: 152px;
}

.w-154 {
  width: 154px;
}

.w-156 {
  width: 156px;
}

.w-158 {
  width: 158px;
}

.w-160 {
  width: 160px;
}

.w-162 {
  width: 162px;
}

.w-164 {
  width: 164px;
}

.w-166 {
  width: 166px;
}

.w-168 {
  width: 168px;
}

.w-170 {
  width: 170px;
}

.w-172 {
  width: 172px;
}

.w-174 {
  width: 174px;
}

.w-176 {
  width: 176px;
}

.w-178 {
  width: 178px;
}

.w-180 {
  width: 180px;
}

.w-182 {
  width: 182px;
}

.w-184 {
  width: 184px;
}

.w-186 {
  width: 186px;
}

.w-188 {
  width: 188px;
}

.w-190 {
  width: 190px;
}

.w-192 {
  width: 192px;
}

.w-194 {
  width: 194px;
}

.w-196 {
  width: 196px;
}

.w-198 {
  width: 198px;
}

.w-200 {
  width: 200px;
}

.w-202 {
  width: 202px;
}

.w-204 {
  width: 204px;
}

.w-206 {
  width: 206px;
}

.w-208 {
  width: 208px;
}

.w-210 {
  width: 210px;
}

.w-212 {
  width: 212px;
}

.w-214 {
  width: 214px;
}

.w-216 {
  width: 216px;
}

.w-218 {
  width: 218px;
}

.w-220 {
  width: 220px;
}

.w-222 {
  width: 222px;
}

.w-224 {
  width: 224px;
}

.w-226 {
  width: 226px;
}

.w-228 {
  width: 228px;
}

.w-230 {
  width: 230px;
}

.w-232 {
  width: 232px;
}

.w-234 {
  width: 234px;
}

.w-236 {
  width: 236px;
}

.w-238 {
  width: 238px;
}

.w-240 {
  width: 240px;
}

.w-242 {
  width: 242px;
}

.w-244 {
  width: 244px;
}

.w-246 {
  width: 246px;
}

.w-248 {
  width: 248px;
}

.w-250 {
  width: 250px;
}

.w-252 {
  width: 252px;
}

.w-254 {
  width: 254px;
}

.w-256 {
  width: 256px;
}

.w-258 {
  width: 258px;
}

.w-260 {
  width: 260px;
}

.w-262 {
  width: 262px;
}

.w-264 {
  width: 264px;
}

.w-266 {
  width: 266px;
}

.w-268 {
  width: 268px;
}

.w-270 {
  width: 270px;
}

.w-272 {
  width: 272px;
}

.w-274 {
  width: 274px;
}

.w-276 {
  width: 276px;
}

.w-278 {
  width: 278px;
}

.w-280 {
  width: 280px;
}

.w-282 {
  width: 282px;
}

.w-284 {
  width: 284px;
}

.w-286 {
  width: 286px;
}

.w-288 {
  width: 288px;
}

.w-290 {
  width: 290px;
}

.w-292 {
  width: 292px;
}

.w-294 {
  width: 294px;
}

.w-296 {
  width: 296px;
}

.w-298 {
  width: 298px;
}

.w-300 {
  width: 300px;
}

.w-302 {
  width: 302px;
}

.w-304 {
  width: 304px;
}

.w-306 {
  width: 306px;
}

.w-308 {
  width: 308px;
}

.w-310 {
  width: 310px;
}

.w-312 {
  width: 312px;
}

.w-314 {
  width: 314px;
}

.w-316 {
  width: 316px;
}

.w-318 {
  width: 318px;
}

.w-320 {
  width: 320px;
}

.w-322 {
  width: 322px;
}

.w-324 {
  width: 324px;
}

.w-326 {
  width: 326px;
}

.w-328 {
  width: 328px;
}

.w-330 {
  width: 330px;
}

.w-332 {
  width: 332px;
}

.w-334 {
  width: 334px;
}

.w-336 {
  width: 336px;
}

.w-338 {
  width: 338px;
}

.w-340 {
  width: 340px;
}

.w-342 {
  width: 342px;
}

.w-344 {
  width: 344px;
}

.w-346 {
  width: 346px;
}

.w-348 {
  width: 348px;
}

.w-350 {
  width: 350px;
}

.w-352 {
  width: 352px;
}

.w-354 {
  width: 354px;
}

.w-356 {
  width: 356px;
}

.w-358 {
  width: 358px;
}

.w-360 {
  width: 360px;
}

.w-362 {
  width: 362px;
}

.w-364 {
  width: 364px;
}

.w-366 {
  width: 366px;
}

.w-368 {
  width: 368px;
}

.w-370 {
  width: 370px;
}

.w-372 {
  width: 372px;
}

.w-374 {
  width: 374px;
}

.w-376 {
  width: 376px;
}

.w-378 {
  width: 378px;
}

.w-380 {
  width: 380px;
}

.w-382 {
  width: 382px;
}

.w-384 {
  width: 384px;
}

.w-386 {
  width: 386px;
}

.w-388 {
  width: 388px;
}

.w-390 {
  width: 390px;
}

.w-392 {
  width: 392px;
}

.w-394 {
  width: 394px;
}

.w-396 {
  width: 396px;
}

.w-398 {
  width: 398px;
}

.w-400 {
  width: 400px;
}

/* PC only */
@media screen and (min-width: 769px) {
  .pc-w-20 {
    width: 20px;
  }
  .pc-w-22 {
    width: 22px;
  }
  .pc-w-24 {
    width: 24px;
  }
  .pc-w-26 {
    width: 26px;
  }
  .pc-w-28 {
    width: 28px;
  }
  .pc-w-30 {
    width: 30px;
  }
  .pc-w-32 {
    width: 32px;
  }
  .pc-w-34 {
    width: 34px;
  }
  .pc-w-36 {
    width: 36px;
  }
  .pc-w-38 {
    width: 38px;
  }
  .pc-w-40 {
    width: 40px;
  }
  .pc-w-42 {
    width: 42px;
  }
  .pc-w-44 {
    width: 44px;
  }
  .pc-w-46 {
    width: 46px;
  }
  .pc-w-48 {
    width: 48px;
  }
  .pc-w-50 {
    width: 50px;
  }
  .pc-w-52 {
    width: 52px;
  }
  .pc-w-54 {
    width: 54px;
  }
  .pc-w-56 {
    width: 56px;
  }
  .pc-w-58 {
    width: 58px;
  }
  .pc-w-60 {
    width: 60px;
  }
  .pc-w-62 {
    width: 62px;
  }
  .pc-w-64 {
    width: 64px;
  }
  .pc-w-66 {
    width: 66px;
  }
  .pc-w-68 {
    width: 68px;
  }
  .pc-w-70 {
    width: 70px;
  }
  .pc-w-72 {
    width: 72px;
  }
  .pc-w-74 {
    width: 74px;
  }
  .pc-w-76 {
    width: 76px;
  }
  .pc-w-78 {
    width: 78px;
  }
  .pc-w-80 {
    width: 80px;
  }
  .pc-w-82 {
    width: 82px;
  }
  .pc-w-84 {
    width: 84px;
  }
  .pc-w-86 {
    width: 86px;
  }
  .pc-w-88 {
    width: 88px;
  }
  .pc-w-90 {
    width: 90px;
  }
  .pc-w-92 {
    width: 92px;
  }
  .pc-w-94 {
    width: 94px;
  }
  .pc-w-96 {
    width: 96px;
  }
  .pc-w-98 {
    width: 98px;
  }
  .pc-w-100 {
    width: 100px;
  }
  .pc-w-102 {
    width: 102px;
  }
  .pc-w-104 {
    width: 104px;
  }
  .pc-w-106 {
    width: 106px;
  }
  .pc-w-108 {
    width: 108px;
  }
  .pc-w-110 {
    width: 110px;
  }
  .pc-w-112 {
    width: 112px;
  }
  .pc-w-114 {
    width: 114px;
  }
  .pc-w-116 {
    width: 116px;
  }
  .pc-w-118 {
    width: 118px;
  }
  .pc-w-120 {
    width: 120px;
  }
  .pc-w-122 {
    width: 122px;
  }
  .pc-w-124 {
    width: 124px;
  }
  .pc-w-126 {
    width: 126px;
  }
  .pc-w-128 {
    width: 128px;
  }
  .pc-w-130 {
    width: 130px;
  }
  .pc-w-132 {
    width: 132px;
  }
  .pc-w-134 {
    width: 134px;
  }
  .pc-w-136 {
    width: 136px;
  }
  .pc-w-138 {
    width: 138px;
  }
  .pc-w-140 {
    width: 140px;
  }
  .pc-w-142 {
    width: 142px;
  }
  .pc-w-144 {
    width: 144px;
  }
  .pc-w-146 {
    width: 146px;
  }
  .pc-w-148 {
    width: 148px;
  }
  .pc-w-150 {
    width: 150px;
  }
  .pc-w-152 {
    width: 152px;
  }
  .pc-w-154 {
    width: 154px;
  }
  .pc-w-156 {
    width: 156px;
  }
  .pc-w-158 {
    width: 158px;
  }
  .pc-w-160 {
    width: 160px;
  }
  .pc-w-162 {
    width: 162px;
  }
  .pc-w-164 {
    width: 164px;
  }
  .pc-w-166 {
    width: 166px;
  }
  .pc-w-168 {
    width: 168px;
  }
  .pc-w-170 {
    width: 170px;
  }
  .pc-w-172 {
    width: 172px;
  }
  .pc-w-174 {
    width: 174px;
  }
  .pc-w-176 {
    width: 176px;
  }
  .pc-w-178 {
    width: 178px;
  }
  .pc-w-180 {
    width: 180px;
  }
  .pc-w-182 {
    width: 182px;
  }
  .pc-w-184 {
    width: 184px;
  }
  .pc-w-186 {
    width: 186px;
  }
  .pc-w-188 {
    width: 188px;
  }
  .pc-w-190 {
    width: 190px;
  }
  .pc-w-192 {
    width: 192px;
  }
  .pc-w-194 {
    width: 194px;
  }
  .pc-w-196 {
    width: 196px;
  }
  .pc-w-198 {
    width: 198px;
  }
  .pc-w-200 {
    width: 200px;
  }
  .pc-w-202 {
    width: 202px;
  }
  .pc-w-204 {
    width: 204px;
  }
  .pc-w-206 {
    width: 206px;
  }
  .pc-w-208 {
    width: 208px;
  }
  .pc-w-210 {
    width: 210px;
  }
  .pc-w-212 {
    width: 212px;
  }
  .pc-w-214 {
    width: 214px;
  }
  .pc-w-216 {
    width: 216px;
  }
  .pc-w-218 {
    width: 218px;
  }
  .pc-w-220 {
    width: 220px;
  }
  .pc-w-222 {
    width: 222px;
  }
  .pc-w-224 {
    width: 224px;
  }
  .pc-w-226 {
    width: 226px;
  }
  .pc-w-228 {
    width: 228px;
  }
  .pc-w-230 {
    width: 230px;
  }
  .pc-w-232 {
    width: 232px;
  }
  .pc-w-234 {
    width: 234px;
  }
  .pc-w-236 {
    width: 236px;
  }
  .pc-w-238 {
    width: 238px;
  }
  .pc-w-240 {
    width: 240px;
  }
  .pc-w-242 {
    width: 242px;
  }
  .pc-w-244 {
    width: 244px;
  }
  .pc-w-246 {
    width: 246px;
  }
  .pc-w-248 {
    width: 248px;
  }
  .pc-w-250 {
    width: 250px;
  }
  .pc-w-252 {
    width: 252px;
  }
  .pc-w-254 {
    width: 254px;
  }
  .pc-w-256 {
    width: 256px;
  }
  .pc-w-258 {
    width: 258px;
  }
  .pc-w-260 {
    width: 260px;
  }
  .pc-w-262 {
    width: 262px;
  }
  .pc-w-264 {
    width: 264px;
  }
  .pc-w-266 {
    width: 266px;
  }
  .pc-w-268 {
    width: 268px;
  }
  .pc-w-270 {
    width: 270px;
  }
  .pc-w-272 {
    width: 272px;
  }
  .pc-w-274 {
    width: 274px;
  }
  .pc-w-276 {
    width: 276px;
  }
  .pc-w-278 {
    width: 278px;
  }
  .pc-w-280 {
    width: 280px;
  }
  .pc-w-282 {
    width: 282px;
  }
  .pc-w-284 {
    width: 284px;
  }
  .pc-w-286 {
    width: 286px;
  }
  .pc-w-288 {
    width: 288px;
  }
  .pc-w-290 {
    width: 290px;
  }
  .pc-w-292 {
    width: 292px;
  }
  .pc-w-294 {
    width: 294px;
  }
  .pc-w-296 {
    width: 296px;
  }
  .pc-w-298 {
    width: 298px;
  }
  .pc-w-300 {
    width: 300px;
  }
  .pc-w-302 {
    width: 302px;
  }
  .pc-w-304 {
    width: 304px;
  }
  .pc-w-306 {
    width: 306px;
  }
  .pc-w-308 {
    width: 308px;
  }
  .pc-w-310 {
    width: 310px;
  }
  .pc-w-312 {
    width: 312px;
  }
  .pc-w-314 {
    width: 314px;
  }
  .pc-w-316 {
    width: 316px;
  }
  .pc-w-318 {
    width: 318px;
  }
  .pc-w-320 {
    width: 320px;
  }
  .pc-w-322 {
    width: 322px;
  }
  .pc-w-324 {
    width: 324px;
  }
  .pc-w-326 {
    width: 326px;
  }
  .pc-w-328 {
    width: 328px;
  }
  .pc-w-330 {
    width: 330px;
  }
  .pc-w-332 {
    width: 332px;
  }
  .pc-w-334 {
    width: 334px;
  }
  .pc-w-336 {
    width: 336px;
  }
  .pc-w-338 {
    width: 338px;
  }
  .pc-w-340 {
    width: 340px;
  }
  .pc-w-342 {
    width: 342px;
  }
  .pc-w-344 {
    width: 344px;
  }
  .pc-w-346 {
    width: 346px;
  }
  .pc-w-348 {
    width: 348px;
  }
  .pc-w-350 {
    width: 350px;
  }
  .pc-w-352 {
    width: 352px;
  }
  .pc-w-354 {
    width: 354px;
  }
  .pc-w-356 {
    width: 356px;
  }
  .pc-w-358 {
    width: 358px;
  }
  .pc-w-360 {
    width: 360px;
  }
  .pc-w-362 {
    width: 362px;
  }
  .pc-w-364 {
    width: 364px;
  }
  .pc-w-366 {
    width: 366px;
  }
  .pc-w-368 {
    width: 368px;
  }
  .pc-w-370 {
    width: 370px;
  }
  .pc-w-372 {
    width: 372px;
  }
  .pc-w-374 {
    width: 374px;
  }
  .pc-w-376 {
    width: 376px;
  }
  .pc-w-378 {
    width: 378px;
  }
  .pc-w-380 {
    width: 380px;
  }
  .pc-w-382 {
    width: 382px;
  }
  .pc-w-384 {
    width: 384px;
  }
  .pc-w-386 {
    width: 386px;
  }
  .pc-w-388 {
    width: 388px;
  }
  .pc-w-390 {
    width: 390px;
  }
  .pc-w-392 {
    width: 392px;
  }
  .pc-w-394 {
    width: 394px;
  }
  .pc-w-396 {
    width: 396px;
  }
  .pc-w-398 {
    width: 398px;
  }
  .pc-w-400 {
    width: 400px;
  }
}
/* Mobile only  */
@media screen and (max-width: 768px) {
  .sp-w-20 {
    width: 20px;
  }
  .sp-w-22 {
    width: 22px;
  }
  .sp-w-24 {
    width: 24px;
  }
  .sp-w-26 {
    width: 26px;
  }
  .sp-w-28 {
    width: 28px;
  }
  .sp-w-30 {
    width: 30px;
  }
  .sp-w-32 {
    width: 32px;
  }
  .sp-w-34 {
    width: 34px;
  }
  .sp-w-36 {
    width: 36px;
  }
  .sp-w-38 {
    width: 38px;
  }
  .sp-w-40 {
    width: 40px;
  }
  .sp-w-42 {
    width: 42px;
  }
  .sp-w-44 {
    width: 44px;
  }
  .sp-w-46 {
    width: 46px;
  }
  .sp-w-48 {
    width: 48px;
  }
  .sp-w-50 {
    width: 50px;
  }
  .sp-w-52 {
    width: 52px;
  }
  .sp-w-54 {
    width: 54px;
  }
  .sp-w-56 {
    width: 56px;
  }
  .sp-w-58 {
    width: 58px;
  }
  .sp-w-60 {
    width: 60px;
  }
  .sp-w-62 {
    width: 62px;
  }
  .sp-w-64 {
    width: 64px;
  }
  .sp-w-66 {
    width: 66px;
  }
  .sp-w-68 {
    width: 68px;
  }
  .sp-w-70 {
    width: 70px;
  }
  .sp-w-72 {
    width: 72px;
  }
  .sp-w-74 {
    width: 74px;
  }
  .sp-w-76 {
    width: 76px;
  }
  .sp-w-78 {
    width: 78px;
  }
  .sp-w-80 {
    width: 80px;
  }
  .sp-w-82 {
    width: 82px;
  }
  .sp-w-84 {
    width: 84px;
  }
  .sp-w-86 {
    width: 86px;
  }
  .sp-w-88 {
    width: 88px;
  }
  .sp-w-90 {
    width: 90px;
  }
  .sp-w-92 {
    width: 92px;
  }
  .sp-w-94 {
    width: 94px;
  }
  .sp-w-96 {
    width: 96px;
  }
  .sp-w-98 {
    width: 98px;
  }
  .sp-w-100 {
    width: 100px;
  }
  .sp-w-102 {
    width: 102px;
  }
  .sp-w-104 {
    width: 104px;
  }
  .sp-w-106 {
    width: 106px;
  }
  .sp-w-108 {
    width: 108px;
  }
  .sp-w-110 {
    width: 110px;
  }
  .sp-w-112 {
    width: 112px;
  }
  .sp-w-114 {
    width: 114px;
  }
  .sp-w-116 {
    width: 116px;
  }
  .sp-w-118 {
    width: 118px;
  }
  .sp-w-120 {
    width: 120px;
  }
  .sp-w-122 {
    width: 122px;
  }
  .sp-w-124 {
    width: 124px;
  }
  .sp-w-126 {
    width: 126px;
  }
  .sp-w-128 {
    width: 128px;
  }
  .sp-w-130 {
    width: 130px;
  }
  .sp-w-132 {
    width: 132px;
  }
  .sp-w-134 {
    width: 134px;
  }
  .sp-w-136 {
    width: 136px;
  }
  .sp-w-138 {
    width: 138px;
  }
  .sp-w-140 {
    width: 140px;
  }
  .sp-w-142 {
    width: 142px;
  }
  .sp-w-144 {
    width: 144px;
  }
  .sp-w-146 {
    width: 146px;
  }
  .sp-w-148 {
    width: 148px;
  }
  .sp-w-150 {
    width: 150px;
  }
  .sp-w-152 {
    width: 152px;
  }
  .sp-w-154 {
    width: 154px;
  }
  .sp-w-156 {
    width: 156px;
  }
  .sp-w-158 {
    width: 158px;
  }
  .sp-w-160 {
    width: 160px;
  }
  .sp-w-162 {
    width: 162px;
  }
  .sp-w-164 {
    width: 164px;
  }
  .sp-w-166 {
    width: 166px;
  }
  .sp-w-168 {
    width: 168px;
  }
  .sp-w-170 {
    width: 170px;
  }
  .sp-w-172 {
    width: 172px;
  }
  .sp-w-174 {
    width: 174px;
  }
  .sp-w-176 {
    width: 176px;
  }
  .sp-w-178 {
    width: 178px;
  }
  .sp-w-180 {
    width: 180px;
  }
  .sp-w-182 {
    width: 182px;
  }
  .sp-w-184 {
    width: 184px;
  }
  .sp-w-186 {
    width: 186px;
  }
  .sp-w-188 {
    width: 188px;
  }
  .sp-w-190 {
    width: 190px;
  }
  .sp-w-192 {
    width: 192px;
  }
  .sp-w-194 {
    width: 194px;
  }
  .sp-w-196 {
    width: 196px;
  }
  .sp-w-198 {
    width: 198px;
  }
  .sp-w-200 {
    width: 200px;
  }
  .sp-w-202 {
    width: 202px;
  }
  .sp-w-204 {
    width: 204px;
  }
  .sp-w-206 {
    width: 206px;
  }
  .sp-w-208 {
    width: 208px;
  }
  .sp-w-210 {
    width: 210px;
  }
  .sp-w-212 {
    width: 212px;
  }
  .sp-w-214 {
    width: 214px;
  }
  .sp-w-216 {
    width: 216px;
  }
  .sp-w-218 {
    width: 218px;
  }
  .sp-w-220 {
    width: 220px;
  }
  .sp-w-222 {
    width: 222px;
  }
  .sp-w-224 {
    width: 224px;
  }
  .sp-w-226 {
    width: 226px;
  }
  .sp-w-228 {
    width: 228px;
  }
  .sp-w-230 {
    width: 230px;
  }
  .sp-w-232 {
    width: 232px;
  }
  .sp-w-234 {
    width: 234px;
  }
  .sp-w-236 {
    width: 236px;
  }
  .sp-w-238 {
    width: 238px;
  }
  .sp-w-240 {
    width: 240px;
  }
  .sp-w-242 {
    width: 242px;
  }
  .sp-w-244 {
    width: 244px;
  }
  .sp-w-246 {
    width: 246px;
  }
  .sp-w-248 {
    width: 248px;
  }
  .sp-w-250 {
    width: 250px;
  }
  .sp-w-252 {
    width: 252px;
  }
  .sp-w-254 {
    width: 254px;
  }
  .sp-w-256 {
    width: 256px;
  }
  .sp-w-258 {
    width: 258px;
  }
  .sp-w-260 {
    width: 260px;
  }
  .sp-w-262 {
    width: 262px;
  }
  .sp-w-264 {
    width: 264px;
  }
  .sp-w-266 {
    width: 266px;
  }
  .sp-w-268 {
    width: 268px;
  }
  .sp-w-270 {
    width: 270px;
  }
  .sp-w-272 {
    width: 272px;
  }
  .sp-w-274 {
    width: 274px;
  }
  .sp-w-276 {
    width: 276px;
  }
  .sp-w-278 {
    width: 278px;
  }
  .sp-w-280 {
    width: 280px;
  }
  .sp-w-282 {
    width: 282px;
  }
  .sp-w-284 {
    width: 284px;
  }
  .sp-w-286 {
    width: 286px;
  }
  .sp-w-288 {
    width: 288px;
  }
  .sp-w-290 {
    width: 290px;
  }
  .sp-w-292 {
    width: 292px;
  }
  .sp-w-294 {
    width: 294px;
  }
  .sp-w-296 {
    width: 296px;
  }
  .sp-w-298 {
    width: 298px;
  }
  .sp-w-300 {
    width: 300px;
  }
  .sp-w-302 {
    width: 302px;
  }
  .sp-w-304 {
    width: 304px;
  }
  .sp-w-306 {
    width: 306px;
  }
  .sp-w-308 {
    width: 308px;
  }
  .sp-w-310 {
    width: 310px;
  }
  .sp-w-312 {
    width: 312px;
  }
  .sp-w-314 {
    width: 314px;
  }
  .sp-w-316 {
    width: 316px;
  }
  .sp-w-318 {
    width: 318px;
  }
  .sp-w-320 {
    width: 320px;
  }
  .sp-w-322 {
    width: 322px;
  }
  .sp-w-324 {
    width: 324px;
  }
  .sp-w-326 {
    width: 326px;
  }
  .sp-w-328 {
    width: 328px;
  }
  .sp-w-330 {
    width: 330px;
  }
  .sp-w-332 {
    width: 332px;
  }
  .sp-w-334 {
    width: 334px;
  }
  .sp-w-336 {
    width: 336px;
  }
  .sp-w-338 {
    width: 338px;
  }
  .sp-w-340 {
    width: 340px;
  }
  .sp-w-342 {
    width: 342px;
  }
  .sp-w-344 {
    width: 344px;
  }
  .sp-w-346 {
    width: 346px;
  }
  .sp-w-348 {
    width: 348px;
  }
  .sp-w-350 {
    width: 350px;
  }
  .sp-w-352 {
    width: 352px;
  }
  .sp-w-354 {
    width: 354px;
  }
  .sp-w-356 {
    width: 356px;
  }
  .sp-w-358 {
    width: 358px;
  }
  .sp-w-360 {
    width: 360px;
  }
  .sp-w-362 {
    width: 362px;
  }
  .sp-w-364 {
    width: 364px;
  }
  .sp-w-366 {
    width: 366px;
  }
  .sp-w-368 {
    width: 368px;
  }
  .sp-w-370 {
    width: 370px;
  }
  .sp-w-372 {
    width: 372px;
  }
  .sp-w-374 {
    width: 374px;
  }
  .sp-w-376 {
    width: 376px;
  }
  .sp-w-378 {
    width: 378px;
  }
  .sp-w-380 {
    width: 380px;
  }
  .sp-w-382 {
    width: 382px;
  }
  .sp-w-384 {
    width: 384px;
  }
  .sp-w-386 {
    width: 386px;
  }
  .sp-w-388 {
    width: 388px;
  }
  .sp-w-390 {
    width: 390px;
  }
  .sp-w-392 {
    width: 392px;
  }
  .sp-w-394 {
    width: 394px;
  }
  .sp-w-396 {
    width: 396px;
  }
  .sp-w-398 {
    width: 398px;
  }
  .sp-w-400 {
    width: 400px;
  }
}