@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..600&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");
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;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

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

th, td {
  vertical-align: middle;
}

input, select {
  vertical-align: middle;
  outline: none;
}

img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

html {
  height: 100%;
  overflow-y: scroll;
}

body {
  height: 100%;
  font-family: "Noto Serif JP", serif;
  text-align: left;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  background: #FFF;
  -webkit-text-size-adjust: 100%;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
}
input[type=radio] + .radio-label {
  display: inline-block;
  position: relative;
  margin-right: 1.5em;
  padding-left: 1.7em;
  cursor: pointer;
}
input[type=radio] + .radio-label::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background: #FFF;
  border-radius: 100%;
  border: 1px solid #999;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  text-align: center;
}
input[type=radio]:checked + .radio-label::before {
  background-color: #1D3766;
  box-shadow: inset 0 0 0 3px #FFF;
}

input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
input[type=checkbox] + .checkbox-label {
  display: inline-block;
  position: relative;
  margin-right: 1.5em;
  padding-left: 1.7em;
  cursor: pointer;
}
input[type=checkbox] + .checkbox-label::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background: #FFF;
  border-radius: 2px;
  border: 1px solid #999;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  text-align: center;
}
input[type=checkbox]:checked + .checkbox-label::before {
  background: #1D3766;
  border: 1px solid #1D3766;
}
input[type=checkbox]:checked + .checkbox-label::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 3px;
  width: 9px;
  height: 5px;
  border-left: 3px solid #FFF;
  border-bottom: 3px solid #FFF;
  transform: rotate(-45deg);
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 0;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=number],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 100%;
  line-height: 1.5;
  width: 100%;
  border: 1px solid #999;
  padding: 9px;
  box-sizing: border-box;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #333;
  border: 1px solid #999;
  padding: 9px 35px 9px 9px;
  box-sizing: border-box;
  background: url(../img/arrow_select.png) no-repeat 93% center;
  background-size: 12px 12px;
}

textarea,
iframe {
  display: block;
}

input::placeholder {
  color: #AAA;
}

input:-ms-input-placeholder {
  color: #AAA;
}

input::-ms-input-placeholder {
  color: #AAA;
}

a:link,
a:visited {
  color: #17459B;
  text-decoration: underline;
}

a:hover,
a:active {
  color: #17459B;
  text-decoration: none;
}

.l-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 380px;
  background: #000 url(../img/bg_caviar.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 200px;
  }
}
.l-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.l-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.l-wrapper::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../img/bg_caviar.jpg) no-repeat center center/cover;
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  .l-wrapper::before {
    background: url(../img/bg_caviar_smp.jpg) no-repeat center 104%/contain;
  }
}

.l-login {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l-login {
    height: 80%;
  }
}

.l-login-inner {
  width: 480px;
  padding: 60px;
  background: #FFF;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .l-login-inner {
    width: 330px;
    padding: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  }
}

.l-container-fluid {
  position: relative;
  padding: 80px 40px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-container-fluid {
    padding: 40px 20px;
  }
}

.l-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.l-container-narrow {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
}

.l-footer {
  padding: 30px 30px;
  background: #000;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 15px 15px;
  }
}

.c-btn-login {
  display: block;
  width: 100%;
  padding: 18px;
  font-size: 106.25%;
  line-height: 1.3;
  color: #FFF;
  font-weight: 500;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
  transition: 0.2s;
  background: #1D3766;
  border: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-btn-login {
    padding: 15px;
  }
}
.c-btn-login:hover {
  background: #17459B;
}

a.c-btn-logout {
  display: inline-block;
  width: 110px;
  padding: 9px;
  font-size: 93.75%;
  line-height: 1.3;
  color: #FFF;
  font-weight: 500;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
  border: 1.5px solid #FFF;
}
@media screen and (max-width: 768px) {
  a.c-btn-logout {
    width: 95px;
    padding: 6px;
    font-size: 87.5%;
  }
}

.c-btn-send {
  display: inline-block;
  width: 300px;
  padding: 20px;
  font-size: 112.5%;
  line-height: 1.3;
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
  transition: 0.2s;
  background: #1D3766;
  border: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-btn-send {
    width: 240px;
    padding: 16px;
    font-size: 100%;
  }
}
.c-btn-send:hover {
  background: #17459B;
}

.c-btn-return {
  display: inline-block;
  width: 150px;
  padding: 20px;
  font-size: 112.5%;
  line-height: 1.3;
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
  transition: 0.2s;
  background: #BBB;
  border: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-btn-return {
    width: 240px;
    padding: 16px;
    font-size: 100%;
  }
}
.c-btn-return:hover {
  background: #DDD;
}

.c-label-hissu {
  float: right;
  display: inline-block;
  margin-top: 2px;
  padding: 3px 7px;
  font-size: 72%;
  line-height: 1.5;
  color: #FFF;
  font-weight: normal;
  background: #C80000;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .c-label-hissu {
    float: none;
    padding: 2px 5px;
    font-size: 70%;
    margin: -4px 0 0 15px;
  }
}

.c-grid-product {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .c-grid-product {
    flex-direction: column-reverse;
  }
}
.c-grid-product__left {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .c-grid-product__left {
    width: 100%;
  }
}
.c-grid-product__right {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .c-grid-product__right {
    width: 100%;
    margin-bottom: 15px;
  }
}

.c-grid-button {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-grid-button {
    margin-top: 40px;
    display: block;
  }
}
.c-grid-button li {
  margin: 0 15px;
}
@media screen and (max-width: 768px) {
  .c-grid-button li {
    margin: 0 0 15px 0;
    text-align: center;
  }
  .c-grid-button li:last-child {
    margin-bottom: 0;
  }
}

.p-logo-login {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-logo-login {
    margin-bottom: 20px;
  }
}
.p-logo-login img {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .p-logo-login img {
    width: 130px;
  }
}
.p-logo-login span {
  display: block;
  margin-top: 18px;
  font-size: 156.25%;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-logo-login span {
    margin-top: 15px;
    font-size: 118.75%;
  }
}

.p-logo {
  position: absolute;
  top: 0;
  left: 0;
  padding: 50px 0 0 50px;
}
@media screen and (max-width: 768px) {
  .p-logo {
    padding: 15px 0 0 15px;
  }
}
.p-logo img {
  display: block;
  width: 125px;
  height: 125px;
}
@media screen and (max-width: 768px) {
  .p-logo img {
    width: 55px;
    height: 55px;
  }
}

.p-copyright {
  color: #FFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-copyright {
    font-size: 81.25%;
  }
}

.p-login {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .p-login {
    margin-bottom: 20px;
  }
}
.p-login dt {
  margin-bottom: 5px;
  font-size: 106.25%;
}
@media screen and (max-width: 768px) {
  .p-login dt {
    font-size: 100%;
  }
}

.p-btn-logout {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .p-btn-logout {
    bottom: 15px;
    right: 15px;
  }
}

.p-list-disc {
  padding-left: 1.5em;
}
.p-list-disc li {
  list-style: disc;
}
@media screen and (max-width: 768px) {
  .p-list-disc li {
    font-size: 93.75%;
  }
}
.p-list-disc li::marker {
  color: #C4973A;
}

.p-table-labeling {
  margin-top: 25px;
  width: 100%;
  line-height: 1.5;
  background: #FFF;
}
.p-table-labeling th {
  padding: 12px;
  border: 1px solid #CCC;
  background: #EEE;
  width: 130px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-table-labeling th {
    display: block;
    width: auto;
    padding: 8px 12px;
    text-align: left;
    margin-top: -1px;
  }
}
.p-table-labeling td {
  padding: 12px;
  border: 1px solid #CCC;
}
@media screen and (max-width: 768px) {
  .p-table-labeling td {
    display: block;
    margin-top: -1px;
    padding: 15px;
  }
}

.p-gallery-slider {
  position: relative;
  padding-bottom: 27px;
  display: none;
}
.p-gallery-slider.slick-initialized {
  display: block;
}
.p-gallery-slider .slick-list {
  position: relative;
  overflow: hidden;
}
.p-gallery-slider .slick-list li {
  float: left;
  outline: none;
}
.p-gallery-slider .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  font-size: 0;
  line-height: 0;
}
.p-gallery-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
  overflow: hidden;
}
.p-gallery-slider .slick-dots li button {
  background: #CCC;
  text-indent: 9999px;
  overflow: hidden;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  cursor: pointer;
  border: 0;
  padding: 0;
  outline: none;
}
.p-gallery-slider .slick-dots li:first-child:last-child {
  display: none;
}
.p-gallery-slider .slick-dots .slick-active button {
  background: #C4973A;
  cursor: default;
}

.p-table-form {
  width: 100%;
  border-top: 1px solid #DDD;
}
.p-table-form th {
  padding: 25px 30px;
  border-bottom: 1px solid #DDD;
  width: 320px;
  font-size: 106.25%;
  text-align: left;
  background: #F8F8F8;
}
@media screen and (max-width: 768px) {
  .p-table-form th {
    display: block;
    padding: 20px 0 10px 0;
    border-bottom: none;
    width: auto;
    background: none;
  }
}
.p-table-form td {
  padding: 25px 30px;
  border-bottom: 1px solid #DDD;
}
@media screen and (max-width: 768px) {
  .p-table-form td {
    display: block;
    padding: 0 0 20px 0;
  }
}
.p-table-form table {
  border-top: 1px solid #DDD;
  width: 100%;
}
.p-table-form table th {
  padding: 10px 15px;
  border-bottom: 1px solid #DDD;
  font-size: 100%;
  font-weight: normal;
  background: #F8F8F8;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-table-form table th {
    display: table-cell;
    padding: 8px 15px;
  }
}
.p-table-form table td {
  padding: 10px 15px;
  border-bottom: 1px solid #DDD;
  text-align: center;
  background: #EEE;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-table-form table td {
    display: table-cell;
    padding: 8px 15px;
  }
}
.p-table-form table td input {
  padding: 6px;
}

.p-error {
  margin-top: 8px;
  font-size: 93.75%;
  line-height: 1.5;
  color: #C80000;
  font-family: "Noto Sans JP", sans-serif;
}

.p-note {
  font-size: 93.75%;
  line-height: 1.6;
  color: #C4973A;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .p-note {
    font-size: 87.5%;
  }
}

.p-finish {
  padding: 60px;
  border: 1px solid #DDD;
  background: #F8F8F8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-finish {
    padding: 30px 20px;
  }
}
.p-finish dt {
  font-size: 150%;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-finish dt {
    font-size: 112.5%;
  }
}
.p-finish dd {
  margin-top: 20px;
  line-height: 1.7;
}
.p-finish dd:last-child {
  margin-top: 30px;
}

.p-title-header {
  z-index: 100;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-title-header {
    z-index: 1;
  }
}
.p-title-header__title {
  font-size: 187.5%;
  line-height: 1.3;
  color: #FFF;
  font-weight: normal;
  letter-spacing: 0.03em;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .p-title-header__title {
    font-size: 112.5%;
  }
}
.p-title-header__sub {
  margin-top: 18px;
  font-family: "Pinyon Script", cursive;
  font-size: 112.5%;
  line-height: 1.3;
  color: #C4973A;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .p-title-header__sub {
    margin-top: 8px;
    font-size: 75%;
  }
}

.p-title-center {
  margin-bottom: 80px;
  font-size: 187.5%;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p-title-center {
    margin-bottom: 40px;
    font-size: 137.5%;
  }
}

.p-title-product {
  margin-bottom: 50px;
  font-size: 162.5%;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p-title-product {
    margin-bottom: 40px;
    font-size: 125%;
  }
}

.p-title-set {
  margin-bottom: 25px;
  padding: 10px 15px;
  font-size: 112.5%;
  line-height: 1.5;
  font-weight: 500;
  color: #FFF;
  background: #1D3766;
}
@media screen and (max-width: 768px) {
  .p-title-set {
    padding: 10px 12px;
    font-size: 100%;
  }
}

.u-bgcolor-lightgray {
  background-color: #F5F5F5;
}

.u-color-red {
  color: #C80000;
}

input.u-input-login {
  padding: 5px 10px;
  font-size: 150%;
}

.u-spacer {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .u-spacer {
    margin-top: 30px;
  }
}

.u-arrow {
  position: relative;
  padding-left: 17px;
}
.u-arrow::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-top: 2.5px solid #1D3766;
  border-right: 2.5px solid #1D3766;
  transform: rotate(45deg);
}

.u-checkbox-checked {
  display: inline-block;
  position: relative;
  padding-left: 1.7em;
}
.u-checkbox-checked::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background: #1D3766;
  border-radius: 2px;
  border: 1px solid #1D3766;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  text-align: center;
}
.u-checkbox-checked::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 3px;
  width: 9px;
  height: 5px;
  border-left: 3px solid #FFF;
  border-bottom: 3px solid #FFF;
  transform: rotate(-45deg);
}

.u-float-l {
  float: left !important;
}

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

.u-txt-l {
  text-align: left !important;
}

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

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

.u-fs11 {
  font-size: 68.75% !important;
}

.u-fs12 {
  font-size: 75% !important;
}

.u-fs13 {
  font-size: 81.25% !important;
}

.u-fs14 {
  font-size: 87.5% !important;
}

.u-fs15 {
  font-size: 93.75% !important;
}

.u-fs16 {
  font-size: 100% !important;
}

.u-fs17 {
  font-size: 106.25% !important;
}

.u-fs18 {
  font-size: 112.5% !important;
}

.u-fs19 {
  font-size: 118.75% !important;
}

.u-fs20 {
  font-size: 125% !important;
}

.u-fs22 {
  font-size: 137.5% !important;
}

.u-fs24 {
  font-size: 150% !important;
}

.u-fs26 {
  font-size: 162.5% !important;
}

.u-fs28 {
  font-size: 175% !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-w5 {
  width: 5% !important;
}

.u-w10 {
  width: 10% !important;
}

.u-w15 {
  width: 15% !important;
}

.u-w20 {
  width: 20% !important;
}

.u-w25 {
  width: 25% !important;
}

.u-w30 {
  width: 30% !important;
}

.u-w35 {
  width: 35% !important;
}

.u-w40 {
  width: 40% !important;
}

.u-w45 {
  width: 45% !important;
}

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

.u-w55 {
  width: 55% !important;
}

.u-w60 {
  width: 60% !important;
}

.u-w65 {
  width: 65% !important;
}

.u-w70 {
  width: 70% !important;
}

.u-w75 {
  width: 75% !important;
}

.u-w80 {
  width: 80% !important;
}

.u-w85 {
  width: 85% !important;
}

.u-w90 {
  width: 90% !important;
}

.u-w95 {
  width: 95% !important;
}

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

.u-w5em {
  width: 5em !important;
}

.u-addr1 {
  width: 5em !important;
}

.u-addr2 {
  width: 6em !important;
}