/* ==============================================================
*  reset
* ============================================================ */
*,::before,::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:where(html) {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
:where(a) {
  text-decoration: none;
}
:where(svg, video, canvas, audio, iframe, embed, object) {
	display: block;
}
:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
  vertical-align: bottom;
}
:where(svg) {
  fill: currentColor;
  stroke: none;
}
:where(ul, ol) {
  list-style: none;
}
:where(table) {
  border-collapse: collapse;
}
:where(hr) {
  block-size: 0;
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  overflow: visible;
}
:where(input) {
  border-radius: 0;
}
:where(input[type="text"], textarea) {
  padding: 0 2px;
}
:where(button, label, select, summary) {
  cursor: pointer;
}
:where(button, input, textarea, select) {
  border: 1px solid;
  font: inherit;
}
:where(textarea) {
  overflow: auto;
  resize: vertical;
  user-select: auto;
}
:where([disabled]) {
  cursor: default;
}
:where([hidden]) {
  display: none;
}

/* ==============================================================
*  base
* ============================================================ */
:root {
  --color-black: #1B1A1E;
  --txt-color-main: #1C1B1F;
  --txt-color-sub: #FFF;
  --link-color-main: #DDBFF3;
  --link-color-hover: #bb00bb;
  --link-color-sub: #541B86;
}

html {
  line-height: 1.5;
  box-sizing: border-box;
}

body {
  color: var(--txt-color-main);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  font-kerning: normal;
}

@media screen and (width <= 768px) {
  body {
    font-size: max(4.26vw,16px);
  }
}

a img {
  opacity: 1;
  transition: opacity .3s;
}

a:hover img {
  opacity: .8;
}

img {
  /* pointer-events: none; */
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  touch-callout:none;
  user-select:none;
}

/* ==============================================================
*  common
* ============================================================ */
/* ---------- header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
@media screen and (width <= 768px) {
  .header {
    height: 80px;
    &::before {
      position: absolute;
      inset: 0;
      translate: 100%;
      width: 100vw;
      height: 100vh;
      background-color: rgba(255,255,255,.9);
      transition: translate .3s;
      content: "";
    }
    &.is-open {
      &::before {
        translate: 0;
      }
    }
  }
}

.header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 10px min(3.12vw,30px);
  background-color: rgba(255,255,255,.75);
}
@media screen and (width <= 768px) {
  .header-inner {
    position: relative;
    padding: 10px 20px 10px 15px;
    & > div:last-child {
      position: absolute;
      top: 80px;
      right: 0;
      translate: 100%;
      width: 100%;
      height: calc(100vh - 80px);
      padding-bottom: 100px;
      overflow: hidden auto;
      overscroll-behavior: none;
      transition: translate .3s;
      .is-open & {
        translate: 0;
      }
    }
  }
}

.header-logo {
  width: min(7.29vw,70px);
  height: auto;
  aspect-ratio: 1;
  padding: 0;
  align-self: center;
  flex-shrink: 0;
  & a {
    &:hover {
      & img {
        opacity: 1;
      }
    }
  }
}
@media screen and (width <= 768px) {
  .header-logo {
    width: 60px;
  }
}

/*.header-nav {
  align-self: flex-end;
  margin-left: auto;
}*/
/*@media screen and (width <= 768px) {
  .header-nav {
    position: absolute;
    top: 80px;
    right: 0;
    translate: 100%;
    transition: translate .3s;
    .is-open & {
      translate: 0;
    }
  }
}*/

.globalNav {
  margin-bottom: 20px;
  & ul {
    display: flex;
    gap: 0 min(3.12vw,30px);
  }
  & a {
    color: var(--txt-color-main);
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-size: clamp(12px, -4.105px + 2.094vw, 16px);
    font-weight: 500;
    font-style: normal;
    line-height: 1.18;
    transition: color .3s;
    &:hover {
      color: var(--link-color-hover);
    }
  }
}
@media screen and (width <= 768px) {
  .globalNav {
    margin: 20px 25px 0;
    & ul {
      display: block;
      text-align: right;
    }
    & li:not(:first-child) {
      margin-top: max(4vw,20px);
    }
    & a {
      font-size: max(4.26vw,16px);
    }
  }
}

.header-floating {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  & .snsList {
    margin-right: 30px;
  }
}
@media screen and (width <= 768px) {
  .header-floating {
    position: static;
    margin-top: max(13.33vw, 50px);
    & .snsList {
      flex-direction: row;
      flex-wrap: wrap;
      gap: max(2.66vw,10px);
      justify-content: flex-end;
      margin-right: 20px;
    }
  }
}

.snsList {
  display: flex;
  flex-direction: column;
  gap: 15px;
  & a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--color-black);
    transition: outline .1s;
    &:hover {
      outline: 2px solid #DDBFF3;
    }
  }
/*  .header-floating & {
    margin-right: 30px;
  }*/
}
@media screen and (width <= 768px) {
  .snsList {
    & a {
      width: max(8vw,40px);
    }
/*    .header-floating & {
      flex-direction: row;
      gap: max(2.66vw,10px);
      justify-content: flex-end;
      margin-right: 20px;
    }*/
  }
}



.header-spBtn {
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  display: none;
  width: 40px;
  height: auto;
  aspect-ratio: 40/30;
}
@media screen and (width <= 768px) {
  .header-spBtn {
    display: flex;
  }
}

.spBtn {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  appearance: none;
  &::before, &::after {
    position: absolute;
    left: 0;
    translate: 0 -50%;
    transform-origin: left center;
    width: 100%;
    height: 5px;
    background-color: #333;
    border-radius: 5px;
    transition: rotate .2s, left .1s;
    content: "";
  }
  &::before {
    top: 0;
  }
  &::after {
    top: 100%;
  }
  & > span {
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 100%;
    height: 5px;
    background-color: #333;
    border-radius: 5px;
    transition: opacity .2s;
  }
  .is-open & {
    &::before, &::after {
      left: 5px;
      width: 107%;
    }
    &::before {
      rotate: 45deg;
    }
    &::after {
      rotate: -45deg;
    }
    & > span {
      opacity: 0;
    }
  }
}


/* ---------- main ---------- */
:where(body:not(#top)) .main {
  padding-top: 90px;
}
@media screen and (width <= 768px) {
  :where(body:not(#top)) .main {
    padding-top: 80px;
  }
}


/* ---------- breadcrumbs ---------- */
.breadcrumbs {
  padding: 20px 0 15px;
  & ul {
    display: flex;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px 5px;
    overflow: auto hidden;
  }
  & li {
    white-space: nowrap;
    &:not(:first-child) {
      position: relative;
      padding-left: 20px;
      &::before {
        position: absolute;
        top: calc(50% + 1px);
        left: 10px;
        rotate: 45deg;
        translate: -50% -50%;
        display: block;
        width: 6px;
        height: auto;
        aspect-ratio: 1;
        border-top: 1px solid #000;
        border-right: 1px solid #000;
        content: "";
      }
    }
  }
}
@media screen and (width <= 768px) {
  .breadcrumbs {
    & ul {
      max-width: 100%;
      padding: 0 max(5.33vw,20px) 5px;
    }
    & li {
      font-size: max(2.93vw,11px);
      &:not(:first-child) {
        padding-left: max(5.33vw,20px);
        &::before {
          left: max(2.66vw,10px);
          width: max(1.06vw,4px);
        }
      }
    }
  }
}

/* ---------- footer ---------- */
.footer {
  position: relative;
  background: url(../img/common/img_footer_bg.webp) no-repeat bottom/cover;
}

.footer-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 50px 20px 20px;
}
@media screen and (width <= 768px) {
  .footer-inner {
    padding: max(21.33vw,80px) max(5.33vw,20px) max(4vw,15px);
  }
}

.footer-logo {
  text-align: center;
  & a {
    display: block;
  }
}
@media screen and (width <= 768px) {
  .footer-logo {
    text-align: left;
    & a {
      width: 53.33vw;
      height: auto;
      aspect-ratio: 200/41;
      & img {
        width: 100%;
      }
    }
  }
}

.footerNav {
  margin-top: 55px;
  & ul {
    display: flex;
    gap: 0 min(2.6vw,30px);
    justify-content: center;
  }
  & a {
    color: var(--txt-color-sub);
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.18;
    &:hover {
      text-decoration: underline;
    }
  }
}
@media screen and (width <= 768px) {
  .footerNav {
    margin-top: max(5.33vw,20px);
    & ul {
      display: block;
    }
    & li:not(:first-child) {
      margin-top: max(2.66vw,10px);
    }
    & a {
      font-size: max(3.73vw,14px);
    }
  }
}

.footerSns {
  margin-top: 40px;
  & .snsList {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    & a {
      width: 40px;
    }
  }
}
@media screen and (width <= 768px) {
  .footerSns {
    margin-top: max(8vw,30px);
    & .snsList {
      & a {
        width: max(8vw,40px);
        padding: 7px;
      }
    }
  }
}

.footerCopy {
  margin-top: 55px;
  color: var(--txt-color-sub);
  text-align: center;
}

.pageTop {
  position: absolute;
  top: -70px;
  right: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
  z-index: 10;
  & button {
    position: relative;
    width: 60px;
    height: auto;
    aspect-ratio: 1;
    border: none;
    border-radius: 50%;
    background: url(../img/common/icn_pagetop.svg) no-repeat center/47% #333;
    -webkit-appearance: none;
    appearance: none;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.3s ease-out;
    &:hover {
      background-color: #333c;
      transform: translateY(-5px);
    }
  }
  &.is-fixed {
    position: fixed;
    top: initial;
    bottom: 50px;
  }
  &.is-show {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (width <= 768px) {
  .pageTop {
    right: 20px;
    & button {
      width: max(7.81vw,40px);
    }
  }
}


/* ---------- section ---------- */
.contents {
  padding: 80px 0 200px;
}
@media screen and (width <= 768px) {
  .contents {
    padding: max(8vw,30px) 0 max(26.66vw,100px);
  }
}

.section-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (width <= 768px) {
  .section-inner {
    max-width: 100%;
    padding: 0 max(5.33vw,20px);
  }
}

.pageHeader {
  & h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 1.21;
  }
}
@media screen and (width <= 768px) {
  .pageHeader {
    & h1 {
      font-size: max(10.66vw,40px);
    }
  }
}

.pageBody {
  margin-top: 80px;
}
@media screen and (width <= 768px) {
  .pageBody {
    margin-top: max(8vw,30px);
  }
}

.lowerPageHeader {
  & h1 {
    margin-top: 15px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.34;
  }
  & p {
    font-size: 14px;
    line-height: 1.35;
  }
}
@media screen and (width <= 768px) {
  .lowerPageHeader {
    & h1 {
      margin-top: max(2.66vw,10px);
      font-size: max(5.33vw,20px);
    }
    & p {
      font-size: max(3.73vw,14px);
    }
  }
}

.lowerPageHeader-release {
  display: flex;
  gap: 0 50px;
}

.lowerPageBody {
  margin-top: 80px;
  & > * + * {
    margin-top: 1.5em;
  }
  & ul {
    padding-left: 1.5em;
    list-style: disc;
    & li > * {
      margin-top: 1em;
    }
  }
  & ol {
    padding-left: 1.5em;
    list-style: decimal;
    & li > * {
      margin-top: 1em;
    }
  }
}
@media screen and (width <= 768px) {
  .lowerPageBody {
    margin-top: max(10.66vw,40px);
  }
}


/* ---------- video ---------- */
.videoThumb {
  position: relative;
  cursor: pointer;
  & img {
    transition: all .3s;
  }
  &:hover {
    & img {
      scale: 1.05;
    }
  }
  &::after {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    border-style: solid;
    border-color: transparent transparent transparent #DDBFF3;
    border-width: 30px 0 30px 50px;
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.5));
  }
}

.videoModal {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  background-color: rgba(0,0,0,.8);
}

.videoModal-inner {
  position: relative;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  max-width: 900px;
  width: 100%;
  & iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  & button {
    position: absolute;
    top: -90px;
    right: 0;
    width: 64px;
    height: auto;
    aspect-ratio: 64/60;
    border: none;
    background: url(../img/top/img_modal_close.svg) no-repeat center/cover;
    appearance: none;
    & span {
      display: block;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
    }
  }
}
@media screen and (width <= 768px) {
  .videoModal-inner {
    max-width: 90%;
    & button {
      top: calc(max(12vw,45px) * -1);
      width: max(8.53vw,32px);
    }
  }
}


/* ---------- profile ---------- */
.profileList {
  display: flex;
  gap: 0 70px;
  margin-top: 50px;
  > li {
    width: calc((100% - 140px) / 3);
  }
}
@media screen and (width <= 768px) {
  .profileList {
    flex-direction: column;
    gap: max(13.33vw,50px) 0;
    > li {
      width: max(66.66vw,320px);
      margin: 0 auto;
    }
  }
}

.profile-img {
  position: relative;
  &[href] {
    display: block;
    &:hover {
      & img {
        scale: 1.05;
        opacity: 1;
      }
    }
  }
  & img {
    transition: all .3s;
  }
  & span {
    position: absolute;
    bottom: 0;
    right: 0;
    translate: 0 50%;
    color: var(--link-color-main);
    font-family: "Montserrat", sans-serif;
    font-size: min(8.69vw,120px);
    font-weight: 700;
    line-height: 1;
  }
}
@media screen and (width <= 768px) {
  .profile-img {
    & img {
      width: 100%;
    }
    & span {
      font-size: max(26.66vw,100px);
    }
  }
}

.profile-contents {
  padding: min(3.98vw,55px) min(1.81vw,25px) min(0.36vw,5px);
}
@media screen and (width <= 768px) {
  .profile-contents {
    padding: max(8vw,30px) 0 0;
  }
}

.profile-name {
  color: var(--txt-color-main);
  /* font-size: clamp(16px, 0.897px + 1.964vw, 28px); */
  font-size: clamp(16px, 5.931px + 1.309vw, 24px);
  font-weight: 700;
  transition: all .3s ease;
  &[href]:hover {
    color: var(--link-color-main) !important;
  }
  & span {
    /* font-size: clamp(14px, 6.448px + 0.982vw, 20px); */
    font-size: clamp(14px, 8.966px + 0.655vw, 18px);
    font-weight: 500;
  }
}
@media screen and (width <= 768px) {
  .profile-name {
    font-size: max(5.33vw,20px);
    & span {
      font-size: max(4.26vw,16px);
    }
  }
}

.profileTxtArea {
  margin-top: 10px;
  color: var(--txt-color-main);
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (width <= 768px) {
  .profileTxtArea {
    font-size: max(3.2vw,12px);
  }
}

.profileSns {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  & a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--color-black);
    transition: outline .2s;
    &:hover {
      outline: 2px solid #DDBFF3;
    }
  }
}


/* ---------- parts ---------- */
.heading-h1 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.34;
}

.moreBtnWrap {
  margin-top: 80px;
}
@media screen and (width <= 768px) {
  .moreBtnWrap {
    margin-top: max(11.33vw,50px);
  }
}

.moreBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: auto;
  aspect-ratio: 200/60;
  margin: 0 auto;
  border-radius: 0 0 15px 0;
  background-color: #FFF;
  color: var(--link-color-sub);
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  overflow: hidden;
  transition: color .1s;
  &::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: var(--link-color-sub);
    transition: width .3s;
    content: "";
  }
  &:hover {
    color: #FFF;
    &::before {
      left: 0;
      width: 100%;
    }
    & span {
      &::before,&::after {
        background-color: #FFF;
      }
    }
  }
  & span {
    position: relative;
    padding-right: 33px;
    &::before {
      position: absolute;
      bottom: 5px;
      right: 0;
      rotate: 40deg;
      width: 7px;
      height: 2px;
      background-color: var(--link-color-sub);
      content: "";
    }
    &::after {
      position: absolute;
      bottom: 3px;
      right: 0;
      width: 29px;
      height: 2px;
      background-color: var(--link-color-sub);
      content: "";
    }
  }
  &._1 {
    /* border: 1px solid #707070; */
    border: 0;
  }
  &._2 {
    border: 1px solid #DDBFF3;
    background-color: #DDBFF3;
  }
}
@media screen and (width <= 768px) {
  .moreBtn {
    width: max(40vw,150px);
    aspect-ratio: 150/45;
    font-size: max(3.73vw,14px);
    & span {
      position: relative;
      padding-right: max(8.79vw,33px);
      &::before {
        bottom: max(1.33vw,5px);
        width: max(1.86vw,7px);
        height: max(0.53vw,2px);
      }
      &::after {
        bottom: max(0.8vw,3px);
        width: max(7.73vw,29px);
        height: max(0.53vw,2px);
      }
    }
  }
}

.newsList {
  & li {
    border-bottom: 1px solid #DDBFF3;
  }
  & a {
    display: block;
    padding: 25px 0;
    color: var(--txt-color-main);
    font-weight: 500;
    line-height: 1.5;
    &:hover {
      text-decoration: underline;
    }
  }
  & p {
    margin-top: 10px;
  }
}
@media screen and (width <= 768px) {
  .newsList {
    & a {
      padding: max(5.33vw,20px) 0;
      & time {
        font-size: max(3.73vw,14px);
      }
    }
  }
}

.pagination {
  margin-top: 60px;
  & ul {
    display: flex;
    gap: 0 20px;
  }
  & li {
    font-size: 22px;
  }
  & a {
    color: #333;
    &:hover {
      text-decoration: underline;
    }
  }
  & .current {
    color: #9F9F9F;
  }
}
@media screen and (width <= 768px) {
  .pagination {
    margin-top: max(13.33vw,50px);
    & ul {
      gap: 0 max(5.33vw,20px);
    }
    & li {
      font-size: max(5.86vw,22px);
    }
  }
}


/* ==============================================================
*  animation
* ============================================================ */
/* ---------- split text ---------- */
[data-js*="splitText"] {
  & .char {
    display: inline-block;
    opacity: 0;
  }
  &.is-view {
    & .char {
      animation: translateX .4s cubic-bezier(.39, .575, .565, 1) both, fadeIn .3s cubic-bezier(.55, .055, .675, 0.19) both;
    }
  }
}

@keyframes translateX {
  0% {
    transform: translateX(25%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/* ==============================================================
*  utility
* ============================================================ */
@media screen and (min-width: 769px)  {
  .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

.visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0,0,0,0);
  overflow: hidden;
  white-space: nowrap;
}

.mt-0 { margin-top: 0 !important; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }
.mt-60 { margin-top: 60px !important; }
.mt-70 { margin-top: 70px !important; }
.mt-80 { margin-top: 80px !important; }
.mt-90 { margin-top: 90px !important; }
.mt-100 { margin-top: 100px !important; }
.mt-120 { margin-top: 120px !important; }
.mt-130 { margin-top: 130px !important; }
.mt-140 { margin-top: 140px !important; }
.mt-150 { margin-top: 150px !important; }
@media screen and (max-width: 768px) {
  .mt-md-0 { margin-top: 0 !important; }
  .mt-md-10 { margin-top: 10px !important; }
  .mt-md-20 { margin-top: 20px !important; }
  .mt-md-30 { margin-top: 30px !important; }
  .mt-md-40 { margin-top: 40px !important; }
  .mt-md-50 { margin-top: 50px !important; }
  .mt-md-60 { margin-top: 60px !important; }
  .mt-md-70 { margin-top: 70px !important; }
  .mt-md-80 { margin-top: 80px !important; }
  .mt-md-90 { margin-top: 90px !important; }
  .mt-md-100 { margin-top: 100px !important; }
}

.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mb-70 { margin-bottom: 70px !important; }
.mb-80 { margin-bottom: 80px !important; }
.mb-90 { margin-bottom: 90px !important; }
.mb-100 { margin-bottom: 100px !important; }
@media screen and (max-width: 768px) {
  .mb-md-0 { margin-bottom: 0 !important; }
  .mb-md-10 { margin-bottom: 10px !important; }
  .mb-md-20 { margin-bottom: 20px !important; }
  .mb-md-30 { margin-bottom: 30px !important; }
  .mb-md-40 { margin-bottom: 40px !important; }
  .mb-md-50 { margin-bottom: 50px !important; }
  .mb-md-60 { margin-bottom: 60px !important; }
  .mb-md-70 { margin-bottom: 70px !important; }
  .mb-md-80 { margin-bottom: 80px !important; }
  .mb-md-90 { margin-bottom: 90px !important; }
  .mb-md-100 { margin-bottom: 100px !important; }
}

.mr-0 { margin-right: 0 !important; }
.mr-10 { margin-right: 10px !important; }
.mr-20 { margin-right: 20px !important; }
.mr-30 { margin-right: 30px !important; }
.mr-40 { margin-right: 40px !important; }
.mr-50 { margin-right: 50px !important; }
.mr-60 { margin-right: 60px !important; }
.mr-70 { margin-right: 70px !important; }
.mr-80 { margin-right: 80px !important; }
.mr-90 { margin-right: 90px !important; }
.mr-100 { margin-right: 100px !important; }
@media screen and (max-width: 768px) {
  .mr-md-0 { margin-right: 0 !important; }
  .mr-md-10 { margin-right: 10px !important; }
  .mr-md-20 { margin-right: 20px !important; }
  .mr-md-30 { margin-right: 30px !important; }
  .mr-md-40 { margin-right: 40px !important; }
  .mr-md-50 { margin-right: 50px !important; }
  .mr-md-60 { margin-right: 60px !important; }
  .mr-md-70 { margin-right: 70px !important; }
  .mr-md-80 { margin-right: 80px !important; }
  .mr-md-90 { margin-right: 90px !important; }
  .mr-md-100 { margin-right: 100px !important; }
}

.ml-0 { margin-left: 0 !important; }
.ml-10 { margin-left: 10px !important; }
.ml-20 { margin-left: 20px !important; }
.ml-30 { margin-left: 30px !important; }
.ml-40 { margin-left: 40px !important; }
.ml-50 { margin-left: 50px !important; }
.ml-60 { margin-left: 60px !important; }
.ml-70 { margin-left: 70px !important; }
.ml-80 { margin-left: 80px !important; }
.ml-90 { margin-left: 90px !important; }
.ml-100 { margin-left: 100px !important; }
@media screen and (max-width: 768px) {
  .ml-md-0 { margin-left: 0 !important; }
  .ml-md-10 { margin-left: 10px !important; }
  .ml-md-20 { margin-left: 20px !important; }
  .ml-md-30 { margin-left: 30px !important; }
  .ml-md-40 { margin-left: 40px !important; }
  .ml-md-50 { margin-left: 50px !important; }
  .ml-md-60 { margin-left: 60px !important; }
  .ml-md-70 { margin-left: 70px !important; }
  .ml-md-80 { margin-left: 80px !important; }
  .ml-md-90 { margin-left: 90px !important; }
  .ml-md-100 { margin-left: 100px !important; }
}


.pt-0 { padding-top: 0 !important; }
.pt-10 { padding-top: 10px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-30 { padding-top: 30px !important; }
.pt-40 { padding-top: 40px !important; }
.pt-50 { padding-top: 50px !important; }
.pt-60 { padding-top: 60px !important; }
.pt-70 { padding-top: 70px !important; }
.pt-80 { padding-top: 80px !important; }
.pt-90 { padding-top: 90px !important; }
.pt-100 { padding-top: 100px !important; }
@media screen and (max-width: 768px) {
  .pt-md-0 { padding-top: 0 !important; }
  .pt-md-10 { padding-top: 10px !important; }
  .pt-md-20 { padding-top: 20px !important; }
  .pt-md-30 { padding-top: 30px !important; }
  .pt-md-40 { padding-top: 40px !important; }
  .pt-md-50 { padding-top: 50px !important; }
  .pt-md-60 { padding-top: 60px !important; }
  .pt-md-70 { padding-top: 70px !important; }
  .pt-md-80 { padding-top: 80px !important; }
  .pt-md-90 { padding-top: 90px !important; }
  .pt-md-100 { padding-top: 100px !important; }
}

.pb-0 { padding-bottom: 0 !important; }
.pb-10 { padding-bottom: 10px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pb-30 { padding-bottom: 30px !important; }
.pb-40 { padding-bottom: 40px !important; }
.pb-50 { padding-bottom: 50px !important; }
.pb-60 { padding-bottom: 60px !important; }
.pb-70 { padding-bottom: 70px !important; }
.pb-80 { padding-bottom: 80px !important; }
.pb-90 { padding-bottom: 90px !important; }
.pb-100 { padding-bottom: 100px !important; }
@media screen and (max-width: 768px) {
  .pb-md-0 { padding-bottom: 0 !important; }
  .pb-md-10 { padding-bottom: 10px !important; }
  .pb-md-20 { padding-bottom: 20px !important; }
  .pb-md-30 { padding-bottom: 30px !important; }
  .pb-md-40 { padding-bottom: 40px !important; }
  .pb-md-50 { padding-bottom: 50px !important; }
  .pb-md-60 { padding-bottom: 60px !important; }
  .pb-md-70 { padding-bottom: 70px !important; }
  .pb-md-80 { padding-bottom: 80px !important; }
  .pb-md-90 { padding-bottom: 90px !important; }
  .pb-md-100 { padding-bottom: 100px !important; }
}