@charset "UTF-8";
.strategy-wrapper {
  width: 95%;
  max-width: 1166px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .strategy-wrapper {
    width: 89.333%;
  }
}

.strategy-content {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .strategy-content {
    min-width: inherit;
  }
}

.strategy-content {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", "Roboto", sans-serif;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.strategy-content a {
  text-decoration: none;
  color: #fff;
}

picture {
  display: block;
}

img {
  max-width: 100%;
}

br {
  line-height: inherit;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.unselectable {
  -ms-user-select: none; /* IE 10+ */
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

a.c-button {
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 14.4rem;
  height: 5.9rem;
  font-weight: bold;
  justify-content: right;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  text-transform: uppercase;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", "Roboto", sans-serif;
  font-style: italic;
  transition: color 0.3s;
  font-size: 1rem;
}
@media screen and (min-width: 569px) {
  a.c-button {
    margin-top: 25px;
    font-size: 10px;
    margin-left: 0;
  }
}
a.c-button:after {
  content: "";
  position: absolute;
  width: 5.9rem;
  height: 5.9rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: solid 1px #fff;
}
a.c-button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.15rem;
  transform: translateY(-50%);
  width: 1.643rem;
  height: 0.519rem;
  background: url(../img/icon_arrow.svg) center center no-repeat;
  background-size: contain;
  transition: left 0.3s;
}
a.c-button:hover {
  color: #fff;
}
a.c-button:hover:before {
  left: 3rem;
}
.l-page--column_2 {
  padding-top: 50px;
}
@media screen and (min-width: 769px) {
  .l-page--column_2 {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .l-page--column_2 {
    padding-top: 20px;
  }
}
.l-page--column_2 .l-page__main {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .l-page--column_2 .l-page__main {
    width: 100%;
  }
}
.l-page--column_2 .l-sidebar {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .l-page--column_2 .l-sidebar {
    width: 100%;
  }
}

.video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-footer {
  position: relative;
}

.fv {
  height: calc(90vh - 48px);
  max-height: 700px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .fv {
    max-height: inherit;
    height: calc(90vh - 114px);
  }
}
.fv__video {
  width: 100%;
  height: 100%;
}
.fv__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}
.fv .strategy-wrapper {
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.fv__block {
  padding-top: calc(3.5rem + 48px);
}
@media screen and (min-width: 769px) {
  .fv__block {
    padding-top: 7.3vw;
  }
}
.fv__lead img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .fv__lead {
    width: 44.7vw;
  }
}
.fv__ttl {
  margin-top: 0.5rem;
  font-size: 1.9rem;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .fv__ttl {
    font-size: 34px;
  }
}
.fv__scroll {
  position: absolute;
  left: 20px;
  bottom: 30vw;
  transform-origin: top left;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 769px) {
  .fv__scroll {
    bottom: 100px;
  }
}
.fv__scroll:after {
  animation: scroll 2s infinite;
  background-color: #fff;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.future {
  position: relative;
  z-index: 2;
  background: #091A52;
  padding-top: 4rem;
  padding-bottom: 10rem;
  position: relative;
}
@media screen and (min-width: 769px) {
  .future {
    padding-top: 40px;
    padding-bottom: 220px;
  }
}
.future:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/future_bg_sp.png) center bottom no-repeat;
  background-size: 100% auto;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .future:before {
    background-image: url(../img/future_bg_pc.png);
  }
}
@media screen and (min-width: 769px) {
  .future .strategy-wrapper {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  .future__cont {
    width: 50%;
  }
}
.future__copy {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 2rem 0;
}
.future__copy img {
  width: 100%;
}
.future__ttl {
  display: inline-block;
  position: relative;
  padding: 1rem 1.5rem 1rem 0;
  margin-top: -1rem;
}
@media screen and (min-width: 769px) {
  .future__ttl {
    padding: 5px 15px;
    margin-top: 0;
  }
}
.future__ttl:before {
  content: "";
  position: absolute;
  width: calc(100% + 5vw);
  height: 100%;
  left: -5vw;
  top: 0;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .future__ttl:before {
    left: 0;
    width: 100%;
  }
}
.future__ttl span {
  position: relative;
  z-index: 2;
  font-size: 2.2rem;
  color: #091A52;
  font-weight: 800;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .future__ttl span {
    font-size: 40px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 769px) {
  .future__ttl span {
    font-size: 34px;
  }
}
.future__video {
  aspect-ratio: 16/9;
}
@media screen and (min-width: 769px) {
  .future__video {
    margin-top: 0;
    width: 47.5%;
  }
}
.future__video img {
  cursor: pointer;
  width: 100%;
}
.future__video iframe {
  width: 100%;
  height: 100%;
}
.future__block {
  margin-top: 3rem;
}
@media screen and (min-width: 769px) {
  .future__block {
    max-width: 560px;
    margin-top: 0;
  }
}
.future__lead {
  padding: 0.5rem 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .future__lead {
    font-size: 25px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 769px) {
  .future__lead {
    font-size: 20px;
  }
}
.future__text {
  margin-top: 1.5rem;
  line-height: 2.16;
  font-size: 1.2rem;
}
@media screen and (min-width: 769px) {
  .future__text {
    font-size: 1.6rem;
  }
}

.strategy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 569px) {
  .strategy {
    padding-bottom: 50px;
    padding-top: 90px;
  }
}
@media screen and (min-width: 769px) {
  .strategy {
    padding-bottom: 50px;
    padding-top: 60px;
  }
}
.strategy__copy {
  position: absolute;
  top: -7.5rem;
}
@media screen and (min-width: 569px) {
  .strategy__copy {
    top: -160px;
  }
}
@media screen and (min-width: 769px) {
  .strategy__copy {
    top: -150px;
  }
}
.strategy__copy span {
  display: block;
  font-weight: 700;
}
.strategy__copy__ja {
  font-size: 2rem;
}
@media screen and (min-width: 569px) {
  .strategy__copy__ja {
    font-size: 4rem;
  }
}
@media screen and (min-width: 769px) {
  .strategy__copy__ja {
    font-size: 6rem;
  }
}
.strategy__copy__en {
  font-size: 1.8rem;
  line-height: 0.9;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", "Roboto", sans-serif;
  opacity: 0.8;
}
@media screen and (min-width: 569px) {
  .strategy__copy__en {
    font-size: 40px;
  }
}
.strategy__copy img {
  width: 66.608vw;
}
@media screen and (min-width: 569px) {
  .strategy__copy img {
    width: 54vw;
    max-width: 750px;
  }
}
.strategy__ttl {
  margin-top: 1rem;
  font-size: 1.8rem;
  font-weight: 800;
}
@media screen and (min-width: 569px) {
  .strategy__ttl {
    font-size: 40px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 569px) {
  .strategy__list {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 60px;
  }
}
.strategy__item {
  margin-top: 5rem;
  background: url(../img/strategy_icon_arrow.svg) center bottom 2.5rem no-repeat;
  background-size: 4rem auto;
  background-color: #00071E;
  border: solid 1px #fff;
  border-top: none;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.5) 0 0 50px;
  text-align: center;
}
@media screen and (min-width: 569px) {
  .strategy__item {
    width: 45%;
  }
}
@media screen and (min-width: 769px) {
  .strategy__item {
    width: 32%;
    background-size: 40px auto;
    background-position: center bottom 20px;
  }
}
.strategy__item a {
  display: block;
  padding: 5rem 1rem 6.5rem;
}
@media screen and (min-width: 569px) {
  .strategy__item a {
    padding: 50px 10px 70px;
  }
}
.strategy__item:before, .strategy__item:after {
  content: "";
  position: absolute;
  width: calc(50% - 6.5rem);
  height: 1px;
  background: #fff;
  top: 0;
}
.strategy__item:before {
  left: 0;
}
.strategy__item:after {
  right: 0;
}
.strategy__item-num {
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
}
.strategy__item-num img {
  width: 9rem;
}
@media screen and (min-width: 569px) {
  .strategy__item-num img {
    width: 110px;
  }
}
.strategy__item-ttl {
  font-size: 2.8rem;
  letter-spacing: 0.15rem;
  font-weight: 700;
}
@media screen and (min-width: 569px) {
  .strategy__item-ttl {
    font-size: 28px;
  }
}
@media screen and (min-width: 569px) {
  .strategy__item:nth-child(1) .strategy__item-num {
    width: 100px;
  }
}
.strategy__item-icon {
  margin-top: 2rem;
}
@media screen and (min-width: 569px) {
  .strategy__item-icon {
    margin-top: 20px;
  }
}
.strategy__item-icon img {
  margin: auto;
}
.strategy__item-text {
  margin-top: 3rem;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 569px) {
  .strategy__item-text {
    font-size: 16px;
    margin-top: 30px;
  }
}

.detail {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 569px) {
  .detail {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 769px) {
  .detail .strategy-wrapper.--flex {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  .detail__cont {
    width: 42.5%;
  }
}
.detail__image img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .detail__image {
    width: 58%;
    margin-top: 30px;
    transform: translateX(5%);
  }
}
.detail__num {
  display: block;
}
.detail__num img {
  width: 7.5rem;
}
@media screen and (min-width: 769px) {
  .detail__num img {
    width: 100px;
  }
}
.detail__ttl {
  margin-top: 1rem;
  font-size: 3.5rem;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .detail__ttl {
    margin-top: 0;
    font-size: 60px;
  }
}
.detail__subttl {
  margin-top: 0.7rem;
  font-size: 2.2rem;
  text-indent: -0.5rem;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .detail__subttl {
    margin-top: 0;
    font-size: 25px;
  }
}
@media screen and (min-width: 769px) {
  .detail.--right .strategy-wrapper {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 769px) {
  .detail.--right .detail__image {
    transform: translateX(-5%);
  }
}
@media screen and (max-width: 768px) {
  .detail.--right .detail__num img {
    margin-left: auto;
  }
  .detail.--right .detail__ttl, .detail.--right .detail__subttl {
    text-align: right;
  }
  .detail.--right .detail__subttl {
    transform: translateX(0.5rem);
  }
}
.detail__lead {
  margin-top: 2rem;
  border-top: 1px solid #707070;
  padding-top: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .detail__lead {
    margin-top: 25px;
    padding-top: 25px;
    font-size: 24px;
  }
}
.detail__text {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 2.28;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .detail__text {
    font-size: 14px;
    margin-top: 20px;
  }
}
.detail__videos {
  margin-top: 50px;
  list-style: none;
  padding: 0;
}
.detail__videos-item {
  cursor: pointer;
}
.detail__videos-item a {
  transition: opacity 0.3s ease;
}
.detail__videos-item a:hover {
  opacity: 0.6;
}
.detail__videos-item img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .detail__videos {
    display: flex;
    justify-content: center;
    gap: 2%;
  }
  .detail__videos-item {
    width: 23.1%;
  }
}
@media screen and (max-width: 768px) {
  .detail .detail__videos-item + .detail__videos-item {
    margin-top: 20px;
  }
}

.modal__video {
  aspect-ratio: 16/9;
}
.modal__video video {
  max-width: 100%;
}
.modal__video iframe {
  width: 100%;
  height: 100%;
}

.remodal {
  background: none;
}

.remodal-close {
  left: auto;
  right: 0;
}
.remodal-close:before {
  color: #fff;
}
@media screen and (min-width: 769px) {
  .remodal-close:before {
    font-size: 40px;
  }
}

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

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

@media screen and (max-width: 1280px) {
  .u-hide_less_pc {
    display: none;
  }
}

@media screen and (min-width: 1281px) {
  .u-hide_more_pc {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .u-hide_less_spc {
    display: none;
  }
}

@media screen and (min-width: 1001px) {
  .u-hide_more_spc {
    display: none;
  }
}

@media screen and (max-width: 568px) {
  .u-hide_less_sp {
    display: none;
  }
}

@media screen and (min-width: 569px) {
  .u-hide_more_sp {
    display: none;
  }
}

@media screen and (max-width: 414px) {
  .u-hide_less_ssp {
    display: none;
  }
}

@media screen and (min-width: 415px) {
  .u-hide_more_ssp {
    display: none;
  }
}

@media screen and (max-width: 374px) {
  .u-hide_less_sssp {
    display: none;
  }
}

@media screen and (min-width: 375px) {
  .u-hide_more_sssp {
    display: none;
  }
}

.u-hide {
  display: none;
}

.u-link_sp {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .u-link_sp {
    pointer-events: inherit;
  }
}

.u-mt_10 {
  margin-top: 10px;
}

.u-mt_20 {
  margin-top: 20px;
}

.u-mt_30 {
  margin-top: 30px;
}

.u-mt_50 {
  margin-top: 50px;
}

.u-mt_100 {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .u-mt_20 {
    margin-top: 15px;
  }
  .u-mt_30 {
    margin-top: 20px;
  }
  .u-mt_50 {
    margin-top: 30px;
  }
  .u-mt_100 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 568px) {
  .u-mt_20 {
    margin-top: 15px;
  }
  .u-mt_50 {
    margin-top: 25px;
  }
}
.u-mb_10 {
  margin-bottom: 10px;
}

.u-mb_20 {
  margin-bottom: 20px;
}

.u-mb_30 {
  margin-bottom: 30px;
}

.u-mb_50 {
  margin-bottom: 50px;
}

.u-mb_100 {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .u-mb_20 {
    margin-bottom: 15px;
  }
  .u-mb_30 {
    margin-bottom: 20px;
  }
  .u-mb_50 {
    margin-bottom: 30px;
  }
  .u-mb_100 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 568px) {
  .u-mb_20 {
    margin-bottom: 15px;
  }
  .u-mb_50 {
    margin-bottom: 25px;
  }
}
.u-mr_05 {
  margin-right: 5px;
}

.u-mr_10 {
  margin-right: 10px;
}

.u-mr_15 {
  margin-right: 15px;
}

.u-mr_20 {
  margin-right: 20px;
}

.u-mr_30 {
  margin-right: 30px;
}

.u-ml_05 {
  margin-left: 5px;
}

.u-ml_10 {
  margin-left: 10px;
}

.u-ml_15 {
  margin-left: 15px;
}

.u-ml_20 {
  margin-left: 20px;
}

.u-ml_30 {
  margin-left: 30px;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-text-center {
  text-align: center;
}

.u-text-center_left {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .u-text-center_left {
    text-align: left;
  }
}

.u-text_center {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .u-text_center {
    text-align: center;
  }
}

.u-wth_100 {
  width: 100%;
  height: auto;
}
