@charset "UTF-8";
/*! * ress.css • v1.2.2 * MIT License * github.com/filipelinhares/ress */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

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

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden], template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

b, strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, select {
  text-transform: none;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

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

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio, canvas, progress, video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }

  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

html {
  font-size: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

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

ol,
ul {
  list-style: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

em {
  font-style: normal;
}

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

body {
  height: 100%;
  background-color: #ffffff;
  color: #383838;
  font-size: 2rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.8rem;
  }
}

a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #f93099;
  text-decoration: none;
}
a:hover {
  color: #f93099;
  text-decoration: none;
}

@-webkit-keyframes fade_in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) translate(300px, -800px);
            transform: scale(0) translate(300px, -800px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
  }
}

@keyframes fade_in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) translate(300px, -800px);
            transform: scale(0) translate(300px, -800px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
  }
}
@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}
@keyframes swing {
  0% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}
.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 65px;
  padding-left: 15px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 45px;
  }
}
.l-header img {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header a:hover img {
  opacity: 0.75;
}

.l-header__logo_1 {
  width: 122px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-header__logo_1 {
    width: 84px;
  }
}

.l-footer {
  width: 100%;
}
.l-footer small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 150px;
  color: #383838;
  font-size: 1.3rem;
  letter-spacing: 0.8px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer small {
    height: 100px;
    font-size: 1.1rem;
  }
}

.l-footer__back_to_top {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  width: 30px;
  height: 30px;
  margin: auto;
  border-top: 2px solid #383838;
  border-left: 2px solid #383838;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-footer__back_to_top:hover {
  -webkit-transform: rotate(45deg) scale(1.2);
      -ms-transform: rotate(45deg) scale(1.2);
          transform: rotate(45deg) scale(1.2);
}

a.l-footer__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 70px;
  margin: auto;
  margin-bottom: 80px;
  border: 2px solid #fa59ad;
  color: #fa59ad;
  font-size: 2.5rem;
  font-weight: 500;
  border-radius: 35px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  a.l-footer__btn {
    width: calc(100% - 10% - 10%);
    height: 56px;
    margin-bottom: 50px;
    font-size: 1.8rem;
  }
}
a.l-footer__btn:hover {
  background-color: #fa59ad;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
a.l-footer__btn:hover::before {
  border-color: #ffffff;
}
a.l-footer__btn::before {
  display: block;
  position: absolute;
  right: 20px;
  width: 18px;
  height: 18px;
  border: 2px solid #fa59ad;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  content: "";
}
@media screen and (max-width: 767px) {
  a.l-footer__btn::before {
    width: 15px;
    height: 15px;
  }
}

.hero {
  width: 100%;
  height: 540px;
  margin-bottom: 40px;
  text-align: center;
  background: #fb6eb7 url(../img/hero_img.png) center top/auto scroll no-repeat;
}
.hero > h1, .hero > div {
  width: 0;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .hero {
    height: auto;
    margin-bottom: 25px;
    padding-top: 77.3333%;
    background: #ffffff url(../img/sp_hero_img.png) center top/contain scroll no-repeat;
  }
}

.outline {
  width: 1050px;
  margin: auto;
  margin-bottom: 40px;
  padding: 15px 0;
  text-align: center;
  background-color: #d1effb;
  border-radius: 5px;
  font-size: 2.1rem;
  line-height: 1.6;
  letter-spacing: -0.2px;
}
@media screen and (max-width: 767px) {
  .outline {
    width: calc(100% - 7%);
    margin: auto;
    margin-bottom: 25px;
    padding: 10px;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: left;
  }
}
.outline em {
  color: #f93099;
}

.bnr {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .bnr {
    width: 100%;
    margin-bottom: 25px;
    padding: 0 3.5%;
  }
}
.bnr a {
  display: inline-block;
}
.bnr a:hover {
  -webkit-transform: scale(0.96);
      -ms-transform: scale(0.96);
          transform: scale(0.96);
}

.co {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  width: 1270px;
  margin: auto;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .co {
    width: 100%;
    margin-bottom: 25px;
    padding: 0 3.5%;
  }
}

.co__li {
  width: calc(1270px / 7);
  height: 90px;
}
@media screen and (max-width: 767px) {
  .co__li {
    width: calc(100% / 4);
    height: 60px;
  }
}
.co__li a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px 25px;
}
@media screen and (max-width: 767px) {
  .co__li a {
    padding: 10px;
  }
}
.co__li a:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

@-moz-document url-prefix() {
  .co {
    width: 1267px;
  }
  @media screen and (max-width: 767px) {
    .co {
      width: 100%;
    }
  }

  .co__li {
    width: 181px;
  }
  @media screen and (max-width: 767px) {
    .co__li {
      width: calc(100% / 4);
    }
  }
}
.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1270px;
  margin: auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .list {
    width: 100%;
    margin-bottom: 50px;
    padding: 0 3.5%;
  }
}
.list::before, .list::after {
  display: block;
  width: 300px;
  content: "";
}
@media screen and (max-width: 767px) {
  .list::before, .list::after {
    display: none;
  }
}
.list::before {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.list__li {
  width: 300px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .list__li {
    width: 48.5%;
    margin-bottom: 20px;
  }
}

.card__a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  width: 100%;
  height: 100%;
  padding: 13px;
  border: 7px solid #fb6eb7;
  color: #383838;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .card__a {
    padding: 6px;
    border-width: 4px;
    font-size: 1.2rem;
  }
}
.card__a:hover {
  -webkit-transform: scale(0.985);
      -ms-transform: scale(0.985);
          transform: scale(0.985);
  color: #383838;
  border-color: #37bf7b;
}

.card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .card__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
}

.card__co {
  width: 100%;
  height: 30px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .card__co {
    margin: 0;
    width: 100%;
    height: 25px;
    margin-bottom: 6px;
    text-align: center;
  }
}

.card__video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .card__video {
    width: 100%;
  }
}

.card__aa {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 140px;
  height: 30px;
  background-color: #f20000;
  color: #ffffff;
  font-size: 2rem;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .card__aa {
    width: 100%;
    height: auto;
    padding: 6px 0 8px;
    border-radius: 2px;
    font-size: 1.7rem;
  }
}
.card__aa:hover {
  border-color: #37bf7b;
  color: #ffffff;
}
.card__aa img {
  width: 18px;
  margin-right: 5px;
}

.card__pict {
  display: block;
  margin-bottom: 10px;
  border: 1px solid #d3d3d3;
}

.card__coupon {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 0;
  text-align: center;
  background-color: #ffe400;
  color: #111111;
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .card__coupon {
    font-size: 1.7rem;
    padding: 10px 0;
  }
}

.card__call {
  display: block;
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .card__call {
    font-size: 1.5rem;
  }
}

.card__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2px;
}

.card__label_text {
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .card__label_text {
    font-size: 1.2rem;
  }
}

.card__label_emphasis {
  padding: 6px 12px;
  background-color: #f20000;
  color: #ffffff;
  font-size: 1.8rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .card__label_emphasis {
    padding: 3px 5px;
    font-size: 1.1rem;
  }
}

.card__primary {
  display: block;
  text-align: right;
}

.card__primary_price {
  display: block;
  margin-bottom: 8px;
  color: #f20000;
  font-size: 3rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .card__primary_price {
    font-size: 2.5rem;
    margin-bottom: 5px;
  }
}
.card__primary_price em {
  font-size: 5.8rem;
  letter-spacing: -1px;
}
@media screen and (max-width: 767px) {
  .card__primary_price em {
    font-size: 3.5rem;
  }
}
.card__primary_price em span {
  font-size: 0.7em;
}

.card__reference {
  display: block;
  font-size: 2rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .card__reference {
    font-size: 1.2rem;
  }
}
.card__reference em {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .card__reference em {
    font-size: 2rem;
  }
}
.card__reference em span {
  font-size: 0.8em;
}

.card__secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 8px;
  background: url(../img/dots.svg) left top/auto scroll repeat-x;
}
@media screen and (max-width: 767px) {
  .card__secondary {
    margin-top: 8px;
    margin-bottom: 8px;
    padding-top: 7px;
    background-size: 5px;
  }
}

.card__secondary_text {
  font-size: 1.7rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .card__secondary_text {
    font-size: 1.2rem;
  }
}

.card__secondary_price {
  display: block;
  color: #f20000;
  font-size: 2.5rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .card__secondary_price {
    font-size: 1.6rem;
  }
}
.card__secondary_price em {
  font-size: 3.9rem;
  letter-spacing: -1px;
}
@media screen and (max-width: 767px) {
  .card__secondary_price em {
    font-size: 2.3rem;
  }
}
.card__secondary_price em span {
  font-size: 0.7em;
}
.card__secondary_price em i {
  font-style: normal;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .card__secondary_price em i {
    font-size: 1.8rem;
  }
}

.card__pr {
  display: block;
  margin-top: 10px;
  padding: 10px;
  background-color: #e1f4fd;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .card__pr {
    padding: 8px;
    border-radius: 2px;
  }
}

.card__pr_h {
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fa44a3;
  width: 45px;
  height: 45px;
  margin-right: 10px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .card__pr_h {
    width: 30px;
    height: 30px;
    margin-right: 5px;
    font-size: 1.2rem;
  }
}

.card__pr_text {
  display: block;
  color: #383838;
  font-size: 1.5rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .card__pr_text {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

.bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    margin-bottom: 50px;
    padding: 0 3.5%;
  }
}

.bottom__item {
  margin: 0 25px;
}
@media screen and (max-width: 767px) {
  .bottom__item {
    margin: 0;
    margin-bottom: 20px;
  }
}
.bottom__item a {
  display: block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.bottom__item a:hover {
  -webkit-transform: scale(0.97);
      -ms-transform: scale(0.97);
          transform: scale(0.97);
}

/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.85);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-close {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9994;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 5px solid #f8f8f8 !important;
  position: fixed;
  right: 15px;
  top: 15px;
  -webkit-appearance: none;
  cursor: pointer;
  text-align: center;
  padding: 0;
  color: #f8f8f8;
  font-style: normal;
  font-size: 50px;
  font-family: "Roboto", sans-serif;
  line-height: 50px;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #f8f8f8;
  font-style: normal;
  font-size: 50px;
  font-family: "Roboto", sans-serif;
  line-height: 50px;
  opacity: 0.75;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 1100px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

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

@media screen and (max-width: 767px) {
  .u-d-n-mq {
    display: none !important;
  }
}
.u-d-b {
  display: block !important;
}

.u-d-b-mq {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-d-b-mq {
    display: block !important;
  }
}

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

.u-d-ib-mq {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-d-ib-mq {
    display: inline-block !important;
  }
}

.u-m-a {
  margin: auto !important;
}

.u-m-0 {
  margin: 0 !important;
}

.u-m-0_a {
  margin: 0 auto !important;
}

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

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

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

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

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

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

.u-ta-j {
  text-align: justify !important;
}