@charset "UTF-8";
/*=========================================

| modules

=========================================*/
/*=========================================

| functions

=========================================*/
/*=========================================

| extends

=========================================*/
.company__inr:after {
  content: "";
  display: block;
  clear: both;
}

.c-common_btn, .c-common_btn--lv1, .c-common_btn--lv2, .c-common_btn--lv3 {
  display: block;
  position: relative;
}
.c-common_btn:after, .c-common_btn--lv1:after, .c-common_btn--lv2:after, .c-common_btn--lv3:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.2s ease 0s;
}
.c-common_btn:hover:after, .c-common_btn--lv1:hover:after, .c-common_btn--lv2:hover:after, .c-common_btn--lv3:hover:after {
  opacity: 0.3;
}

/*=========================================

| mixins

=========================================*/
/*=========================================

| animations

=========================================*/
/*=========================================

| Foundation

=========================================*/
/*=========================================

| variables

=========================================*/
/*----------------------------------------
| src
----------------------------------------*/
/*----------------------------------------
| colors
----------------------------------------*/
/*----------------------------------------
| breakpoint
----------------------------------------*/
/*----------------------------------------
| size
----------------------------------------*/
/*----------------------------------------
| z-index
----------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

html, body {
  font-size: 62.5%;
}

body {
  min-width: 1000px;
  width: 100%;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: normal;
  font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 769px) {
  body {
    min-width: 320px;
  }
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
  line-height: 1;
  max-width: 100%;
}

button {
  line-height: 1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.responsive_img {
  width: 100%;
}

/* ----------------------------------------------------------------------------------------------------

Super Form Reset

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  /* Browsers have different default form fonts */
  font-size: 1rem;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0;
}

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
  box-sizing: content-box;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  box-sizing: border-box;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  appearance: button;
  border: none;
}
input[type=submit]:-webkit-search-decoration,
input[type=button]:-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input[type=text],
input[type=button],
input[type=email],
input[type=submit],
textarea {
  border-radius: 0;
  appearance: none;
}

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px;
}

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Buttons
-----------------------------------------------*/
/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/* Selects
-----------------------------------------------*/
select {
  appearance: none;
}

select::-ms-expand {
  display: none;
}

select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}

/*=========================================

| layout

=========================================*/
/*=========================================

| layout component

=========================================*/
html, body {
  min-width: 320px;
  color: #0c0a44;
  background: #eef9ff;
}
@media screen and (min-width: 769px) {
  html, body {
    min-width: 1000px;
  }
}

body {
  padding-top: 13.6vw;
}
@media screen and (min-width: 769px) {
  body {
    padding-top: 50px;
  }
}

.l-inr, .l-header__inr, .l-inr--sp_wide, .l-inr--sp_narrow {
  width: 85.3333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l-inr, .l-header__inr, .l-inr--sp_wide, .l-inr--sp_narrow {
    width: 1000px;
  }
}
.l-inr--sp_narrow {
  width: 80vw;
}
@media screen and (min-width: 769px) {
  .l-inr--sp_narrow {
    width: 1000px;
  }
}
.l-inr--sp_wide {
  width: 91.2vw;
}
@media screen and (min-width: 769px) {
  .l-inr--sp_wide {
    width: 1000px;
  }
}

.l-section, .l-section--no_lead, .l-section--mabel {
  padding: 13.3333333333vw 0;
}
@media screen and (min-width: 769px) {
  .l-section, .l-section--no_lead, .l-section--mabel {
    padding: 107px 0 84px;
    position: relative;
  }
}
@media screen and (min-width: 769px) {
  .l-section:after, .l-section--no_lead:after, .l-section--mabel:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 54px 150px 0 150px;
    border-color: #eef9ff transparent transparent transparent;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }
}
.l-section--mabel {
  background: #c8eced;
}
@media screen and (min-width: 769px) {
  .l-section--mabel:after {
    border-color: #c8eced transparent transparent transparent;
  }
}
.l-section--no_lead:after {
  display: none;
}

/*=========================================

| header

=========================================*/
.l-header {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 13.6vw;
  padding: 3.2vw 0;
  box-sizing: border-box;
  background: #c8eced;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
@media screen and (min-width: 769px) {
  .l-header {
    min-height: auto;
    margin-bottom: 0;
    padding: 0;
  }
}
.l-header__inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .l-header__inr {
    padding: 0 20px 0 5px;
    box-sizing: border-box;
  }
}
.l-header__ttl {
  width: 120px;
}
.l-header__nav_wrapper {
  width: 100%;
  height: 90vh;
  overflow: scroll;
  position: absolute;
  top: calc(100% + 0.2666666667vw);
  left: 0;
  transform: translateY(-150%);
  transition: transform 0.5s ease 0s;
}
@media screen and (min-width: 769px) {
  .l-header__nav_wrapper {
    width: auto;
    height: auto;
    overflow: auto;
    position: static;
    transform: none;
  }
}
.l-header__nav_wrapper.is-show {
  transform: translateY(0);
}
@media screen and (min-width: 769px) {
  .l-header__nav_wrapper.is-show {
    transform: none;
  }
}
.l-header__nav_btn {
  width: 4.8vw;
  height: 4.8vw;
  position: relative;
}
.l-header__nav_btn span {
  display: block;
  width: 100%;
  height: 0.5333333333vw;
  border-radius: 0.2666666667vw;
  background: #0c0a44;
  opacity: 1;
  transition: opacity 0.2s ease 0s;
}
.l-header__nav_btn.is-active span {
  opacity: 0;
}

.l-header__nav_btn:before, .l-header__nav_btn:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.5333333333vw;
  border-radius: 0.2666666667vw;
  background: #0c0a44;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease 0s;
}
.l-header__nav_btn:before {
  top: 0;
}
.l-header__nav_btn.is-active:before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.l-header__nav_btn:after {
  bottom: 0;
}
.l-header__nav_btn.is-active:after {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

.l-header__nav {
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .l-header__nav {
    display: flex;
    justify-content: flex-start;
  }
}

.header_nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.2666666667vw;
}
@media screen and (min-width: 769px) {
  .header_nav {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
  }
}
.header_nav li {
  width: calc(50% - 0.1333333333vw);
}
.header_nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 19.4666666667vw;
  background: #c8eced;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .header_nav a {
    width: 110px;
    height: 50px;
    font-size: 1.6rem;
    transition: all 0.2s ease 0s;
  }
  .header_nav a:hover {
    background: #7ac143;
    color: #fff;
  }
}
.header_nav__tel, .header_nav__email {
  width: calc(50% - 0.1333333333vw);
}
@media screen and (min-width: 769px) {
  .header_nav__tel a, .header_nav__email a {
    display: flex;
    align-items: center;
    width: 190px;
    height: 100%;
  }
}
.header_nav__tel {
  float: left;
}
@media screen and (min-width: 769px) {
  .header_nav__tel {
    margin: 0 29px 0 12px;
    float: none;
  }
}
@media screen and (min-width: 769px) {
  .header_nav__tel a {
    width: 191px;
  }
}
.header_nav__email {
  float: right;
}
@media screen and (min-width: 769px) {
  .header_nav__email {
    float: none;
  }
}

.fixed_nav {
  width: 100%;
  margin-bottom: 0.2666666667vw;
}
@media screen and (min-width: 769px) {
  .fixed_nav {
    display: none;
    position: fixed;
    width: 100px;
    margin-bottom: 0;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
  }
}
.fixed_nav__itm {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 19.4666666667vw;
  font-size: 5.3333333333vw;
  background: #c8eced;
  color: #0c0a44;
}
@media screen and (min-width: 769px) {
  .fixed_nav__itm {
    display: block;
    height: auto;
    padding: 16px 0;
    background: #eef9ff;
    border: 1px solid #fff;
    box-sizing: border-box;
    border-radius: 8px 0 0 8px/8px 0 0 8px;
    box-shadow: -1px 3px 3px 0 rgba(0, 0, 0, 0.2);
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
    transition: all 0.2s ease 0s;
  }
}
@media screen and (min-width: 769px) {
  .fixed_nav__itm:hover {
    background: #7ac143;
    color: #fff;
  }
}
.fixed_nav__itm:not(:last-child) {
  margin-bottom: 0.2666666667vw;
}
@media screen and (min-width: 769px) {
  .fixed_nav__itm:not(:last-child) {
    margin-bottom: 12px;
  }
}

/*=========================================

| footer

=========================================*/
.l-footer {
  padding: 4vw 0 5.3333333333vw;
  background: #c8eced;
  font-size: 4.2666666667vw;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer {
    padding: 15px 0 20px;
    font-size: 1.6rem;
  }
}

/*=========================================

| object

=========================================*/
/*----------------------------------------
| component
----------------------------------------*/
/*=========================================

| button components

=========================================*/
.c-common_btn, .c-common_btn--lv1, .c-common_btn--lv2, .c-common_btn--lv3 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #7ac143;
  color: #fff;
  margin: 0 auto;
  box-shadow: 0px 0.8vw 1.2vw -0.4vw rgba(0, 0, 0, 0.2);
  border-radius: 2.1333333333vw;
}
@media screen and (min-width: 769px) {
  .c-common_btn, .c-common_btn--lv1, .c-common_btn--lv2, .c-common_btn--lv3 {
    box-shadow: 0px 6px 9px -3px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
  }
}
.c-common_btn--lv1, .c-common_btn--lv2, .c-common_btn--lv3 {
  width: 70.9333333333vw;
  height: 14.9333333333vw;
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 769px) {
  .c-common_btn--lv1 {
    width: 266px;
    height: 56px;
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 769px) {
  .c-common_btn--lv2 {
    width: 500px;
    height: 48px;
    font-size: 3rem;
  }
}
@media screen and (min-width: 769px) {
  .c-common_btn--lv3 {
    width: 250px;
    height: 48px;
    font-size: 3rem;
  }
}

/*=========================================

| icon components

=========================================*/
.icn {
  display: inline-block;
}

.icn-triangle-green {
  content: "";
  display: block;
  width: 13.3333333333vw;
  height: 9.3333333333vw;
  background: url("icn-triangle-green.526fa626.png");
  background-size: cover;
}
@media screen and (min-width: 769px) {
  .icn-triangle-green {
    width: 50px;
    height: 35px;
  }
}
.icn-triangle-green.is-reverse {
  background-image: url("icn-triangle-green-reverse.bab882e5.png");
}

/*=========================================

| text components

=========================================*/
/*=========================================

| section header

=========================================*/
.c-section_header {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 769px) {
  .c-section_header {
    margin-bottom: 70px;
  }
}
.c-section_header__ttl, .c-section_header__ttl--strong {
  font-size: 8vw;
  line-height: 1.6;
  text-align: center;
  font-weight: normal;
  position: relative;
  font-feature-settings: "palt";
}
@media screen and (min-width: 769px) {
  .c-section_header__ttl, .c-section_header__ttl--strong {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    font-size: 3rem;
    line-height: 1;
  }
}
.c-section_header__ttl:before, .c-section_header__ttl--strong:before, .c-section_header__ttl:after, .c-section_header__ttl--strong:after {
  content: "";
  display: inline-block;
  width: 18.6666666667vw;
  height: 4vw;
  background: url("deco-section_header-normal.dd02a269.png") left top no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 769px) {
  .c-section_header__ttl:before, .c-section_header__ttl--strong:before, .c-section_header__ttl:after, .c-section_header__ttl--strong:after {
    width: 140px;
    height: 30px;
    position: static;
  }
}
.c-section_header__ttl:before, .c-section_header__ttl--strong:before {
  transform: rotateY(180deg);
  left: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .c-section_header__ttl:before, .c-section_header__ttl--strong:before {
    margin-right: 5px;
  }
}
.c-section_header__ttl:after, .c-section_header__ttl--strong:after {
  right: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .c-section_header__ttl:after, .c-section_header__ttl--strong:after {
    margin-left: 5px;
  }
}
@media screen and (min-width: 769px) {
  .c-section_header__ttl--strong:before, .c-section_header__ttl--strong:after {
    background-image: url("deco-section_header-strong.7de25ff7.png");
  }
}

/*----------------------------------------
| pages
----------------------------------------*/
/*=========================================

| top

=========================================*/
.page-header {
  width: 100%;
  position: relative;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  .page-header {
    width: 1000px;
    margin: 0 auto 50px;
  }
}
.page-header__contact_btn {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
}
@media screen and (min-width: 769px) {
  .page-header__contact_btn {
    right: 20px;
    transform: none;
  }
}

.introduction {
  padding-top: 13.3333333333vw;
}
@media screen and (min-width: 769px) {
  .introduction {
    padding-top: 0;
  }
}
@media screen and (min-width: 769px) {
  .introduction__inr {
    padding: 70px calc((100% - 1000px) / 2) 120px;
    background: linear-gradient(to bottom, #eef9ff 0%, #fff 25%, #fff 75%, #eef9ff 100%);
  }
}

.message {
  padding-top: 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  .message {
    padding-top: 0;
  }
}
@media screen and (min-width: 769px) {
  .message__wrapper {
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  .message .president_portlait {
    overflow: hidden;
    width: 300px;
    margin-right: 50px;
    border-radius: 8px;
    float: left;
  }
}
.message .president_portlait img,
.message .president_portlait span {
  display: block;
}
@media screen and (min-width: 769px) {
  .message .president_portlait span {
    padding: 15px 0;
    background: #c8eced;
    font-size: 1.6rem;
    line-height: 1;
    text-align: center;
  }
}
.message .president_message {
  font-size: 4.2666666667vw;
  line-height: 1.59375;
  text-indent: 1em;
}
@media screen and (min-width: 769px) {
  .message .president_message {
    float: none;
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
.message .president_message:not(:last-child) {
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  .message .president_message:not(:last-child) {
    margin-bottom: 1em;
  }
}

@media screen and (min-width: 769px) {
  .business__list {
    display: flex;
    justify-content: space-between;
  }
}
.business__list:not(:last-child) {
  margin-bottom: 7.3333333333vw;
}
@media screen and (min-width: 769px) {
  .business__list:not(:last-child) {
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 769px) {
  .business_card {
    width: 300px;
  }
}
.business_card:not(:last-child) {
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  .business_card:not(:last-child) {
    margin-bottom: 0;
  }
}
.business_card__ttl {
  margin-bottom: 1.3333333333vw;
  padding: 2vw;
  background: #c8eced;
  font-size: 5.8666666667vw;
  line-height: 1;
  text-align: center;
  font-weight: normal;
  border-radius: 0 0 2.6666666667vw 2.6666666667vw/0 0 2.6666666667vw 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .business_card__ttl {
    margin-bottom: 4px;
    padding: 6px 0;
    font-size: 2.2rem;
    border-radius: 0 0 8px 8px/0 0 8px 8px;
  }
}
.business_card__txt {
  font-size: 4.2666666667vw;
  line-height: 1.59375;
}
@media screen and (min-width: 769px) {
  .business_card__txt {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}

@media screen and (min-width: 769px) {
  .advantage__list {
    display: flex;
    justify-content: space-between;
  }
}
.advantage__list:not(:last-child) {
  margin-bottom: 7.3333333333vw;
}
@media screen and (min-width: 769px) {
  .advantage__list:not(:last-child) {
    margin-bottom: 70px;
  }
}
.advantage_card {
  padding-top: 10.6666666667vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  .advantage_card {
    width: 300px;
    padding-top: 40px;
  }
}
.advantage_card:not(:last-child) {
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) {
  .advantage_card:not(:last-child) {
    margin-bottom: 0;
  }
}
.advantage_card__ttl {
  padding: 6.4vw 8vw;
  background: linear-gradient(to bottom, #2e2c84 0%, #0c0a44 100%);
  border-radius: 2.6666666667vw 2.6666666667vw 0 0/2.6666666667vw 2.6666666667vw 0 0;
  box-sizing: border-box;
  font-size: 7.2vw;
  line-height: 1.5925925926;
  text-align: center;
  color: #fff;
  font-weight: normal;
  font-feature-settings: "palt";
}
@media screen and (min-width: 769px) {
  .advantage_card__ttl {
    padding: 30px 20px;
    font-size: 2.7rem;
    line-height: 1.5925925926;
    border-radius: 8px 8px 0 0/8px 8px 0 0;
  }
}
.advantage_card__ttl:before {
  content: "";
  display: block;
  width: 21.3333333333vw;
  height: 21.3333333333vw;
  margin-left: -10.6666666667vw;
  background: linear-gradient(to bottom, #363492 0%, #2e2c84 50%, transparent 50%, transparent 100%);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
}
@media screen and (min-width: 769px) {
  .advantage_card__ttl:before {
    width: 80px;
    height: 80px;
    margin-left: -40px;
  }
}
.advantage_card__ttl:after {
  content: "";
  width: 21.3333333333vw;
  height: 21.3333333333vw;
  margin-left: -10.6666666667vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 50%;
}
@media screen and (min-width: 769px) {
  .advantage_card__ttl:after {
    width: 80px;
    height: 80px;
    margin-left: -40px;
  }
}
.advantage_card:nth-child(1) .advantage_card__ttl:after {
  background: url("txt-advantage_num-01.304269d1.png") center center no-repeat;
  background-size: cover;
}
.advantage_card:nth-child(2) .advantage_card__ttl:after {
  background: url("txt-advantage_num-02.7bb5b077.png") center center no-repeat;
  background-size: cover;
}
.advantage_card:nth-child(3) .advantage_card__ttl:after {
  background: url("txt-advantage_num-03.36e550cb.png") center center no-repeat;
  background-size: cover;
}
.advantage_card__txt {
  padding: 3.7333333333vw 8vw;
  background: #fff;
  font-size: 4.2666666667vw;
  line-height: 1.59375;
  border-radius: 0 0 2.6666666667vw 2.6666666667vw/0 0 2.6666666667vw 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .advantage_card__txt {
    padding: 10px 30px;
    background: #fff;
    font-size: 1.6rem;
    line-height: 1.625;
    border-radius: 0 0 8px 8px/0 0 8px 8px;
  }
}

@media screen and (min-width: 769px) {
  .step__list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
}
.step_cell {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .step_cell {
    display: flex;
    flex-direction: column;
    width: 226px;
    text-align: left;
  }
}
.step_cell__number {
  height: 10.5333333333vw;
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 769px) {
  .step_cell__number {
    width: 100%;
    height: 50px;
    margin-bottom: 0;
    text-align: center;
  }
}
.step_cell__number img {
  height: 100%;
}
@media screen and (min-width: 769px) {
  .step_cell__number img {
    transform: scale(0.5);
    transform-origin: center top;
  }
}
.step_cell__txt {
  font-size: 7.2vw;
  line-height: 1.3703703704;
}
@media screen and (min-width: 769px) {
  .step_cell__txt {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 10px 0;
    font-size: 2.7rem;
    line-height: 1.3703703704;
    text-align: center;
    border-top: 2px solid #c4e9ec;
    border-bottom: 2px solid #c4e9ec;
  }
}
.step_cell__attention {
  margin-top: 2.6666666667vw;
  color: #363493;
  font-size: 4.2666666667vw;
  line-height: 1.59375;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 769px) {
  .step_cell__attention {
    margin-top: 0;
    padding-left: 0;
    text-indent: 0;
    font-size: 1.6rem;
    line-height: 1.625;
    position: absolute;
    top: 100%;
  }
}
.step_cell:not(:last-child) {
  margin-bottom: 14.1333333333vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  .step_cell:not(:last-child) {
    margin-bottom: 0;
  }
}
.step_cell:not(:last-child):after {
  content: "";
  display: block;
  width: 60.4vw;
  height: 4.9333333333vw;
  background: url("deco-flow-sp.ce7c8f82.png") center top no-repeat;
  background-size: cover;
  position: absolute;
  top: calc(100% + 4.8vw);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .step_cell:not(:last-child):after {
    width: 20px;
    height: 133px;
    background-image: url("deco-flow-pc.6a242b7e.png");
    background-size: cover;
    top: calc(50% + 25px);
    left: calc(100% + 5px);
    transform: translateY(-50%);
  }
}

.faq_card {
  border-radius: 2.6666666667vw;
  box-sizing: border-box;
  background: #eef9ff;
  font-size: 5.8666666667vw;
  line-height: 1.5909090909;
  position: relative;
}
@media screen and (min-width: 769px) {
  .faq_card {
    border-radius: 10px;
    font-size: 2.2rem;
    line-height: 1.5909090909;
  }
}
.faq_card:not(:last-child) {
  margin-bottom: 5.8666666667vw;
}
@media screen and (min-width: 769px) {
  .faq_card:not(:last-child) {
    margin-bottom: 22px;
  }
}
@media screen and (min-width: 769px) {
  .faq_card:last-of-type + * {
    margin-top: 70px;
  }
}
@media screen and (min-width: 769px) {
  .faq_card__question, .faq_card__answer {
    overflow: hidden;
  }
}
.faq_card__question {
  padding: 8.6666666667vw 22.6666666667vw 3.3333333333vw 10.6666666667vw;
}
@media screen and (min-width: 769px) {
  .faq_card__question {
    padding: 50px 50px 50px 158px;
    position: relative;
  }
}
.faq_card:nth-child(1) .faq_card__question:before {
  content: "";
  display: block;
  width: 8.1333333333vw;
  height: 4.8vw;
  background: left top no-repeat;
  background-size: auto 100%;
  background-image: url("txt-q_num-01.53854df7.png");
  position: absolute;
  top: 3.2vw;
  left: 3.2vw;
}
@media screen and (min-width: 769px) {
  .faq_card:nth-child(1) .faq_card__question:before {
    width: 61px;
    height: 36px;
    top: 50%;
    left: 57px;
    transform: translateY(-50%);
  }
}

.faq_card:nth-child(2) .faq_card__question:before {
  content: "";
  display: block;
  width: 8.1333333333vw;
  height: 4.8vw;
  background: left top no-repeat;
  background-size: auto 100%;
  background-image: url("txt-q_num-02.f1587df1.png");
  position: absolute;
  top: 3.2vw;
  left: 3.2vw;
}
@media screen and (min-width: 769px) {
  .faq_card:nth-child(2) .faq_card__question:before {
    width: 61px;
    height: 36px;
    top: 50%;
    left: 57px;
    transform: translateY(-50%);
  }
}

.faq_card:nth-child(3) .faq_card__question:before {
  content: "";
  display: block;
  width: 8.1333333333vw;
  height: 4.8vw;
  background: left top no-repeat;
  background-size: auto 100%;
  background-image: url("txt-q_num-03.8a341fdf.png");
  position: absolute;
  top: 3.2vw;
  left: 3.2vw;
}
@media screen and (min-width: 769px) {
  .faq_card:nth-child(3) .faq_card__question:before {
    width: 61px;
    height: 36px;
    top: 50%;
    left: 57px;
    transform: translateY(-50%);
  }
}

.faq_card:nth-child(4) .faq_card__question:before {
  content: "";
  display: block;
  width: 8.1333333333vw;
  height: 4.8vw;
  background: left top no-repeat;
  background-size: auto 100%;
  background-image: url("txt-q_num-04.0fcc346d.png");
  position: absolute;
  top: 3.2vw;
  left: 3.2vw;
}
@media screen and (min-width: 769px) {
  .faq_card:nth-child(4) .faq_card__question:before {
    width: 61px;
    height: 36px;
    top: 50%;
    left: 57px;
    transform: translateY(-50%);
  }
}

.faq_card:nth-child(5) .faq_card__question:before {
  content: "";
  display: block;
  width: 8.1333333333vw;
  height: 4.8vw;
  background: left top no-repeat;
  background-size: auto 100%;
  background-image: url("txt-q_num-05.e82bd769.png");
  position: absolute;
  top: 3.2vw;
  left: 3.2vw;
}
@media screen and (min-width: 769px) {
  .faq_card:nth-child(5) .faq_card__question:before {
    width: 61px;
    height: 36px;
    top: 50%;
    left: 57px;
    transform: translateY(-50%);
  }
}

.faq_card__answer {
  display: none;
  margin: 0 2.9333333333vw 0;
  padding: 6.2666666667vw 7.7333333333vw 9.7333333333vw 7.3333333333vw;
  border-top: 0.2666666667vw solid #c8eced;
  position: relative;
}
@media screen and (min-width: 769px) {
  .faq_card__answer {
    margin: 0 58px;
    padding: 36px 0 50px 100px;
    border-width: 1px;
  }
}
.faq_card__answer:after {
  content: "";
  display: block;
  width: 5.0666666667vw;
  height: 3.8666666667vw;
  background: url("txt-answer.9acf81d7.png") left top no-repeat;
  background-size: cover;
  position: absolute;
  top: 3.7333333333vw;
  left: 0;
}
@media screen and (min-width: 769px) {
  .faq_card__answer:after {
    width: 38px;
    height: 29px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.faq_card .icn-triangle-green {
  position: absolute;
  top: 4.4vw;
  right: 4.4vw;
}
@media screen and (min-width: 769px) {
  .faq_card .icn-triangle-green {
    position: absolute;
    top: 50px;
    right: 50px;
    cursor: pointer;
  }
}

@media screen and (min-width: 769px) {
  .company__inr iframe {
    float: left;
  }
}
.company__map {
  position: relative;
  width: 100%;
  margin-bottom: 13.3333333333vw;
  padding-top: 75%;
}
@media screen and (min-width: 769px) {
  .company__map {
    width: 640px;
    height: 480px;
    margin-bottom: 0;
    padding-top: 0;
    float: left;
  }
}
.company__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.company_info {
  overflow: hidden;
  font-size: 4.2666666667vw;
  line-height: 1.59375;
}
@media screen and (min-width: 769px) {
  .company_info {
    width: 330px;
    float: left;
    margin-left: 30px;
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
.company_info dt {
  width: 26.6%;
  float: left;
  text-align: right;
  color: #363493;
}
@media screen and (min-width: 769px) {
  .company_info dt {
    width: 28.6%;
  }
}
.company_info dd {
  width: 73.4%;
  padding-left: 12.7%;
  float: left;
  text-align: left;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .company_info dd {
    width: 71.4%;
    padding-left: 31px;
  }
}
.company_info dd:not(:last-child) {
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  .company_info dd:not(:last-child) {
    margin-bottom: 25px;
  }
}

.contact__txt {
  margin-bottom: 13.3333333333vw;
  font-size: 5.8666666667vw;
  line-height: 1.5909090909;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contact__txt {
    margin-bottom: 30px;
    font-size: 2.2rem;
    line-height: 1.5909090909;
  }
}
@media screen and (min-width: 769px) {
  .contact_form {
    width: 500px;
    margin: 0 auto;
  }
}
.contact_form label:not(:last-child) {
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 769px) {
  .contact_form label:not(:last-child) {
    margin-bottom: 0;
  }
}
.contact_form label,
.contact_form input[type=text],
.contact_form input[type=tel],
.contact_form input[type=email],
.contact_form textarea {
  display: block;
  width: 100%;
  font-size: 4.2666666667vw;
  line-height: 1.8;
  color: #363493;
}
@media screen and (min-width: 769px) {
  .contact_form label,
.contact_form input[type=text],
.contact_form input[type=tel],
.contact_form input[type=email],
.contact_form textarea {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
@media screen and (min-width: 769px) {
  .contact_form label:last-child,
.contact_form input[type=text]:last-child,
.contact_form input[type=tel]:last-child,
.contact_form input[type=email]:last-child,
.contact_form textarea:last-child {
    margin-bottom: 55px;
  }
}
.contact_form label::placeholder,
.contact_form input[type=text]::placeholder,
.contact_form input[type=tel]::placeholder,
.contact_form input[type=email]::placeholder,
.contact_form textarea::placeholder {
  color: #363493;
}
@media screen and (min-width: 769px) {
  .contact_form label {
    margin-bottom: 10px;
  }
}
.contact_form input[type=text],
.contact_form input[type=tel],
.contact_form input[type=email] {
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) {
  .contact_form input[type=text],
.contact_form input[type=tel],
.contact_form input[type=email] {
    margin-bottom: 30px;
  }
}
.contact_form input[type=text],
.contact_form input[type=tel],
.contact_form input[type=email],
.contact_form textarea {
  padding: 0.5333333333vw 1.8666666667vw;
  background: #fff;
  border: 1px solid #c8eced;
  box-sizing: border-box;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .contact_form input[type=text],
.contact_form input[type=tel],
.contact_form input[type=email],
.contact_form textarea {
    padding: 4px 14px;
    border-radius: 8px;
    resize: none;
  }
}
.contact_form button {
  margin-top: 7.3333333333vw;
}
@media screen and (min-width: 769px) {
  .contact_form button {
    margin-top: 55px;
  }
}
.contact_form__success_message, .contact_form__failure_message {
  display: none;
  margin-top: 2.6666666667vw;
  font-size: 1.8666666667vw;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .contact_form__success_message, .contact_form__failure_message {
    margin-top: 20px;
    font-size: 1.4rem;
    text-align: center;
  }
}
.contact_form.is-success .contact_form__success_message {
  display: block;
}
.contact_form.is-failure .contact_form__failure_message {
  display: block;
}

/*=========================================

| Utility

=========================================*/
/* vertical-align - utility
--------------------------------------------------------- */
.u-va-t {
  vertical-align: top !important;
}

.u-va-m {
  vertical-align: middle !important;
}

.u-va-b {
  vertical-align: bottom !important;
}

/* border - utility
--------------------------------------------------------- */
/* border-radius */
.u-br-4 {
  border-radius: 4px;
}

.u-br-8 {
  border-radius: 8px;
}

.u-br-12 {
  border-radius: 12px;
}

.u-br-16 {
  border-radius: 16px;
}

/* border-none */
.u-br-0 {
  border: none;
}

.u-br-t-0 {
  border-top: none;
}

.u-br-r-0 {
  border-right: none;
}

.u-br-b-0 {
  border-bottom: none;
}

.u-br-l-0 {
  border-left: none;
}

/* clearfix - utility
--------------------------------------------------------- */
.u-cf {
  zoom: 1;
}
.u-cf:after {
  content: "";
  display: table;
  clear: both;
}

/* display - utility
--------------------------------------------------------- */
.u-d-tb {
  display: table !important;
}

.u-d-tbc {
  display: table-cell !important;
}

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

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

.u-d-n {
  display: none !important;
}

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

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

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

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

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

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

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

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

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

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

/* float - utility
--------------------------------------------------------- */
.u-fl-l {
  float: left !important;
}

.u-fl-r {
  float: right !important;
}

/* font-size - utility
--------------------------------------------------------- */
.u-fz-10 {
  font-size: 10px !important;
}

.u-fz-12 {
  font-size: 12px !important;
}

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

.u-fz-16 {
  font-size: 16px !important;
}

.u-fz-18 {
  font-size: 18px !important;
}

.u-fz-20 {
  font-size: 20px !important;
}

.u-fz-22 {
  font-size: 22px !important;
}

.u-fz-24 {
  font-size: 24px !important;
}

.u-fz-26 {
  font-size: 26px !important;
}

/* line-clamp - utility
--------------------------------------------------------- */
.u-lc {
  display: box;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

/* margin - utility
--------------------------------------------------------- */
/* auto margin */
.u-m-c {
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Top margin */
.u-mt-0 {
  margin-top: 0vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-0 {
    margin-top: 0px !important;
  }
}

.u-mt-5 {
  margin-top: 0.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-5 {
    margin-top: 5px !important;
  }
}

.u-mt-10 {
  margin-top: 1.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-10 {
    margin-top: 10px !important;
  }
}

.u-mt-15 {
  margin-top: 2vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-15 {
    margin-top: 15px !important;
  }
}

.u-mt-20 {
  margin-top: 2.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-20 {
    margin-top: 20px !important;
  }
}

.u-mt-25 {
  margin-top: 3.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-25 {
    margin-top: 25px !important;
  }
}

.u-mt-30 {
  margin-top: 4vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-30 {
    margin-top: 30px !important;
  }
}

.u-mt-35 {
  margin-top: 4.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-35 {
    margin-top: 35px !important;
  }
}

.u-mt-40 {
  margin-top: 5.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-40 {
    margin-top: 40px !important;
  }
}

.u-mt-45 {
  margin-top: 6vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-45 {
    margin-top: 45px !important;
  }
}

.u-mt-50 {
  margin-top: 6.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-50 {
    margin-top: 50px !important;
  }
}

.u-mt-55 {
  margin-top: 7.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-55 {
    margin-top: 55px !important;
  }
}

.u-mt-60 {
  margin-top: 8vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-60 {
    margin-top: 60px !important;
  }
}

.u-mt-65 {
  margin-top: 8.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-65 {
    margin-top: 65px !important;
  }
}

.u-mt-70 {
  margin-top: 9.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-70 {
    margin-top: 70px !important;
  }
}

.u-mt-75 {
  margin-top: 10vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-75 {
    margin-top: 75px !important;
  }
}

.u-mt-80 {
  margin-top: 10.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-80 {
    margin-top: 80px !important;
  }
}

.u-mt-85 {
  margin-top: 11.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-85 {
    margin-top: 85px !important;
  }
}

.u-mt-90 {
  margin-top: 12vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-90 {
    margin-top: 90px !important;
  }
}

.u-mt-95 {
  margin-top: 12.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-95 {
    margin-top: 95px !important;
  }
}

.u-mt-100 {
  margin-top: 13.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-100 {
    margin-top: 100px !important;
  }
}

.u-mt-105 {
  margin-top: 14vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-105 {
    margin-top: 105px !important;
  }
}

.u-mt-110 {
  margin-top: 14.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-110 {
    margin-top: 110px !important;
  }
}

.u-mt-115 {
  margin-top: 15.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-115 {
    margin-top: 115px !important;
  }
}

.u-mt-120 {
  margin-top: 16vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-120 {
    margin-top: 120px !important;
  }
}

.u-mt-125 {
  margin-top: 16.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-125 {
    margin-top: 125px !important;
  }
}

.u-mt-130 {
  margin-top: 17.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-130 {
    margin-top: 130px !important;
  }
}

.u-mt-135 {
  margin-top: 18vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-135 {
    margin-top: 135px !important;
  }
}

.u-mt-140 {
  margin-top: 18.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-140 {
    margin-top: 140px !important;
  }
}

.u-mt-145 {
  margin-top: 19.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-145 {
    margin-top: 145px !important;
  }
}

.u-mt-150 {
  margin-top: 20vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-150 {
    margin-top: 150px !important;
  }
}

.u-mt-155 {
  margin-top: 20.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-155 {
    margin-top: 155px !important;
  }
}

.u-mt-160 {
  margin-top: 21.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-160 {
    margin-top: 160px !important;
  }
}

.u-mt-165 {
  margin-top: 22vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-165 {
    margin-top: 165px !important;
  }
}

.u-mt-170 {
  margin-top: 22.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-170 {
    margin-top: 170px !important;
  }
}

.u-mt-175 {
  margin-top: 23.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-175 {
    margin-top: 175px !important;
  }
}

.u-mt-180 {
  margin-top: 24vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-180 {
    margin-top: 180px !important;
  }
}

.u-mt-185 {
  margin-top: 24.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-185 {
    margin-top: 185px !important;
  }
}

.u-mt-190 {
  margin-top: 25.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-190 {
    margin-top: 190px !important;
  }
}

.u-mt-195 {
  margin-top: 26vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-195 {
    margin-top: 195px !important;
  }
}

.u-mt-200 {
  margin-top: 26.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mt-200 {
    margin-top: 200px !important;
  }
}

/* Right margin */
.u-mr-0 {
  margin-right: 0vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-0 {
    margin-right: 0px !important;
  }
}

.u-mr-5 {
  margin-right: 0.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-5 {
    margin-right: 5px !important;
  }
}

.u-mr-10 {
  margin-right: 1.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-10 {
    margin-right: 10px !important;
  }
}

.u-mr-15 {
  margin-right: 2vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-15 {
    margin-right: 15px !important;
  }
}

.u-mr-20 {
  margin-right: 2.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-20 {
    margin-right: 20px !important;
  }
}

.u-mr-25 {
  margin-right: 3.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-25 {
    margin-right: 25px !important;
  }
}

.u-mr-30 {
  margin-right: 4vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-30 {
    margin-right: 30px !important;
  }
}

.u-mr-35 {
  margin-right: 4.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-35 {
    margin-right: 35px !important;
  }
}

.u-mr-40 {
  margin-right: 5.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-40 {
    margin-right: 40px !important;
  }
}

.u-mr-45 {
  margin-right: 6vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-45 {
    margin-right: 45px !important;
  }
}

.u-mr-50 {
  margin-right: 6.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-50 {
    margin-right: 50px !important;
  }
}

.u-mr-55 {
  margin-right: 7.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-55 {
    margin-right: 55px !important;
  }
}

.u-mr-60 {
  margin-right: 8vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-60 {
    margin-right: 60px !important;
  }
}

.u-mr-65 {
  margin-right: 8.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-65 {
    margin-right: 65px !important;
  }
}

.u-mr-70 {
  margin-right: 9.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-70 {
    margin-right: 70px !important;
  }
}

.u-mr-75 {
  margin-right: 10vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-75 {
    margin-right: 75px !important;
  }
}

.u-mr-80 {
  margin-right: 10.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-80 {
    margin-right: 80px !important;
  }
}

.u-mr-85 {
  margin-right: 11.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-85 {
    margin-right: 85px !important;
  }
}

.u-mr-90 {
  margin-right: 12vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-90 {
    margin-right: 90px !important;
  }
}

.u-mr-95 {
  margin-right: 12.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-95 {
    margin-right: 95px !important;
  }
}

.u-mr-100 {
  margin-right: 13.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-100 {
    margin-right: 100px !important;
  }
}

.u-mr-105 {
  margin-right: 14vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-105 {
    margin-right: 105px !important;
  }
}

.u-mr-110 {
  margin-right: 14.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-110 {
    margin-right: 110px !important;
  }
}

.u-mr-115 {
  margin-right: 15.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-115 {
    margin-right: 115px !important;
  }
}

.u-mr-120 {
  margin-right: 16vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-120 {
    margin-right: 120px !important;
  }
}

.u-mr-125 {
  margin-right: 16.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-125 {
    margin-right: 125px !important;
  }
}

.u-mr-130 {
  margin-right: 17.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-130 {
    margin-right: 130px !important;
  }
}

.u-mr-135 {
  margin-right: 18vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-135 {
    margin-right: 135px !important;
  }
}

.u-mr-140 {
  margin-right: 18.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-140 {
    margin-right: 140px !important;
  }
}

.u-mr-145 {
  margin-right: 19.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-145 {
    margin-right: 145px !important;
  }
}

.u-mr-150 {
  margin-right: 20vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-150 {
    margin-right: 150px !important;
  }
}

.u-mr-155 {
  margin-right: 20.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-155 {
    margin-right: 155px !important;
  }
}

.u-mr-160 {
  margin-right: 21.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-160 {
    margin-right: 160px !important;
  }
}

.u-mr-165 {
  margin-right: 22vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-165 {
    margin-right: 165px !important;
  }
}

.u-mr-170 {
  margin-right: 22.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-170 {
    margin-right: 170px !important;
  }
}

.u-mr-175 {
  margin-right: 23.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-175 {
    margin-right: 175px !important;
  }
}

.u-mr-180 {
  margin-right: 24vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-180 {
    margin-right: 180px !important;
  }
}

.u-mr-185 {
  margin-right: 24.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-185 {
    margin-right: 185px !important;
  }
}

.u-mr-190 {
  margin-right: 25.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-190 {
    margin-right: 190px !important;
  }
}

.u-mr-195 {
  margin-right: 26vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-195 {
    margin-right: 195px !important;
  }
}

.u-mr-200 {
  margin-right: 26.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mr-200 {
    margin-right: 200px !important;
  }
}

/* Bottom margin */
.u-mb-0 {
  margin-bottom: 0vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-0 {
    margin-bottom: 0px !important;
  }
}

.u-mb-5 {
  margin-bottom: 0.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-5 {
    margin-bottom: 5px !important;
  }
}

.u-mb-10 {
  margin-bottom: 1.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-10 {
    margin-bottom: 10px !important;
  }
}

.u-mb-15 {
  margin-bottom: 2vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-15 {
    margin-bottom: 15px !important;
  }
}

.u-mb-20 {
  margin-bottom: 2.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-20 {
    margin-bottom: 20px !important;
  }
}

.u-mb-25 {
  margin-bottom: 3.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-25 {
    margin-bottom: 25px !important;
  }
}

.u-mb-30 {
  margin-bottom: 4vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-30 {
    margin-bottom: 30px !important;
  }
}

.u-mb-35 {
  margin-bottom: 4.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-35 {
    margin-bottom: 35px !important;
  }
}

.u-mb-40 {
  margin-bottom: 5.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-40 {
    margin-bottom: 40px !important;
  }
}

.u-mb-45 {
  margin-bottom: 6vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-45 {
    margin-bottom: 45px !important;
  }
}

.u-mb-50 {
  margin-bottom: 6.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-50 {
    margin-bottom: 50px !important;
  }
}

.u-mb-55 {
  margin-bottom: 7.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-55 {
    margin-bottom: 55px !important;
  }
}

.u-mb-60 {
  margin-bottom: 8vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-60 {
    margin-bottom: 60px !important;
  }
}

.u-mb-65 {
  margin-bottom: 8.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-65 {
    margin-bottom: 65px !important;
  }
}

.u-mb-70 {
  margin-bottom: 9.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-70 {
    margin-bottom: 70px !important;
  }
}

.u-mb-75 {
  margin-bottom: 10vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-75 {
    margin-bottom: 75px !important;
  }
}

.u-mb-80 {
  margin-bottom: 10.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-80 {
    margin-bottom: 80px !important;
  }
}

.u-mb-85 {
  margin-bottom: 11.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-85 {
    margin-bottom: 85px !important;
  }
}

.u-mb-90 {
  margin-bottom: 12vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-90 {
    margin-bottom: 90px !important;
  }
}

.u-mb-95 {
  margin-bottom: 12.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-95 {
    margin-bottom: 95px !important;
  }
}

.u-mb-100 {
  margin-bottom: 13.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-100 {
    margin-bottom: 100px !important;
  }
}

.u-mb-105 {
  margin-bottom: 14vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-105 {
    margin-bottom: 105px !important;
  }
}

.u-mb-110 {
  margin-bottom: 14.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-110 {
    margin-bottom: 110px !important;
  }
}

.u-mb-115 {
  margin-bottom: 15.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-115 {
    margin-bottom: 115px !important;
  }
}

.u-mb-120 {
  margin-bottom: 16vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-120 {
    margin-bottom: 120px !important;
  }
}

.u-mb-125 {
  margin-bottom: 16.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-125 {
    margin-bottom: 125px !important;
  }
}

.u-mb-130 {
  margin-bottom: 17.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-130 {
    margin-bottom: 130px !important;
  }
}

.u-mb-135 {
  margin-bottom: 18vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-135 {
    margin-bottom: 135px !important;
  }
}

.u-mb-140 {
  margin-bottom: 18.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-140 {
    margin-bottom: 140px !important;
  }
}

.u-mb-145 {
  margin-bottom: 19.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-145 {
    margin-bottom: 145px !important;
  }
}

.u-mb-150 {
  margin-bottom: 20vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-150 {
    margin-bottom: 150px !important;
  }
}

.u-mb-155 {
  margin-bottom: 20.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-155 {
    margin-bottom: 155px !important;
  }
}

.u-mb-160 {
  margin-bottom: 21.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-160 {
    margin-bottom: 160px !important;
  }
}

.u-mb-165 {
  margin-bottom: 22vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-165 {
    margin-bottom: 165px !important;
  }
}

.u-mb-170 {
  margin-bottom: 22.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-170 {
    margin-bottom: 170px !important;
  }
}

.u-mb-175 {
  margin-bottom: 23.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-175 {
    margin-bottom: 175px !important;
  }
}

.u-mb-180 {
  margin-bottom: 24vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-180 {
    margin-bottom: 180px !important;
  }
}

.u-mb-185 {
  margin-bottom: 24.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-185 {
    margin-bottom: 185px !important;
  }
}

.u-mb-190 {
  margin-bottom: 25.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-190 {
    margin-bottom: 190px !important;
  }
}

.u-mb-195 {
  margin-bottom: 26vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-195 {
    margin-bottom: 195px !important;
  }
}

.u-mb-200 {
  margin-bottom: 26.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-mb-200 {
    margin-bottom: 200px !important;
  }
}

/* Left margin */
.u-ml-0 {
  margin-left: 0vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-0 {
    margin-left: 0px !important;
  }
}

.u-ml-5 {
  margin-left: 0.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-5 {
    margin-left: 5px !important;
  }
}

.u-ml-10 {
  margin-left: 1.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-10 {
    margin-left: 10px !important;
  }
}

.u-ml-15 {
  margin-left: 2vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-15 {
    margin-left: 15px !important;
  }
}

.u-ml-20 {
  margin-left: 2.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-20 {
    margin-left: 20px !important;
  }
}

.u-ml-25 {
  margin-left: 3.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-25 {
    margin-left: 25px !important;
  }
}

.u-ml-30 {
  margin-left: 4vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-30 {
    margin-left: 30px !important;
  }
}

.u-ml-35 {
  margin-left: 4.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-35 {
    margin-left: 35px !important;
  }
}

.u-ml-40 {
  margin-left: 5.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-40 {
    margin-left: 40px !important;
  }
}

.u-ml-45 {
  margin-left: 6vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-45 {
    margin-left: 45px !important;
  }
}

.u-ml-50 {
  margin-left: 6.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-50 {
    margin-left: 50px !important;
  }
}

.u-ml-55 {
  margin-left: 7.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-55 {
    margin-left: 55px !important;
  }
}

.u-ml-60 {
  margin-left: 8vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-60 {
    margin-left: 60px !important;
  }
}

.u-ml-65 {
  margin-left: 8.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-65 {
    margin-left: 65px !important;
  }
}

.u-ml-70 {
  margin-left: 9.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-70 {
    margin-left: 70px !important;
  }
}

.u-ml-75 {
  margin-left: 10vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-75 {
    margin-left: 75px !important;
  }
}

.u-ml-80 {
  margin-left: 10.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-80 {
    margin-left: 80px !important;
  }
}

.u-ml-85 {
  margin-left: 11.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-85 {
    margin-left: 85px !important;
  }
}

.u-ml-90 {
  margin-left: 12vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-90 {
    margin-left: 90px !important;
  }
}

.u-ml-95 {
  margin-left: 12.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-95 {
    margin-left: 95px !important;
  }
}

.u-ml-100 {
  margin-left: 13.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-100 {
    margin-left: 100px !important;
  }
}

.u-ml-105 {
  margin-left: 14vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-105 {
    margin-left: 105px !important;
  }
}

.u-ml-110 {
  margin-left: 14.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-110 {
    margin-left: 110px !important;
  }
}

.u-ml-115 {
  margin-left: 15.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-115 {
    margin-left: 115px !important;
  }
}

.u-ml-120 {
  margin-left: 16vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-120 {
    margin-left: 120px !important;
  }
}

.u-ml-125 {
  margin-left: 16.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-125 {
    margin-left: 125px !important;
  }
}

.u-ml-130 {
  margin-left: 17.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-130 {
    margin-left: 130px !important;
  }
}

.u-ml-135 {
  margin-left: 18vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-135 {
    margin-left: 135px !important;
  }
}

.u-ml-140 {
  margin-left: 18.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-140 {
    margin-left: 140px !important;
  }
}

.u-ml-145 {
  margin-left: 19.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-145 {
    margin-left: 145px !important;
  }
}

.u-ml-150 {
  margin-left: 20vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-150 {
    margin-left: 150px !important;
  }
}

.u-ml-155 {
  margin-left: 20.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-155 {
    margin-left: 155px !important;
  }
}

.u-ml-160 {
  margin-left: 21.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-160 {
    margin-left: 160px !important;
  }
}

.u-ml-165 {
  margin-left: 22vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-165 {
    margin-left: 165px !important;
  }
}

.u-ml-170 {
  margin-left: 22.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-170 {
    margin-left: 170px !important;
  }
}

.u-ml-175 {
  margin-left: 23.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-175 {
    margin-left: 175px !important;
  }
}

.u-ml-180 {
  margin-left: 24vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-180 {
    margin-left: 180px !important;
  }
}

.u-ml-185 {
  margin-left: 24.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-185 {
    margin-left: 185px !important;
  }
}

.u-ml-190 {
  margin-left: 25.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-190 {
    margin-left: 190px !important;
  }
}

.u-ml-195 {
  margin-left: 26vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-195 {
    margin-left: 195px !important;
  }
}

.u-ml-200 {
  margin-left: 26.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-ml-200 {
    margin-left: 200px !important;
  }
}

/* misc - utility
--------------------------------------------------------- */
.u-ws-nowrap {
  white-space: nowrap;
}

.u-mx-img {
  max-width: 100%;
}

.u-tx-inside {
  text-indent: -1em;
  margin-left: 1em;
}

/* padding - utility
--------------------------------------------------------- */
/* Top padding */
.u-pt-0 {
  padding-top: 0vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-0 {
    padding-top: 0px !important;
  }
}

.u-pt-5 {
  padding-top: 0.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-5 {
    padding-top: 5px !important;
  }
}

.u-pt-10 {
  padding-top: 1.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-10 {
    padding-top: 10px !important;
  }
}

.u-pt-15 {
  padding-top: 2vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-15 {
    padding-top: 15px !important;
  }
}

.u-pt-20 {
  padding-top: 2.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-20 {
    padding-top: 20px !important;
  }
}

.u-pt-25 {
  padding-top: 3.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-25 {
    padding-top: 25px !important;
  }
}

.u-pt-30 {
  padding-top: 4vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-30 {
    padding-top: 30px !important;
  }
}

.u-pt-35 {
  padding-top: 4.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-35 {
    padding-top: 35px !important;
  }
}

.u-pt-40 {
  padding-top: 5.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-40 {
    padding-top: 40px !important;
  }
}

.u-pt-45 {
  padding-top: 6vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-45 {
    padding-top: 45px !important;
  }
}

.u-pt-50 {
  padding-top: 6.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-50 {
    padding-top: 50px !important;
  }
}

.u-pt-55 {
  padding-top: 7.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-55 {
    padding-top: 55px !important;
  }
}

.u-pt-60 {
  padding-top: 8vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-60 {
    padding-top: 60px !important;
  }
}

.u-pt-65 {
  padding-top: 8.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-65 {
    padding-top: 65px !important;
  }
}

.u-pt-70 {
  padding-top: 9.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-70 {
    padding-top: 70px !important;
  }
}

.u-pt-75 {
  padding-top: 10vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-75 {
    padding-top: 75px !important;
  }
}

.u-pt-80 {
  padding-top: 10.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-80 {
    padding-top: 80px !important;
  }
}

.u-pt-85 {
  padding-top: 11.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-85 {
    padding-top: 85px !important;
  }
}

.u-pt-90 {
  padding-top: 12vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-90 {
    padding-top: 90px !important;
  }
}

.u-pt-95 {
  padding-top: 12.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-95 {
    padding-top: 95px !important;
  }
}

.u-pt-100 {
  padding-top: 13.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-100 {
    padding-top: 100px !important;
  }
}

.u-pt-105 {
  padding-top: 14vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-105 {
    padding-top: 105px !important;
  }
}

.u-pt-110 {
  padding-top: 14.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-110 {
    padding-top: 110px !important;
  }
}

.u-pt-115 {
  padding-top: 15.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-115 {
    padding-top: 115px !important;
  }
}

.u-pt-120 {
  padding-top: 16vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-120 {
    padding-top: 120px !important;
  }
}

.u-pt-125 {
  padding-top: 16.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-125 {
    padding-top: 125px !important;
  }
}

.u-pt-130 {
  padding-top: 17.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-130 {
    padding-top: 130px !important;
  }
}

.u-pt-135 {
  padding-top: 18vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-135 {
    padding-top: 135px !important;
  }
}

.u-pt-140 {
  padding-top: 18.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-140 {
    padding-top: 140px !important;
  }
}

.u-pt-145 {
  padding-top: 19.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-145 {
    padding-top: 145px !important;
  }
}

.u-pt-150 {
  padding-top: 20vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-150 {
    padding-top: 150px !important;
  }
}

.u-pt-155 {
  padding-top: 20.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-155 {
    padding-top: 155px !important;
  }
}

.u-pt-160 {
  padding-top: 21.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-160 {
    padding-top: 160px !important;
  }
}

.u-pt-165 {
  padding-top: 22vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-165 {
    padding-top: 165px !important;
  }
}

.u-pt-170 {
  padding-top: 22.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-170 {
    padding-top: 170px !important;
  }
}

.u-pt-175 {
  padding-top: 23.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-175 {
    padding-top: 175px !important;
  }
}

.u-pt-180 {
  padding-top: 24vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-180 {
    padding-top: 180px !important;
  }
}

.u-pt-185 {
  padding-top: 24.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-185 {
    padding-top: 185px !important;
  }
}

.u-pt-190 {
  padding-top: 25.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-190 {
    padding-top: 190px !important;
  }
}

.u-pt-195 {
  padding-top: 26vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-195 {
    padding-top: 195px !important;
  }
}

.u-pt-200 {
  padding-top: 26.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pt-200 {
    padding-top: 200px !important;
  }
}

/* Right padding */
.u-pr-0 {
  padding-right: 0vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-0 {
    padding-right: 0px !important;
  }
}

.u-pr-5 {
  padding-right: 0.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-5 {
    padding-right: 5px !important;
  }
}

.u-pr-10 {
  padding-right: 1.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-10 {
    padding-right: 10px !important;
  }
}

.u-pr-15 {
  padding-right: 2vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-15 {
    padding-right: 15px !important;
  }
}

.u-pr-20 {
  padding-right: 2.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-20 {
    padding-right: 20px !important;
  }
}

.u-pr-25 {
  padding-right: 3.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-25 {
    padding-right: 25px !important;
  }
}

.u-pr-30 {
  padding-right: 4vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-30 {
    padding-right: 30px !important;
  }
}

.u-pr-35 {
  padding-right: 4.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-35 {
    padding-right: 35px !important;
  }
}

.u-pr-40 {
  padding-right: 5.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-40 {
    padding-right: 40px !important;
  }
}

.u-pr-45 {
  padding-right: 6vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-45 {
    padding-right: 45px !important;
  }
}

.u-pr-50 {
  padding-right: 6.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-50 {
    padding-right: 50px !important;
  }
}

.u-pr-55 {
  padding-right: 7.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-55 {
    padding-right: 55px !important;
  }
}

.u-pr-60 {
  padding-right: 8vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-60 {
    padding-right: 60px !important;
  }
}

.u-pr-65 {
  padding-right: 8.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-65 {
    padding-right: 65px !important;
  }
}

.u-pr-70 {
  padding-right: 9.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-70 {
    padding-right: 70px !important;
  }
}

.u-pr-75 {
  padding-right: 10vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-75 {
    padding-right: 75px !important;
  }
}

.u-pr-80 {
  padding-right: 10.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-80 {
    padding-right: 80px !important;
  }
}

.u-pr-85 {
  padding-right: 11.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-85 {
    padding-right: 85px !important;
  }
}

.u-pr-90 {
  padding-right: 12vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-90 {
    padding-right: 90px !important;
  }
}

.u-pr-95 {
  padding-right: 12.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-95 {
    padding-right: 95px !important;
  }
}

.u-pr-100 {
  padding-right: 13.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-100 {
    padding-right: 100px !important;
  }
}

.u-pr-105 {
  padding-right: 14vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-105 {
    padding-right: 105px !important;
  }
}

.u-pr-110 {
  padding-right: 14.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-110 {
    padding-right: 110px !important;
  }
}

.u-pr-115 {
  padding-right: 15.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-115 {
    padding-right: 115px !important;
  }
}

.u-pr-120 {
  padding-right: 16vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-120 {
    padding-right: 120px !important;
  }
}

.u-pr-125 {
  padding-right: 16.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-125 {
    padding-right: 125px !important;
  }
}

.u-pr-130 {
  padding-right: 17.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-130 {
    padding-right: 130px !important;
  }
}

.u-pr-135 {
  padding-right: 18vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-135 {
    padding-right: 135px !important;
  }
}

.u-pr-140 {
  padding-right: 18.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-140 {
    padding-right: 140px !important;
  }
}

.u-pr-145 {
  padding-right: 19.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-145 {
    padding-right: 145px !important;
  }
}

.u-pr-150 {
  padding-right: 20vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-150 {
    padding-right: 150px !important;
  }
}

.u-pr-155 {
  padding-right: 20.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-155 {
    padding-right: 155px !important;
  }
}

.u-pr-160 {
  padding-right: 21.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-160 {
    padding-right: 160px !important;
  }
}

.u-pr-165 {
  padding-right: 22vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-165 {
    padding-right: 165px !important;
  }
}

.u-pr-170 {
  padding-right: 22.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-170 {
    padding-right: 170px !important;
  }
}

.u-pr-175 {
  padding-right: 23.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-175 {
    padding-right: 175px !important;
  }
}

.u-pr-180 {
  padding-right: 24vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-180 {
    padding-right: 180px !important;
  }
}

.u-pr-185 {
  padding-right: 24.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-185 {
    padding-right: 185px !important;
  }
}

.u-pr-190 {
  padding-right: 25.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-190 {
    padding-right: 190px !important;
  }
}

.u-pr-195 {
  padding-right: 26vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-195 {
    padding-right: 195px !important;
  }
}

.u-pr-200 {
  padding-right: 26.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pr-200 {
    padding-right: 200px !important;
  }
}

/* Bottom padding */
.u-pb-0 {
  padding-bottom: 0vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-0 {
    padding-bottom: 0px !important;
  }
}

.u-pb-5 {
  padding-bottom: 0.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-5 {
    padding-bottom: 5px !important;
  }
}

.u-pb-10 {
  padding-bottom: 1.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-10 {
    padding-bottom: 10px !important;
  }
}

.u-pb-15 {
  padding-bottom: 2vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-15 {
    padding-bottom: 15px !important;
  }
}

.u-pb-20 {
  padding-bottom: 2.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-20 {
    padding-bottom: 20px !important;
  }
}

.u-pb-25 {
  padding-bottom: 3.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-25 {
    padding-bottom: 25px !important;
  }
}

.u-pb-30 {
  padding-bottom: 4vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-30 {
    padding-bottom: 30px !important;
  }
}

.u-pb-35 {
  padding-bottom: 4.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-35 {
    padding-bottom: 35px !important;
  }
}

.u-pb-40 {
  padding-bottom: 5.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-40 {
    padding-bottom: 40px !important;
  }
}

.u-pb-45 {
  padding-bottom: 6vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-45 {
    padding-bottom: 45px !important;
  }
}

.u-pb-50 {
  padding-bottom: 6.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-50 {
    padding-bottom: 50px !important;
  }
}

.u-pb-55 {
  padding-bottom: 7.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-55 {
    padding-bottom: 55px !important;
  }
}

.u-pb-60 {
  padding-bottom: 8vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-60 {
    padding-bottom: 60px !important;
  }
}

.u-pb-65 {
  padding-bottom: 8.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-65 {
    padding-bottom: 65px !important;
  }
}

.u-pb-70 {
  padding-bottom: 9.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-70 {
    padding-bottom: 70px !important;
  }
}

.u-pb-75 {
  padding-bottom: 10vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-75 {
    padding-bottom: 75px !important;
  }
}

.u-pb-80 {
  padding-bottom: 10.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-80 {
    padding-bottom: 80px !important;
  }
}

.u-pb-85 {
  padding-bottom: 11.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-85 {
    padding-bottom: 85px !important;
  }
}

.u-pb-90 {
  padding-bottom: 12vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-90 {
    padding-bottom: 90px !important;
  }
}

.u-pb-95 {
  padding-bottom: 12.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-95 {
    padding-bottom: 95px !important;
  }
}

.u-pb-100 {
  padding-bottom: 13.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-100 {
    padding-bottom: 100px !important;
  }
}

.u-pb-105 {
  padding-bottom: 14vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-105 {
    padding-bottom: 105px !important;
  }
}

.u-pb-110 {
  padding-bottom: 14.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-110 {
    padding-bottom: 110px !important;
  }
}

.u-pb-115 {
  padding-bottom: 15.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-115 {
    padding-bottom: 115px !important;
  }
}

.u-pb-120 {
  padding-bottom: 16vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-120 {
    padding-bottom: 120px !important;
  }
}

.u-pb-125 {
  padding-bottom: 16.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-125 {
    padding-bottom: 125px !important;
  }
}

.u-pb-130 {
  padding-bottom: 17.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-130 {
    padding-bottom: 130px !important;
  }
}

.u-pb-135 {
  padding-bottom: 18vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-135 {
    padding-bottom: 135px !important;
  }
}

.u-pb-140 {
  padding-bottom: 18.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-140 {
    padding-bottom: 140px !important;
  }
}

.u-pb-145 {
  padding-bottom: 19.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-145 {
    padding-bottom: 145px !important;
  }
}

.u-pb-150 {
  padding-bottom: 20vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-150 {
    padding-bottom: 150px !important;
  }
}

.u-pb-155 {
  padding-bottom: 20.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-155 {
    padding-bottom: 155px !important;
  }
}

.u-pb-160 {
  padding-bottom: 21.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-160 {
    padding-bottom: 160px !important;
  }
}

.u-pb-165 {
  padding-bottom: 22vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-165 {
    padding-bottom: 165px !important;
  }
}

.u-pb-170 {
  padding-bottom: 22.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-170 {
    padding-bottom: 170px !important;
  }
}

.u-pb-175 {
  padding-bottom: 23.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-175 {
    padding-bottom: 175px !important;
  }
}

.u-pb-180 {
  padding-bottom: 24vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-180 {
    padding-bottom: 180px !important;
  }
}

.u-pb-185 {
  padding-bottom: 24.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-185 {
    padding-bottom: 185px !important;
  }
}

.u-pb-190 {
  padding-bottom: 25.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-190 {
    padding-bottom: 190px !important;
  }
}

.u-pb-195 {
  padding-bottom: 26vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-195 {
    padding-bottom: 195px !important;
  }
}

.u-pb-200 {
  padding-bottom: 26.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pb-200 {
    padding-bottom: 200px !important;
  }
}

/* Left padding */
.u-pl-0 {
  padding-left: 0vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-0 {
    padding-left: 0px !important;
  }
}

.u-pl-5 {
  padding-left: 0.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-5 {
    padding-left: 5px !important;
  }
}

.u-pl-10 {
  padding-left: 1.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-10 {
    padding-left: 10px !important;
  }
}

.u-pl-15 {
  padding-left: 2vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-15 {
    padding-left: 15px !important;
  }
}

.u-pl-20 {
  padding-left: 2.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-20 {
    padding-left: 20px !important;
  }
}

.u-pl-25 {
  padding-left: 3.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-25 {
    padding-left: 25px !important;
  }
}

.u-pl-30 {
  padding-left: 4vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-30 {
    padding-left: 30px !important;
  }
}

.u-pl-35 {
  padding-left: 4.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-35 {
    padding-left: 35px !important;
  }
}

.u-pl-40 {
  padding-left: 5.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-40 {
    padding-left: 40px !important;
  }
}

.u-pl-45 {
  padding-left: 6vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-45 {
    padding-left: 45px !important;
  }
}

.u-pl-50 {
  padding-left: 6.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-50 {
    padding-left: 50px !important;
  }
}

.u-pl-55 {
  padding-left: 7.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-55 {
    padding-left: 55px !important;
  }
}

.u-pl-60 {
  padding-left: 8vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-60 {
    padding-left: 60px !important;
  }
}

.u-pl-65 {
  padding-left: 8.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-65 {
    padding-left: 65px !important;
  }
}

.u-pl-70 {
  padding-left: 9.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-70 {
    padding-left: 70px !important;
  }
}

.u-pl-75 {
  padding-left: 10vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-75 {
    padding-left: 75px !important;
  }
}

.u-pl-80 {
  padding-left: 10.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-80 {
    padding-left: 80px !important;
  }
}

.u-pl-85 {
  padding-left: 11.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-85 {
    padding-left: 85px !important;
  }
}

.u-pl-90 {
  padding-left: 12vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-90 {
    padding-left: 90px !important;
  }
}

.u-pl-95 {
  padding-left: 12.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-95 {
    padding-left: 95px !important;
  }
}

.u-pl-100 {
  padding-left: 13.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-100 {
    padding-left: 100px !important;
  }
}

.u-pl-105 {
  padding-left: 14vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-105 {
    padding-left: 105px !important;
  }
}

.u-pl-110 {
  padding-left: 14.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-110 {
    padding-left: 110px !important;
  }
}

.u-pl-115 {
  padding-left: 15.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-115 {
    padding-left: 115px !important;
  }
}

.u-pl-120 {
  padding-left: 16vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-120 {
    padding-left: 120px !important;
  }
}

.u-pl-125 {
  padding-left: 16.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-125 {
    padding-left: 125px !important;
  }
}

.u-pl-130 {
  padding-left: 17.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-130 {
    padding-left: 130px !important;
  }
}

.u-pl-135 {
  padding-left: 18vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-135 {
    padding-left: 135px !important;
  }
}

.u-pl-140 {
  padding-left: 18.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-140 {
    padding-left: 140px !important;
  }
}

.u-pl-145 {
  padding-left: 19.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-145 {
    padding-left: 145px !important;
  }
}

.u-pl-150 {
  padding-left: 20vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-150 {
    padding-left: 150px !important;
  }
}

.u-pl-155 {
  padding-left: 20.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-155 {
    padding-left: 155px !important;
  }
}

.u-pl-160 {
  padding-left: 21.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-160 {
    padding-left: 160px !important;
  }
}

.u-pl-165 {
  padding-left: 22vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-165 {
    padding-left: 165px !important;
  }
}

.u-pl-170 {
  padding-left: 22.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-170 {
    padding-left: 170px !important;
  }
}

.u-pl-175 {
  padding-left: 23.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-175 {
    padding-left: 175px !important;
  }
}

.u-pl-180 {
  padding-left: 24vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-180 {
    padding-left: 180px !important;
  }
}

.u-pl-185 {
  padding-left: 24.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-185 {
    padding-left: 185px !important;
  }
}

.u-pl-190 {
  padding-left: 25.3333333333vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-190 {
    padding-left: 190px !important;
  }
}

.u-pl-195 {
  padding-left: 26vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-195 {
    padding-left: 195px !important;
  }
}

.u-pl-200 {
  padding-left: 26.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .u-pl-200 {
    padding-left: 200px !important;
  }
}

/* position - utility
--------------------------------------------------------- */
.u-pos-a {
  position: absolute !important;
}

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

/* text-align - utility
--------------------------------------------------------- */
.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

/* text-decoration - utility
--------------------------------------------------------- */
.u-fw-n {
  font-weight: normal !important;
}

.u-fw-b {
  font-weight: bold !important;
}

.u-td-u {
  text-decoration: underline !important;
}

/* text-truncate - utility
--------------------------------------------------------- */
.u-tt {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  /* for IE 8/9 */
}

/* width - utility
--------------------------------------------------------- */
.u-w-auto {
  width: auto !important;
}

.u-w-full {
  width: 100% !important;
}

.u-w-half {
  width: 50% !important;
}