@charset "UTF-8";
/*--------------- reset ---------------*/
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;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

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

ul, li {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

del {
  text-decoration: line-through;
}

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

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, button, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent none;
  box-sizing: border-box;
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  vertical-align: middle;
}

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

input[type=submit], input[type=checkbox], input[type=radio], input[type=button], button, select {
  cursor: pointer;
}

/*--------------- base ---------------*/
html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic New", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Osaka", "Arial", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: #333;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  word-wrap: normal;
  overflow-wrap: normal;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/*--------------- block（layout） ---------------*/
.block {
  position: relative;
  padding-block: 7rem;
  background-color: #FFF5EA;
}

@media screen and (min-width: 768px) {
  .block {
    padding-block: 10rem;
  }
}
/*--------------- container（layout） ---------------*/
.container {
  position: relative;
  padding-inline: 7.4666666667vw;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .container {
    padding-inline: 6%;
  }
  .container--sm {
    max-width: calc(1000px + 12%);
  }
  .container--md {
    max-width: calc(1200px + 12%);
  }
  .container--lg {
    max-width: calc(1400px + 12%);
  }
}
/*--------------- button（component） ---------------*/
.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  background-color: #30b364;
  border: 1px solid #30b364;
  border-radius: 50rem;
  /* &--fixed {
     display: inline-block;
     padding: 2rem 1.2rem;
     font-size: $rem16;
     background-color: $primary;
     writing-mode: vertical-rl;
     border-radius: 16px 0 0 16px;
     white-space: nowrap;
     border: 1px solid $white;
     &::after {
       content: none;
     }
   }*/
}
.btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  aspect-ratio: 1;
  background-image: url("../img/img_arrow_right_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.btn--normal {
  width: 24.2rem;
  height: 4.8rem;
  font-size: 1.6rem;
}
.btn--header {
  font-size: 1.8rem;
  width: 24rem;
  height: 5.2rem;
}
.btn--header::after {
  right: 1.4rem;
  width: 1rem;
}
.btn--submit {
  width: 80%;
  height: 4.8rem;
  font-size: 1.6rem;
}
.btn--prev {
  background-color: #999;
  border: 1px solid #999;
  width: 80%;
  height: 4.8rem;
  font-size: 1.6rem;
}
.btn--prev::after {
  right: inherit;
  left: 1.6rem;
  background-image: url("../img/img_arrow_left_white.svg");
}

.is-disagree {
  background-color: #C4C4C4;
  border: 1px solid #C4C4C4;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .btn {
    transition: 0.2s;
  }
  .btn::after {
    transition: 0.2s;
  }
  .btn:hover {
    border: 1px solid rgb(37.2158590308, 138.7841409692, 77.5330396476);
    background-color: rgb(37.2158590308, 138.7841409692, 77.5330396476);
  }
  .btn:hover::after {
    transform: translateY(-50%) translateX(0.2rem);
  }
  .btn--normal {
    width: 24.2rem;
    height: 5.2rem;
    font-size: 1.8rem;
  }
  .btn--header {
    font-size: 1.8rem;
    width: 24rem;
    height: 5.2rem;
  }
  .btn--fixed {
    width: 4.8rem;
    height: 16rem;
    font-size: 1.6rem;
    background-color: #30b364;
    writing-mode: vertical-rl;
    border-radius: 16px 0 0 16px;
    border: 1px solid #fff;
  }
  .btn--fixed::after {
    content: none;
  }
  .btn--fixed span {
    display: inline-block;
    margin-bottom: 0.6rem;
    padding: 0.4rem 0.6rem;
    color: #30b364;
    font-size: 1.1rem;
    background-color: #fff;
    writing-mode: horizontal-tb;
    border-radius: 50rem;
  }
  .btn--submit {
    width: 24.2rem;
    height: 5.2rem;
    font-size: 2rem;
  }
  .btn--prev {
    width: 24.2rem;
    height: 5.2rem;
    font-size: 2rem;
    transition: 0.2s;
  }
  .btn--prev:hover {
    border: 1px solid rgb(76.5, 76.5, 76.5);
    background-color: rgb(76.5, 76.5, 76.5);
  }
  .btn--prev:hover::after {
    transform: translateY(-50%) translateX(-0.2rem);
  }
}
@media screen and (min-width: 992px) {
  .btn--header {
    font-size: 1.4rem;
    width: 16rem;
    height: 3.6rem;
  }
}
/*--------------- title（component） ---------------*/
.block__title {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.025em;
}
.block__title--en {
  margin-bottom: 0.2rem;
  font-size: clamp(4.8rem, 3vw, 5.6rem);
  color: #30b364;
  font-weight: 500;
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
}

/*--------------- header（object） ---------------*/
.header {
  display: flex;
  align-items: center;
}
.header__logo {
  flex-shrink: 0;
  position: fixed;
  top: 2rem;
  left: 2rem;
  width: 25%;
  z-index: 1011;
}
.header__trigger {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -1px;
  right: -1px;
  width: 5.6rem;
  aspect-ratio: 1/1;
  background-color: #30b364;
  border-bottom-left-radius: 20px;
  z-index: 1011;
  border: 1px solid #fff;
}
.header__trigger .span-wrap {
  position: relative;
  width: 2.8rem;
  height: 2.4rem;
}
.header__trigger span {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 50rem;
  transition: 0.3s;
}
.header__trigger span:nth-child(1) {
  top: 0;
}
.header__trigger span:nth-child(2) {
  top: calc(50% - 1px);
  opacity: 1;
}
.header__trigger span:nth-child(3) {
  bottom: -1px;
}
.header__trigger.is-trigger span:nth-child(1) {
  transform: translateX(0.1rem) translateY(1rem) rotate(45deg);
}
.header__trigger.is-trigger span:nth-child(2) {
  opacity: 0;
}
.header__trigger.is-trigger span:nth-child(3) {
  transform: translateX(0) translateY(-1.2rem) rotate(-45deg);
}
.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 12rem 2rem 4rem;
  background-color: #fff;
  transition: 0.3s;
  transform: translateX(100vw);
  z-index: 1010;
  opacity: 0;
}
.header__nav.is-open {
  opacity: 1;
  transform: translateX(0);
}
.header__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
  text-align: center;
}
.header__nav-item a {
  font-size: 2rem;
  color: #333;
  font-weight: 700;
}
.header__nav-btn {
  margin-top: 6rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .header__logo {
    width: 10rem;
  }
  .header__nav-item a {
    transition: 0.2s;
  }
  .header__nav-item a:hover {
    color: #30b364;
  }
}
@media screen and (min-width: 992px) {
  .header {
    position: fixed;
    top: 4rem;
    left: 0;
    width: 100%;
    z-index: 1010;
  }
  .header__inner {
    margin-left: auto;
    padding-inline: 6%;
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 8rem;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    border-radius: 5rem 0 0 5rem;
  }
  .header__logo {
    position: relative;
    top: 0;
    left: 2%;
    width: 14.8rem;
  }
  .header__trigger {
    display: none;
  }
  .header__nav {
    position: relative;
    display: flex;
    align-items: center;
    top: inherit;
    left: inherit;
    width: fit-content;
    height: fit-content;
    padding: 0;
    background-color: transparent;
    z-index: 1010;
    transform: inherit;
    opacity: 1;
  }
  .header__nav-list {
    gap: 4.8rem;
    flex-direction: row;
  }
  .header__na-item a {
    font-size: 1.5rem;
  }
  .header__nav-btn {
    margin-top: 0;
    margin-left: 4rem;
  }
}
/*--------------- footer（object） ---------------*/
.footer {
  padding-inline: 7.4666666667vw;
  background-color: #30b364;
}
.footer .copyright {
  width: 100%;
  padding-block: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  border-top: 1px solid #fff;
}
.footer .copyright a {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .footer .copyright {
    font-size: 1.2rem;
  }
}
/*--------------- problem-list（object） ---------------*/
.problem__title {
  margin-bottom: 3.2rem;
  font-size: clamp(2.8rem, 3vw, 3.6rem);
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.problem__title span {
  display: inline-block;
}
.problem__list {
  margin-inline: auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.problem__item {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
}
.problem__item::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 2rem;
  aspect-ratio: 1;
  margin-right: 1.2rem;
  background-image: url("../img/ico_exclamation_mark.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(0.5rem);
}

@media screen and (min-width: 992px) {
  .problem__title {
    margin-bottom: 4rem;
  }
  .problem__item::before {
    transform: translateY(0.4rem);
  }
}
/*--------------- service-list（object） ---------------*/
.service__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.service__item {
  width: 100%;
  padding: 1.2rem 2.4rem 4rem;
  background-color: #fff;
  border-radius: 20px;
}
.service__title {
  margin-bottom: 1.2rem;
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
}
.service__title span {
  display: inline-block;
}
.service__desc {
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 500;
  text-align: justify;
}
.service__image {
  display: block;
  margin-inline: auto;
  width: 50%;
  max-width: 400px;
  aspect-ratio: 1/1;
}
.service__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .service__list {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .service__item {
    width: calc((100% - 4rem) / 2);
    border-radius: 28px;
  }
}
@media screen and (min-width: 992px) {
  .service__list {
    gap: 2.4rem;
  }
  .service__item {
    width: calc((100% - 2.4rem) / 2);
    padding: 1.2rem 2rem 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .service__list {
    gap: 2.4rem;
  }
  .service__item {
    width: calc((100% - 7.2rem) / 4);
  }
}
/*--------------- works-list（object） ---------------*/
.works {
  overflow: hidden;
}
.works__list {
  position: relative;
  display: flex;
  white-space: nowrap;
}
.works__item {
  flex-shrink: 0;
  margin-inline: 0.8rem;
  width: 24rem;
  text-align: center;
}
.works__image {
  width: 100%;
  aspect-ratio: 76/47;
}
.works__company-name {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .works__item {
    margin-inline: 0;
    width: 50rem;
  }
}
/*--------------- voice-list（object） ---------------*/
.voice__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.voice__item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.voice__icon {
  flex-shrink: 0;
  width: 4.8rem;
  aspect-ratio: 1/1;
  border-radius: 50rem;
  border: 1px solid #30b364;
}
.voice__balloon {
  position: relative;
  width: 100%;
  padding: 1.6rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  background-color: #30b364;
  border-radius: 8px;
}
.voice__balloon::before {
  content: "";
  display: block;
  position: absolute;
  top: 2rem;
  left: -0.6rem;
  width: 0.8rem;
  height: 1rem;
  clip-path: polygon(0% 50%, 0.8rem 0%, 0.8rem 1rem);
  background-color: #30b364;
}

@media screen and (min-width: 768px) {
  .voice__list {
    gap: 4em;
  }
  .voice__item {
    gap: 2.8rem;
  }
  .voice__icon {
    width: 6.8rem;
  }
  .voice__name {
    font-size: 1.3rem;
  }
  .voice__balloon {
    padding: 2rem 2.8rem;
    font-size: 1.7rem;
  }
  .voice__balloon::before {
    top: 2.8rem;
    left: -0.8rem;
    width: 1rem;
    height: 1.2rem;
    clip-path: polygon(0% 50%, 1rem 0%, 1rem 1.2rem);
  }
}
/*--------------- price-table（object） ---------------*/
.price-table {
  margin-bottom: 8rem;
}
.price-table__title {
  margin-bottom: 2.4rem;
  color: #30b364;
  font-size: clamp(2.4rem, 3vw, 2.8rem);
  font-weight: 700;
  text-align: center;
}
.price-table__list {
  border: 1px solid #30b364;
  border-radius: 10px;
  overflow: hidden;
}
.price-table__item {
  display: flex;
}
.price-table__item:last-child .price-table__option-name, .price-table__item:last-child .price-table__desc {
  border-bottom: none;
}
.price-table__option-name {
  width: 35%;
  padding: 2.4rem 2rem;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 700;
  background-color: #30b364;
  border-bottom: 1px solid #fff;
  text-align: center;
}
.price-table__desc {
  width: 65%;
  padding: 2.4rem 2rem;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  background-color: #fff;
  border-bottom: 1px solid #30b364;
}
.price-table__desc ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.price-table__desc-note {
  margin-top: 2rem;
  font-size: 1.3rem;
}
.price-table__note {
  margin-top: -4rem;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .price-table__title {
    margin-bottom: 4rem;
  }
  .price-table__list {
    border-radius: 28px;
  }
  .price-table__option-name {
    width: 25%;
    padding: 2.4rem 4rem;
    color: #fff;
    font-size: 1.8rem;
  }
  .price-table__desc {
    width: 75%;
    padding: 2.4rem 4rem;
    font-size: 1.8rem;
  }
  .price-table__desc-note {
    font-size: 1.4rem;
  }
  .price-table__note {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .price-table {
    max-width: 1000px;
    margin-inline: auto;
  }
}
/*--------------- faq-list（object） ---------------*/
.faq__list {
  padding: 4rem 2rem;
  background-color: #fff;
  border-radius: 10px;
}
.faq__item {
  position: relative;
  padding-bottom: 2.8rem;
  margin-bottom: 2.8rem;
  width: 100%;
  line-height: 1.8;
  border-bottom: 1px solid #30b364;
}
.faq__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.faq__question, .faq__answer {
  position: relative;
  padding-left: 2.8rem;
  font-size: 1.5rem;
  text-align: justify;
}
.faq__question::before, .faq__answer::before {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  font-size: 2.4rem;
  color: #30b364;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  line-height: 1;
}
.faq__question {
  margin-bottom: 2.2rem;
  font-weight: 700;
}
.faq__question::before {
  content: "Q";
}
.faq__answer::before {
  top: 0.2rem;
  content: "A";
}

@media screen and (min-width: 768px) {
  .faq__list {
    padding: 4rem;
    border-radius: 20px;
  }
  .faq__question, .faq__answer {
    padding-left: 2.8rem;
  }
}
@media screen and (min-width: 992px) {
  .faq__list {
    padding: 6rem;
  }
  .faq__item {
    padding-bottom: 4.8rem;
    margin-bottom: 4.8rem;
  }
  .faq__question, .faq__answer {
    padding-left: 4rem;
    font-size: 1.8rem;
  }
  .faq__question::before, .faq__answer::before {
    font-size: 3.2rem;
  }
  .faq__question {
    margin-bottom: 2.8rem;
  }
  .faq__answer::before {
    top: 0.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .faq__list {
    padding: 6rem 10rem;
  }
}
/*--------------- flow-list（object） ---------------*/
.flow__list {
  display: flex;
  flex-direction: column;
  padding: 4.8rem 2rem;
  gap: 4rem;
  background-color: #fff;
  border-radius: 20px 0 0 20px;
}
.flow__item {
  position: relative;
  padding-left: 5.4rem;
}
.flow__item::before {
  content: "";
  position: absolute;
  left: 1.8rem;
  top: 2.4rem;
  width: 1px;
  height: calc(100% + 2rem);
  border-left: 1px solid #30b364;
}
.flow__item:last-child::before {
  content: none;
}
.flow__step {
  position: absolute;
  left: 0;
  top: -0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.6rem;
  aspect-ratio: 1;
  font-size: 2rem;
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  background-color: #30b364;
  border-radius: 50rem;
}
.flow__title {
  margin-bottom: 0.8rem;
  font-size: 2rem;
  color: #30b364;
  font-weight: 700;
}
.flow__desc {
  font-size: 1.5rem;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .flow__list {
    padding: 6rem 4.8rem;
  }
}
@media screen and (min-width: 992px) {
  .flow__list {
    padding: 6rem;
    gap: 4.8rem;
  }
  .flow__item {
    padding-left: 8rem;
  }
  .flow__item::before {
    left: 2.3rem;
    top: 2.4rem;
    height: calc(100% + 2.4rem);
  }
  .flow__step {
    width: 4.8rem;
    font-size: 2.4rem;
  }
  .flow__title {
    margin-bottom: 1.2rem;
    font-size: 2.4rem;
  }
  .flow__desc {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .flow__list {
    margin-left: auto;
  }
  .flow__item {
    padding-left: 8rem;
  }
  .flow__item::before {
    left: 2.3rem;
    top: 2.4rem;
    width: 1px;
    height: calc(100% + 2.4rem);
  }
  .flow__step {
    top: -0.8rem;
  }
}
@media screen and (min-width: 1600px) {
  .flow__list {
    padding: 8rem;
  }
}
/*--------------- company（object） ---------------*/
.company {
  padding: 4rem 2rem;
  border: 1px solid #30b364;
}
.company__item {
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  font-size: 1.5rem;
  line-height: 1.4;
  border-bottom: 1px dashed #30b364;
}
.company__item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.company__title {
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.company__desc a {
  color: #30b364;
  text-decoration: underline;
}
.company__desc ul li {
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (min-width: 768px) {
  .company {
    padding: 4rem;
  }
  .company__item {
    display: flex;
  }
  .company__title {
    width: 30%;
    flex-shrink: 0;
    margin-right: 4rem;
  }
}
/*--------------- form（object） ---------------*/
.form {
  padding: 4rem 2rem;
  background-color: #fff;
  border-radius: 10px;
}
.form__title {
  margin-bottom: 4rem;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
}
.form__item {
  margin-bottom: 2.8rem;
}
.form__item .required {
  margin-left: 1.2rem;
  padding: 0.2rem 1rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  background-color: #30b364;
  border-radius: 50rem;
}
.form__item input {
  padding: 0.4rem 0.8rem;
  width: 100%;
  height: 4.8rem;
  font-size: 1.4rem;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.form__item textarea {
  padding: 0.8rem;
  width: 100%;
  height: 12rem;
  font-size: 1.4rem;
  background-color: #fff;
  border: 1px solid #ddd;
  resize: vertical;
}
.form__item textarea::placeholder {
  color: #C4C4C4;
}
.form__label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  font-weight: 500;
  word-break: break-all;
}
.form__input {
  font-size: 1.4rem;
  width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}
.form .input-error {
  display: none;
  margin-top: 0.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #FA7382;
}

@media screen and (min-width: 768px) {
  .form {
    padding: 6rem 4rem;
    border-radius: 20px;
  }
  .form__title {
    font-size: 2rem;
  }
  .form__item input {
    font-size: 1.5rem;
    border: 1px solid #ddd;
  }
  .form__item textarea {
    font-size: 1.5rem;
  }
  .form__label {
    font-size: 1.6rem;
  }
  .form__input {
    font-size: 1.5rem;
  }
  .form .input-error {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .form {
    padding: 6rem 10rem;
  }
  .form__title {
    font-size: 2.4rem;
  }
  .form__item {
    display: flex;
    margin-bottom: 3.6rem;
  }
  .form__item .required {
    font-size: 1.3rem;
  }
  .form__label {
    flex-shrink: 0;
    width: 30%;
    margin-bottom: 0;
  }
  .form__input {
    width: 70%;
  }
}
/*--------------- privacy policy（object） ---------------*/
.privacy-policy {
  margin-bottom: 2.8rem;
}
.privacy-policy__content {
  padding: 2rem;
  height: 24rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow-y: scroll;
  background-color: #fff;
}
.privacy-policy__heading {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.privacy-policy__sub-heading {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.privacy-policy__text {
  margin-bottom: 1.6rem;
  font-size: 1.2rem;
  line-height: 1.3;
  text-align: justify;
}
.privacy-policy__consent {
  margin-top: 2rem;
  text-align: center;
}
.privacy-policy__consent label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.privacy-policy__consent span {
  font-size: 1.5rem;
  font-weight: 700;
}
.privacy-policy__consent input[type=checkbox] {
  margin-right: 0.8rem;
  width: 2rem;
}
.privacy-policy__consent input[type=checkbox]::before {
  display: inline-block;
  content: "";
  width: 2rem;
  aspect-ratio: 1/1;
  background-image: url("../img/ico_checkbox_off.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.privacy-policy__consent input[type=checkbox]:checked::before {
  background-image: url("../img/ico_checkbox_on.svg");
}

/*--------------- campaign（object） ---------------*/
.header-campaign-text {
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  color: #ff5d5d;
  font-weight: 700;
}

.first-view-campaign-text {
  display: none;
}

.campaign {
  position: relative;
  padding: 2rem;
  overflow: hidden;
  background-color: #ff9090;
}
.campaign .campaign-contents {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  z-index: 1;
  border: 2px solid #ff5d5d;
}
.campaign .campaign-contents-inner {
  width: 100%;
  padding: 1.6rem 4rem 2.4rem;
}
.campaign .campaign-label {
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 1.2rem;
  padding: 0.2rem 4.8rem 0.6rem;
  font-size: clamp(1.4rem, 3.73vw, 2rem);
  color: #fff;
  font-weight: 500;
  background-color: #ff5d5d;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
  clip-path: polygon(100% 0, 93% 50%, 100% 100%, 0% 100%, 7% 50%, 0% 0%);
}
.campaign .campaign-label span {
  font-size: 180%;
}
.campaign .campaign-headline {
  margin-inline: auto;
  width: fit-content;
  position: relative;
  font-size: clamp(2.2rem, 5.87vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.07em;
}
.campaign .campaign-headline .text-lg {
  font-size: 280%;
}
.campaign .campaign-headline .unit-text-lg {
  font-size: 180%;
}
.campaign .campaign-balloon {
  position: absolute;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-image: url("../img/img_campaign_balloon.svg");
  background-repeat: no-repeat;
  background-position: center;
  letter-spacing: -0.05em;
  line-height: 1;
  left: -60px;
  top: -36px;
  width: 72px;
  font-size: 1.8rem;
}
.campaign .campaign-balloon p {
  transform: rotate(-10deg) translateY(-1px);
}
.campaign .campaign-balloon span {
  font-size: 180%;
}
.campaign .campaign-note {
  width: 100%;
  padding: 0.8rem;
  font-size: clamp(1.2rem, 3.2vw, 1.4rem);
  color: #fff;
  font-weight: 500;
  background-color: #ff5d5d;
  border-radius: 0 0 5px 5px;
  line-height: 1.4;
}
.campaign .campaign-left-image, .campaign .campaign-right-image {
  display: none;
}

@media screen and (min-width: 768px) {
  .campaign {
    padding: 4.8rem;
  }
  .campaign .campaign-balloon {
    left: -80px;
    top: -36px;
    width: 84px;
    font-size: 2.2rem;
  }
  .campaign .campaign-note {
    padding: 0.8rem 1.6rem;
  }
  .campaign .campaign-left-image,
  .campaign .campaign-right-image {
    display: block;
    position: absolute;
    width: 210px;
    right: -100px;
    bottom: -20px;
    z-index: 1;
  }
  .campaign .campaign-left-image {
    width: 116px;
    left: -75px;
    bottom: -104px;
  }
  .campaign .campaign-right-image {
    width: 200px;
    right: -84px;
    bottom: -20px;
  }
  .fixed-btn-campaign-text {
    display: block;
    position: absolute;
    height: 100%;
    left: -20px;
    top: 50%;
    font-size: 1.5rem;
    color: rgb(37.2158590308, 138.7841409692, 77.5330396476);
    font-weight: 700;
    transform: translateY(-50%);
    text-align: center;
    writing-mode: vertical-rl;
    -webkit-text-stroke: 2px #fff;
    text-stroke: 2px #fff;
    paint-order: stroke;
  }
}
@media screen and (min-width: 992px) {
  .header-campaign-text {
    display: none;
  }
  .first-view-campaign-text {
    display: block;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    color: #ff5d5d;
    font-weight: 700;
    opacity: 0;
    animation: textFadeIn 0.2s linear 1.2s forwards;
  }
  @keyframes textFadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
/*--------------- top（page） ---------------*/
.page-top .main {
  position: relative;
}
.page-top .main .first-view {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.page-top .main .first-view__inner {
  position: relative;
  padding: 7.2rem 2.8rem 8rem;
  margin-inline: auto;
}
.page-top .main .first-view__text {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  top: 11rem;
  left: 0;
  z-index: 1;
}
.page-top .main .first-view__title {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.page-top .main .first-view__title span {
  display: inline-block;
  padding: 1rem 0.8rem;
  font-size: 3.2rem;
  font-weight: 700;
  background-color: #fff;
  font-size: clamp(3.2rem, 3vw, 6rem);
  border: 1px solid #333;
  border-left: none;
}
.page-top .main .first-view__lead {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}
.page-top .main .first-view__lead span {
  padding: 0.2rem 0.8rem;
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 500;
  line-height: 2;
  background-color: #fff;
  border: 1px solid #333;
  border-left: none;
}
.page-top .main .first-view__image {
  margin-inline: auto;
  width: 100%;
  height: 80vh;
  border-radius: 28px;
  overflow: hidden;
}
.page-top .main .first-view__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  animation: fadeInOnly 1s ease-out 1.2s forwards, zoomInOnly 10s ease-out 1.2s forwards;
}
@keyframes fadeInOnly {
  to {
    opacity: 1;
  }
}
@keyframes zoomInOnly {
  to {
    transform: scale(1);
  }
}
.page-top .main .fixed-btn {
  position: fixed;
  bottom: 2rem;
  right: -1px;
  z-index: 3;
}
.page-top .main .block__header {
  margin-bottom: 4.8rem;
}
.page-top .main .block__lead {
  margin-bottom: 4.8rem;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
}
.page-top .main .block--problem {
  position: relative;
  padding-block: 8rem;
  background-color: #30b364;
}
.page-top .main .block--service {
  position: relative;
}
.page-top .main .block--service::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -1px;
  width: 5rem;
  height: 2rem;
  background-color: #30b364;
  transform: translateX(-50%);
  clip-path: polygon(50% 20px, 0% 0%, 50px 0%);
}
.page-top .main .block--service .service__block-title {
  margin-bottom: 5.2rem;
  font-size: 2.8rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
}
.page-top .main .block--service .service__block-title span {
  background: linear-gradient(transparent 70%, #FFED23 70%);
}
.page-top .main .block--service .service__block-lead {
  margin-bottom: 1.2rem;
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
}
.page-top .main .block--works .scroll-contents {
  display: flex;
  width: 100vw;
  overflow: hidden;
}
.page-top .main .block--works .works__list {
  margin-bottom: 4.8rem;
  animation: scroll 20s linear infinite;
  animation-duration: 40s;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.page-top .main .block--works .business-record__title {
  margin-bottom: 2.4rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.page-top .main .block--works .business-record__title span {
  display: inline-block;
}
.page-top .main .block--works .business-record__image {
  padding: 1.2rem;
  background-color: #fff;
}
.page-top .main .block--price .price__list {
  margin-bottom: 6rem;
}
.page-top .main .block--price .price-option__title {
  margin-bottom: 3.2rem;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
.page-top .main .block--price .price-option__note {
  margin-top: 4rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
.page-top .main .block--flow .block__header {
  padding-left: 7.4666666667vw;
}
.page-top .main .block--flow .flow__list {
  margin-left: 7.4666666667vw;
}
.page-top .main .block--contact {
  background-color: #30b364;
}
.page-top .main .block--contact .block__title, .page-top .main .block--contact .block__title--en {
  color: #fff;
}

@media screen and (min-width: 992px) {
  .page-top .main .first-view {
    position: relative;
  }
  .page-top .main .first-view__inner {
    padding: 7.2rem 0 8rem;
  }
  .page-top .main .first-view__text {
    top: inherit;
    left: 3%;
    bottom: 17rem;
  }
  .page-top .main .first-view__title {
    margin-bottom: 2rem;
  }
  .page-top .main .first-view__title span {
    padding-inline: 0.4rem;
    border: 1px solid #333;
  }
  .page-top .main .first-view__lead span {
    padding-inline: 0.4rem;
    border: 1px solid #333;
  }
  .page-top .main .first-view__image {
    margin-left: auto;
    margin-right: -2.8rem;
    width: 90%;
    height: 780px;
    border-radius: 80px 0 0 80px;
  }
  .page-top .main .block__header {
    margin-bottom: 6.4rem;
  }
  .page-top .main .block__lead {
    font-size: 1.8rem;
  }
  .page-top .main .block--service::before {
    top: -0.6rem;
    width: 10rem;
    height: 4rem;
    clip-path: polygon(50% 40px, 0% 0%, 100px 0%);
  }
  .page-top .main .block--service .service__block-title {
    margin-bottom: 8rem;
    font-size: 3.6rem;
  }
  .page-top .main .block--service .service__block-lead {
    margin-bottom: 1.6rem;
    font-size: 2.4rem;
  }
  .page-top .main .block--works .works__list {
    margin-bottom: 6.4rem;
  }
  .page-top .main .block--works .business-record__title {
    margin-bottom: 4.8rem;
    font-size: 2.4rem;
  }
  .page-top .main .block--works .business-record__image {
    padding: 4.8rem;
    max-width: 1200px;
    margin-inline: auto;
    border-radius: 28px;
  }
  .page-top .main .block--price .price__list {
    margin-bottom: 8rem;
  }
  .page-top .main .block--price .price-option__title {
    margin-bottom: 4rem;
    font-size: 2.8rem;
  }
  .page-top .main .block--flow .block__header {
    padding-left: 6%;
  }
  .page-top .main .block--flow .flow__list {
    margin-left: 6%;
  }
  .page-top .main .block--faq {
    padding-bottom: 14rem;
  }
  .page-top .main .block--contact .block__header {
    margin-bottom: 8rem;
  }
}
@media screen and (min-width: 1200px) {
  .page-top .main .first-view__image {
    width: 75%;
  }
  .page-top .main .block {
    width: 100%;
  }
  .page-top .main .block--flow {
    padding-inline: 6%;
    overflow: hidden;
  }
  .page-top .main .block--flow .block--flow-inner {
    position: relative;
    max-width: calc(1200px + 12%);
    max-width: 1200px;
    display: flex;
    margin-inline: auto;
    gap: 10rem;
  }
  .page-top .main .block--flow .block--flow-inner::after {
    content: "";
    position: absolute;
    right: -100%;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
  }
  .page-top .main .block--flow .block__header {
    padding-left: 0;
    position: relative;
    z-index: 1;
  }
  .page-top .main .block--flow .flow {
    position: relative;
    margin-left: auto;
    z-index: 1;
  }
  .page-top .main .block--flow .flow__list {
    margin-left: 0;
  }
}
/*--------------- confirm（page） ---------------*/
.page-confirm {
  min-height: 100vh;
}
.page-confirm .block {
  padding-top: 10rem;
}
.page-confirm .block__header {
  margin-bottom: 4.8rem;
}
.page-confirm .block--confirm {
  margin-top: 0;
  background-color: #30b364;
  border-radius: 0;
  min-height: calc(100vh - 40px);
}
.page-confirm .block--confirm .block__header .block__title, .page-confirm .block--confirm .block__header .block__title--en {
  color: #fff;
}
.page-confirm .block--confirm .form__input {
  line-height: 1.6;
}
.page-confirm .block--confirm .btn-wrap {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 600px;
  margin-inline: auto;
  gap: 1.2rem;
}

@media screen and (min-width: 768px) {
  .page-confirm .block--confirm .btn-wrap {
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .page-confirm .block {
    padding-top: 20rem;
  }
  .page-confirm .block--confirm .block__header {
    margin-bottom: 8rem;
  }
  .page-confirm .block--confirm .btn-wrap {
    margin-top: 6rem;
  }
}
/*--------------- thanks（page） ---------------*/
.page-thanks {
  min-height: 100vh;
  background-color: #30b364;
}
.page-thanks .block {
  padding-top: 10rem;
}
.page-thanks .block__header {
  margin-bottom: 4.8rem;
}
.page-thanks .block__header .block__title, .page-thanks .block__header .block__title--en {
  color: #fff;
}
.page-thanks .block--thanks {
  margin-top: 0;
  min-height: calc(100vh - 40px);
  background-color: #30b364;
}
.page-thanks .block .thanks {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
}
.page-thanks .block .thanks__title {
  margin-bottom: 4rem;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
}
.page-thanks .block .thanks__lead {
  margin-bottom: 6rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .page-thanks .block {
    padding-top: 10rem;
  }
  .page-thanks .block .thanks {
    padding: 6rem 4rem;
    border-radius: 20px;
  }
  .page-thanks .block .thanks__title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .page-thanks .block {
    padding-top: 20rem;
  }
  .page-thanks .block__header {
    margin-bottom: 8rem;
  }
  .page-thanks .block .thanks {
    padding: 6rem 10rem;
  }
  .page-thanks .block .thanks__title {
    font-size: 2.4rem;
  }
  .page-thanks .block .thanks .btn-wrap {
    margin-top: 6rem;
  }
}
/*--------------- margin ---------------*/
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-4 {
  margin-top: 1.0666666667vw !important;
}

.mt-8 {
  margin-top: 2.1333333333vw !important;
}

.mt-10 {
  margin-top: 2.6666666667vw !important;
}

.mt-12 {
  margin-top: 3.2vw !important;
}

.mt-16 {
  margin-top: 4.2666666667vw !important;
}

.mt-20 {
  margin-top: 5.3333333333vw !important;
}

.mt-24 {
  margin-top: 6.4vw !important;
}

.mt-28 {
  margin-top: 7.4666666667vw !important;
}

.mt-30 {
  margin-top: 8vw !important;
}

.mt-32 {
  margin-top: 8.5333333333vw !important;
}

.mt-36 {
  margin-top: 9.6vw !important;
}

.mt-40 {
  margin-top: 10.6666666667vw !important;
}

.mt-44 {
  margin-top: 11.7333333333vw !important;
}

.mt-48 {
  margin-top: 12.8vw !important;
}

.mt-50 {
  margin-top: 13.3333333333vw !important;
}

.mt-52 {
  margin-top: 13.8666666667vw !important;
}

.mt-56 {
  margin-top: 14.9333333333vw !important;
}

.mt-60 {
  margin-top: 16vw !important;
}

.mt-64 {
  margin-top: 17.0666666667vw !important;
}

.mt-68 {
  margin-top: 18.1333333333vw !important;
}

.mt-70 {
  margin-top: 18.6666666667vw !important;
}

.mt-72 {
  margin-top: 19.2vw !important;
}

.mt-76 {
  margin-top: 20.2666666667vw !important;
}

.mt-80 {
  margin-top: 21.3333333333vw !important;
}

.mt-84 {
  margin-top: 22.4vw !important;
}

.mt-88 {
  margin-top: 23.4666666667vw !important;
}

.mt-90 {
  margin-top: 24vw !important;
}

.mt-92 {
  margin-top: 24.5333333333vw !important;
}

.mt-96 {
  margin-top: 25.6vw !important;
}

.mt-100 {
  margin-top: 26.6666666667vw !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-4 {
  margin-right: 1.0666666667vw !important;
}

.mr-8 {
  margin-right: 2.1333333333vw !important;
}

.mr-10 {
  margin-right: 2.6666666667vw !important;
}

.mr-12 {
  margin-right: 3.2vw !important;
}

.mr-16 {
  margin-right: 4.2666666667vw !important;
}

.mr-20 {
  margin-right: 5.3333333333vw !important;
}

.mr-24 {
  margin-right: 6.4vw !important;
}

.mr-28 {
  margin-right: 7.4666666667vw !important;
}

.mr-30 {
  margin-right: 8vw !important;
}

.mr-32 {
  margin-right: 8.5333333333vw !important;
}

.mr-36 {
  margin-right: 9.6vw !important;
}

.mr-40 {
  margin-right: 10.6666666667vw !important;
}

.mr-44 {
  margin-right: 11.7333333333vw !important;
}

.mr-48 {
  margin-right: 12.8vw !important;
}

.mr-50 {
  margin-right: 13.3333333333vw !important;
}

.mr-52 {
  margin-right: 13.8666666667vw !important;
}

.mr-56 {
  margin-right: 14.9333333333vw !important;
}

.mr-60 {
  margin-right: 16vw !important;
}

.mr-64 {
  margin-right: 17.0666666667vw !important;
}

.mr-68 {
  margin-right: 18.1333333333vw !important;
}

.mr-70 {
  margin-right: 18.6666666667vw !important;
}

.mr-72 {
  margin-right: 19.2vw !important;
}

.mr-76 {
  margin-right: 20.2666666667vw !important;
}

.mr-80 {
  margin-right: 21.3333333333vw !important;
}

.mr-84 {
  margin-right: 22.4vw !important;
}

.mr-88 {
  margin-right: 23.4666666667vw !important;
}

.mr-90 {
  margin-right: 24vw !important;
}

.mr-92 {
  margin-right: 24.5333333333vw !important;
}

.mr-96 {
  margin-right: 25.6vw !important;
}

.mr-100 {
  margin-right: 26.6666666667vw !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-4 {
  margin-bottom: 1.0666666667vw !important;
}

.mb-8 {
  margin-bottom: 2.1333333333vw !important;
}

.mb-10 {
  margin-bottom: 2.6666666667vw !important;
}

.mb-12 {
  margin-bottom: 3.2vw !important;
}

.mb-16 {
  margin-bottom: 4.2666666667vw !important;
}

.mb-20 {
  margin-bottom: 5.3333333333vw !important;
}

.mb-24 {
  margin-bottom: 6.4vw !important;
}

.mb-28 {
  margin-bottom: 7.4666666667vw !important;
}

.mb-30 {
  margin-bottom: 8vw !important;
}

.mb-32 {
  margin-bottom: 8.5333333333vw !important;
}

.mb-36 {
  margin-bottom: 9.6vw !important;
}

.mb-40 {
  margin-bottom: 10.6666666667vw !important;
}

.mb-44 {
  margin-bottom: 11.7333333333vw !important;
}

.mb-48 {
  margin-bottom: 12.8vw !important;
}

.mb-50 {
  margin-bottom: 13.3333333333vw !important;
}

.mb-52 {
  margin-bottom: 13.8666666667vw !important;
}

.mb-56 {
  margin-bottom: 14.9333333333vw !important;
}

.mb-60 {
  margin-bottom: 16vw !important;
}

.mb-64 {
  margin-bottom: 17.0666666667vw !important;
}

.mb-70 {
  margin-bottom: 18.6666666667vw !important;
}

.mb-72 {
  margin-bottom: 19.2vw !important;
}

.mb-76 {
  margin-bottom: 20.2666666667vw !important;
}

.mb-80 {
  margin-bottom: 21.3333333333vw !important;
}

.mb-84 {
  margin-bottom: 22.4vw !important;
}

.mb-88 {
  margin-bottom: 23.4666666667vw !important;
}

.mb-90 {
  margin-bottom: 24vw !important;
}

.mb-94 {
  margin-bottom: 25.0666666667vw !important;
}

.mb-96 {
  margin-bottom: 25.6vw !important;
}

.mb-100 {
  margin-bottom: 26.6666666667vw !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-4 {
  margin-left: 1.0666666667vw !important;
}

.ml-8 {
  margin-left: 2.1333333333vw !important;
}

.ml-10 {
  margin-left: 2.6666666667vw !important;
}

.ml-12 {
  margin-left: 3.2vw !important;
}

.ml-16 {
  margin-left: 4.2666666667vw !important;
}

.ml-20 {
  margin-left: 5.3333333333vw !important;
}

.ml-24 {
  margin-left: 6.4vw !important;
}

.ml-28 {
  margin-left: 7.4666666667vw !important;
}

.ml-30 {
  margin-left: 8vw !important;
}

.ml-32 {
  margin-left: 8.5333333333vw !important;
}

.ml-36 {
  margin-left: 9.6vw !important;
}

.ml-40 {
  margin-left: 10.6666666667vw !important;
}

.ml-44 {
  margin-left: 11.7333333333vw !important;
}

.ml-48 {
  margin-left: 12.8vw !important;
}

.ml-50 {
  margin-left: 13.3333333333vw !important;
}

.ml-52 {
  margin-left: 13.8666666667vw !important;
}

.ml-56 {
  margin-left: 14.9333333333vw !important;
}

.ml-60 {
  margin-left: 16vw !important;
}

.ml-64 {
  margin-left: 17.0666666667vw !important;
}

.ml-68 {
  margin-left: 18.1333333333vw !important;
}

.ml-70 {
  margin-left: 18.6666666667vw !important;
}

.ml-72 {
  margin-left: 19.2vw !important;
}

.ml-76 {
  margin-left: 20.2666666667vw !important;
}

.ml-80 {
  margin-left: 21.3333333333vw !important;
}

.ml-84 {
  margin-left: 22.4vw !important;
}

.ml-88 {
  margin-left: 23.4666666667vw !important;
}

.ml-90 {
  margin-left: 24vw !important;
}

.ml-92 {
  margin-left: 24.5333333333vw !important;
}

.ml-96 {
  margin-left: 25.6vw !important;
}

.ml-100 {
  margin-left: 26.6666666667vw !important;
}

@media screen and (min-width: 768px) {
  .mt-4 {
    margin-top: 4px !important;
  }
  .mt-8 {
    margin-top: 8px !important;
  }
  .mt-10 {
    margin-top: 10px !important;
  }
  .mt-12 {
    margin-top: 12px !important;
  }
  .mt-16 {
    margin-top: 16px !important;
  }
  .mt-20 {
    margin-top: 20px !important;
  }
  .mt-24 {
    margin-top: 24px !important;
  }
  .mt-28 {
    margin-top: 28px !important;
  }
  .mt-30 {
    margin-top: 30px !important;
  }
  .mt-32 {
    margin-top: 32px !important;
  }
  .mt-36 {
    margin-top: 36px !important;
  }
  .mt-40 {
    margin-top: 40px !important;
  }
  .mt-44 {
    margin-top: 44px !important;
  }
  .mt-48 {
    margin-top: 48px !important;
  }
  .mt-50 {
    margin-top: 50px !important;
  }
  .mt-52 {
    margin-top: 52px !important;
  }
  .mt-56 {
    margin-top: 56px !important;
  }
  .mt-60 {
    margin-top: 60px !important;
  }
  .mt-64 {
    margin-top: 64px !important;
  }
  .mt-68 {
    margin-top: 68px !important;
  }
  .mt-70 {
    margin-top: 70px !important;
  }
  .mt-72 {
    margin-top: 72px !important;
  }
  .mt-76 {
    margin-top: 76px !important;
  }
  .mt-80 {
    margin-top: 80px !important;
  }
  .mt-84 {
    margin-top: 84px !important;
  }
  .mt-88 {
    margin-top: 88px !important;
  }
  .mt-90 {
    margin-top: 90px !important;
  }
  .mt-92 {
    margin-top: 92px !important;
  }
  .mt-96 {
    margin-top: 96px !important;
  }
  .mt-100 {
    margin-top: 100px !important;
  }
  .mr-4 {
    margin-right: 4px !important;
  }
  .mr-8 {
    margin-right: 8px !important;
  }
  .mr-10 {
    margin-right: 10px !important;
  }
  .mr-12 {
    margin-right: 12px !important;
  }
  .mr-16 {
    margin-right: 16px !important;
  }
  .mr-20 {
    margin-right: 20px !important;
  }
  .mr-24 {
    margin-right: 24px !important;
  }
  .mr-28 {
    margin-right: 28px !important;
  }
  .mr-30 {
    margin-right: 30px !important;
  }
  .mr-32 {
    margin-right: 32px !important;
  }
  .mr-36 {
    margin-right: 36px !important;
  }
  .mr-40 {
    margin-right: 40px !important;
  }
  .mr-44 {
    margin-right: 44px !important;
  }
  .mr-48 {
    margin-right: 48px !important;
  }
  .mr-50 {
    margin-right: 50px !important;
  }
  .mr-52 {
    margin-right: 52px !important;
  }
  .mr-56 {
    margin-right: 56px !important;
  }
  .mr-60 {
    margin-right: 60px !important;
  }
  .mr-64 {
    margin-right: 64px !important;
  }
  .mr-68 {
    margin-right: 68px !important;
  }
  .mr-70 {
    margin-right: 70px !important;
  }
  .mr-72 {
    margin-right: 72px !important;
  }
  .mr-76 {
    margin-right: 76px !important;
  }
  .mr-80 {
    margin-right: 80px !important;
  }
  .mr-84 {
    margin-right: 84px !important;
  }
  .mr-88 {
    margin-right: 88px !important;
  }
  .mr-90 {
    margin-right: 90px !important;
  }
  .mr-92 {
    margin-right: 92px !important;
  }
  .mr-96 {
    margin-right: 96px !important;
  }
  .mr-100 {
    margin-right: 100px !important;
  }
  .mb-4 {
    margin-bottom: 4px !important;
  }
  .mb-8 {
    margin-bottom: 8px !important;
  }
  .mb-10 {
    margin-bottom: 10px !important;
  }
  .mb-12 {
    margin-bottom: 12px !important;
  }
  .mb-16 {
    margin-bottom: 16px !important;
  }
  .mb-20 {
    margin-bottom: 20px !important;
  }
  .mb-24 {
    margin-bottom: 24px !important;
  }
  .mb-28 {
    margin-bottom: 28px !important;
  }
  .mb-30 {
    margin-bottom: 30px !important;
  }
  .mb-32 {
    margin-bottom: 32px !important;
  }
  .mb-36 {
    margin-bottom: 36px !important;
  }
  .mb-40 {
    margin-bottom: 40px !important;
  }
  .mb-44 {
    margin-bottom: 44px !important;
  }
  .mb-48 {
    margin-bottom: 48px !important;
  }
  .mb-50 {
    margin-bottom: 50px !important;
  }
  .mb-52 {
    margin-bottom: 52px !important;
  }
  .mb-56 {
    margin-bottom: 56px !important;
  }
  .mb-60 {
    margin-bottom: 60px !important;
  }
  .mb-64 {
    margin-bottom: 64px !important;
  }
  .mb-68 {
    margin-bottom: 68px !important;
  }
  .mb-70 {
    margin-bottom: 70px !important;
  }
  .mb-72 {
    margin-bottom: 72px !important;
  }
  .mb-76 {
    margin-bottom: 76px !important;
  }
  .mb-80 {
    margin-bottom: 80px !important;
  }
  .mb-84 {
    margin-bottom: 84px !important;
  }
  .mb-88 {
    margin-bottom: 88px !important;
  }
  .mb-90 {
    margin-bottom: 90px !important;
  }
  .mb-92 {
    margin-bottom: 92px !important;
  }
  .mb-96 {
    margin-bottom: 96px !important;
  }
  .mb-100 {
    margin-bottom: 100px !important;
  }
  .ml-4 {
    margin-left: 4px !important;
  }
  .ml-8 {
    margin-left: 8px !important;
  }
  .ml-10 {
    margin-left: 10px !important;
  }
  .ml-12 {
    margin-left: 12px !important;
  }
  .ml-16 {
    margin-left: 16px !important;
  }
  .ml-20 {
    margin-left: 20px !important;
  }
  .ml-24 {
    margin-left: 24px !important;
  }
  .ml-28 {
    margin-left: 28px !important;
  }
  .ml-30 {
    margin-left: 30px !important;
  }
  .ml-32 {
    margin-left: 32px !important;
  }
  .ml-36 {
    margin-left: 36px !important;
  }
  .ml-40 {
    margin-left: 40px !important;
  }
  .ml-44 {
    margin-left: 44px !important;
  }
  .ml-48 {
    margin-left: 48px !important;
  }
  .ml-50 {
    margin-left: 50px !important;
  }
  .ml-52 {
    margin-left: 52px !important;
  }
  .ml-56 {
    margin-left: 56px !important;
  }
  .ml-60 {
    margin-left: 60px !important;
  }
  .ml-64 {
    margin-left: 64px !important;
  }
  .ml-68 {
    margin-left: 68px !important;
  }
  .ml-70 {
    margin-left: 70px !important;
  }
  .ml-72 {
    margin-left: 72px !important;
  }
  .ml-76 {
    margin-left: 76px !important;
  }
  .ml-80 {
    margin-left: 80px !important;
  }
  .ml-84 {
    margin-left: 84px !important;
  }
  .ml-88 {
    margin-left: 88px !important;
  }
  .ml-90 {
    margin-left: 90px !important;
  }
  .ml-92 {
    margin-left: 92px !important;
  }
  .ml-96 {
    margin-left: 96px !important;
  }
  .ml-100 {
    margin-left: 100px !important;
  }
}
/*--------------- padding ---------------*/
.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-4 {
  padding-top: 1.0666666667vw !important;
}

.pt-8 {
  padding-top: 2.1333333333vw !important;
}

.pt-10 {
  padding-top: 2.6666666667vw !important;
}

.pt-12 {
  padding-top: 3.2vw !important;
}

.pt-16 {
  padding-top: 4.2666666667vw !important;
}

.pt-20 {
  padding-top: 5.3333333333vw !important;
}

.pt-24 {
  padding-top: 6.4vw !important;
}

.pt-28 {
  padding-top: 7.4666666667vw !important;
}

.pt-30 {
  padding-top: 8vw !important;
}

.pt-32 {
  padding-top: 8.5333333333vw !important;
}

.pt-36 {
  padding-top: 9.6vw !important;
}

.pt-40 {
  padding-top: 10.6666666667vw !important;
}

.pt-44 {
  padding-top: 11.7333333333vw !important;
}

.pt-48 {
  padding-top: 12.8vw !important;
}

.pt-50 {
  padding-top: 13.3333333333vw !important;
}

.pt-52 {
  padding-top: 13.8666666667vw !important;
}

.pt-56 {
  padding-top: 14.9333333333vw !important;
}

.pt-60 {
  padding-top: 16vw !important;
}

.pt-64 {
  padding-top: 17.0666666667vw !important;
}

.pt-68 {
  padding-top: 18.1333333333vw !important;
}

.pt-70 {
  padding-top: 18.6666666667vw !important;
}

.pt-72 {
  padding-top: 19.2vw !important;
}

.pt-76 {
  padding-top: 20.2666666667vw !important;
}

.pt-80 {
  padding-top: 21.3333333333vw !important;
}

.pt-84 {
  padding-top: 22.4vw !important;
}

.pt-88 {
  padding-top: 23.4666666667vw !important;
}

.pt-90 {
  padding-top: 24vw !important;
}

.pt-92 {
  padding-top: 24.5333333333vw !important;
}

.pt-96 {
  padding-top: 25.6vw !important;
}

.pt-100 {
  padding-top: 26.6666666667vw !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-4 {
  padding-right: 1.0666666667vw !important;
}

.pr-8 {
  padding-right: 2.1333333333vw !important;
}

.pr-10 {
  padding-right: 2.6666666667vw !important;
}

.pr-12 {
  padding-right: 3.2vw !important;
}

.pr-16 {
  padding-right: 4.2666666667vw !important;
}

.pr-20 {
  padding-right: 5.3333333333vw !important;
}

.pr-24 {
  padding-right: 6.4vw !important;
}

.pr-28 {
  padding-right: 7.4666666667vw !important;
}

.pr-30 {
  padding-right: 8vw !important;
}

.pr-32 {
  padding-right: 8.5333333333vw !important;
}

.pr-36 {
  padding-right: 9.6vw !important;
}

.pr-40 {
  padding-right: 10.6666666667vw !important;
}

.pr-44 {
  padding-right: 11.7333333333vw !important;
}

.pr-48 {
  padding-right: 12.8vw !important;
}

.pr-50 {
  padding-right: 13.3333333333vw !important;
}

.pr-52 {
  padding-right: 13.8666666667vw !important;
}

.pr-56 {
  padding-right: 14.9333333333vw !important;
}

.pr-60 {
  padding-right: 16vw !important;
}

.pr-64 {
  padding-right: 17.0666666667vw !important;
}

.pr-68 {
  padding-right: 18.1333333333vw !important;
}

.pr-70 {
  padding-right: 18.6666666667vw !important;
}

.pr-72 {
  padding-right: 19.2vw !important;
}

.pr-76 {
  padding-right: 20.2666666667vw !important;
}

.pr-80 {
  padding-right: 21.3333333333vw !important;
}

.pr-84 {
  padding-right: 22.4vw !important;
}

.pr-88 {
  padding-right: 23.4666666667vw !important;
}

.pr-90 {
  padding-right: 24vw !important;
}

.pr-92 {
  padding-right: 24.5333333333vw !important;
}

.pr-96 {
  padding-right: 25.6vw !important;
}

.pr-100 {
  padding-right: 26.6666666667vw !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-4 {
  padding-bottom: 1.0666666667vw !important;
}

.pb-8 {
  padding-bottom: 2.1333333333vw !important;
}

.pb-10 {
  padding-bottom: 2.6666666667vw !important;
}

.pb-12 {
  padding-bottom: 3.2vw !important;
}

.pb-16 {
  padding-bottom: 4.2666666667vw !important;
}

.pb-20 {
  padding-bottom: 5.3333333333vw !important;
}

.pb-24 {
  padding-bottom: 6.4vw !important;
}

.pb-28 {
  padding-bottom: 7.4666666667vw !important;
}

.pb-30 {
  padding-bottom: 8vw !important;
}

.pb-32 {
  padding-bottom: 8.5333333333vw !important;
}

.pb-36 {
  padding-bottom: 9.6vw !important;
}

.pb-40 {
  padding-bottom: 10.6666666667vw !important;
}

.pb-44 {
  padding-bottom: 11.7333333333vw !important;
}

.pb-48 {
  padding-bottom: 12.8vw !important;
}

.pb-50 {
  padding-bottom: 13.3333333333vw !important;
}

.pb-52 {
  padding-bottom: 13.8666666667vw !important;
}

.pb-56 {
  padding-bottom: 14.9333333333vw !important;
}

.pb-60 {
  padding-bottom: 16vw !important;
}

.pb-64 {
  padding-bottom: 17.0666666667vw !important;
}

.pb-68 {
  padding-bottom: 18.1333333333vw !important;
}

.pb-70 {
  padding-bottom: 18.6666666667vw !important;
}

.pb-72 {
  padding-bottom: 19.2vw !important;
}

.pb-76 {
  padding-bottom: 20.2666666667vw !important;
}

.pb-80 {
  padding-bottom: 21.3333333333vw !important;
}

.pb-84 {
  padding-bottom: 22.4vw !important;
}

.pb-88 {
  padding-bottom: 23.4666666667vw !important;
}

.pb-90 {
  padding-bottom: 24vw !important;
}

.pb-92 {
  padding-bottom: 24.5333333333vw !important;
}

.pb-96 {
  padding-bottom: 25.6vw !important;
}

.pb-100 {
  padding-bottom: 26.6666666667vw !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-4 {
  padding-left: 1.0666666667vw !important;
}

.pl-8 {
  padding-left: 2.1333333333vw !important;
}

.pl-10 {
  padding-left: 2.6666666667vw !important;
}

.pl-12 {
  padding-left: 3.2vw !important;
}

.pl-16 {
  padding-left: 4.2666666667vw !important;
}

.pl-20 {
  padding-left: 5.3333333333vw !important;
}

.pl-24 {
  padding-left: 6.4vw !important;
}

.pl-28 {
  padding-left: 7.4666666667vw !important;
}

.pl-30 {
  padding-left: 8vw !important;
}

.pl-32 {
  padding-left: 8.5333333333vw !important;
}

.pl-36 {
  padding-left: 9.6vw !important;
}

.pl-40 {
  padding-left: 10.6666666667vw !important;
}

.pl-44 {
  padding-left: 11.7333333333vw !important;
}

.pl-48 {
  padding-left: 12.8vw !important;
}

.pl-50 {
  padding-left: 13.3333333333vw !important;
}

.pl-52 {
  padding-left: 13.8666666667vw !important;
}

.pl-56 {
  padding-left: 14.9333333333vw !important;
}

.pl-60 {
  padding-left: 16vw !important;
}

.pl-64 {
  padding-left: 17.0666666667vw !important;
}

.pl-68 {
  padding-left: 18.1333333333vw !important;
}

.pl-70 {
  padding-left: 18.6666666667vw !important;
}

.pl-72 {
  padding-left: 19.2vw !important;
}

.pl-76 {
  padding-left: 20.2666666667vw !important;
}

.pl-80 {
  padding-left: 21.3333333333vw !important;
}

.pl-84 {
  padding-left: 22.4vw !important;
}

.pl-88 {
  padding-left: 23.4666666667vw !important;
}

.pl-90 {
  padding-left: 24vw !important;
}

.pl-92 {
  padding-left: 24.5333333333vw !important;
}

.pl-96 {
  padding-left: 25.6vw !important;
}

.pl-100 {
  padding-left: 26.6666666667vw !important;
}

@media screen and (min-width: 768px) {
  .pt-4 {
    padding-top: 4px !important;
  }
  .pt-8 {
    padding-top: 8px !important;
  }
  .pt-10 {
    padding-top: 10px !important;
  }
  .pt-12 {
    padding-top: 12px !important;
  }
  .pt-16 {
    padding-top: 16px !important;
  }
  .pt-20 {
    padding-top: 20px !important;
  }
  .pt-24 {
    padding-top: 24px !important;
  }
  .pt-28 {
    padding-top: 28px !important;
  }
  .pt-30 {
    padding-top: 30px !important;
  }
  .pt-32 {
    padding-top: 32px !important;
  }
  .pt-36 {
    padding-top: 36px !important;
  }
  .pt-40 {
    padding-top: 40px !important;
  }
  .pt-44 {
    padding-top: 44px !important;
  }
  .pt-48 {
    padding-top: 48px !important;
  }
  .pt-50 {
    padding-top: 50px !important;
  }
  .pt-52 {
    padding-top: 52px !important;
  }
  .pt-56 {
    padding-top: 56px !important;
  }
  .pt-60 {
    padding-top: 60px !important;
  }
  .pt-64 {
    padding-top: 64px !important;
  }
  .pt-68 {
    padding-top: 68px !important;
  }
  .pt-70 {
    padding-top: 70px !important;
  }
  .pt-72 {
    padding-top: 72px !important;
  }
  .pt-76 {
    padding-top: 76px !important;
  }
  .pt-80 {
    padding-top: 80px !important;
  }
  .pt-84 {
    padding-top: 84px !important;
  }
  .pt-88 {
    padding-top: 88px !important;
  }
  .pt-90 {
    padding-top: 90px !important;
  }
  .pt-92 {
    padding-top: 92px !important;
  }
  .pt-96 {
    padding-top: 96px !important;
  }
  .pt-100 {
    padding-top: 100px !important;
  }
  .pr-4 {
    padding-right: 4px !important;
  }
  .pr-8 {
    padding-right: 8px !important;
  }
  .pr-10 {
    padding-right: 10px !important;
  }
  .pr-12 {
    padding-right: 12px !important;
  }
  .pr-16 {
    padding-right: 16px !important;
  }
  .pr-20 {
    padding-right: 20px !important;
  }
  .pr-24 {
    padding-right: 24px !important;
  }
  .pr-28 {
    padding-right: 28px !important;
  }
  .pr-30 {
    padding-right: 30px !important;
  }
  .pr-32 {
    padding-right: 32px !important;
  }
  .pr-36 {
    padding-right: 36px !important;
  }
  .pr-40 {
    padding-right: 40px !important;
  }
  .pr-44 {
    padding-right: 44px !important;
  }
  .pr-48 {
    padding-right: 48px !important;
  }
  .pr-50 {
    padding-right: 50px !important;
  }
  .pr-52 {
    padding-right: 52px !important;
  }
  .pr-56 {
    padding-right: 56px !important;
  }
  .pr-60 {
    padding-right: 60px !important;
  }
  .pr-64 {
    padding-right: 64px !important;
  }
  .pr-68 {
    padding-right: 68px !important;
  }
  .pr-70 {
    padding-right: 70px !important;
  }
  .pr-72 {
    padding-right: 72px !important;
  }
  .pr-76 {
    padding-right: 76px !important;
  }
  .pr-80 {
    padding-right: 80px !important;
  }
  .pr-84 {
    padding-right: 84px !important;
  }
  .pr-88 {
    padding-right: 88px !important;
  }
  .pr-90 {
    padding-right: 90px !important;
  }
  .pr-92 {
    padding-right: 92px !important;
  }
  .pr-96 {
    padding-right: 96px !important;
  }
  .pr-100 {
    padding-right: 100px !important;
  }
  .pb-4 {
    padding-bottom: 4px !important;
  }
  .pb-8 {
    padding-bottom: 8px !important;
  }
  .pb-10 {
    padding-bottom: 10px !important;
  }
  .pb-12 {
    padding-bottom: 12px !important;
  }
  .pb-16 {
    padding-bottom: 16px !important;
  }
  .pb-20 {
    padding-bottom: 20px !important;
  }
  .pb-24 {
    padding-bottom: 24px !important;
  }
  .pb-28 {
    padding-bottom: 28px !important;
  }
  .pb-30 {
    padding-bottom: 30px !important;
  }
  .pb-32 {
    padding-bottom: 32px !important;
  }
  .pb-36 {
    padding-bottom: 36px !important;
  }
  .pb-40 {
    padding-bottom: 40px !important;
  }
  .pb-44 {
    padding-bottom: 44px !important;
  }
  .pb-48 {
    padding-bottom: 48px !important;
  }
  .pb-50 {
    padding-bottom: 50px !important;
  }
  .pb-52 {
    padding-bottom: 52px !important;
  }
  .pb-56 {
    padding-bottom: 56px !important;
  }
  .pb-60 {
    padding-bottom: 60px !important;
  }
  .pb-64 {
    padding-bottom: 64px !important;
  }
  .pb-68 {
    padding-bottom: 68px !important;
  }
  .pb-70 {
    padding-bottom: 70px !important;
  }
  .pb-72 {
    padding-bottom: 72px !important;
  }
  .pb-76 {
    padding-bottom: 76px !important;
  }
  .pb-80 {
    padding-bottom: 80px !important;
  }
  .pb-84 {
    padding-bottom: 84px !important;
  }
  .pb-88 {
    padding-bottom: 88px !important;
  }
  .pb-90 {
    padding-bottom: 90px !important;
  }
  .pb-92 {
    padding-bottom: 92px !important;
  }
  .pb-96 {
    padding-bottom: 96px !important;
  }
  .pb-100 {
    padding-bottom: 100px !important;
  }
  .pl-4 {
    padding-left: 4px !important;
  }
  .pl-8 {
    padding-left: 8px !important;
  }
  .pl-10 {
    padding-left: 10px !important;
  }
  .pl-12 {
    padding-left: 12px !important;
  }
  .pl-16 {
    padding-left: 16px !important;
  }
  .pl-20 {
    padding-left: 20px !important;
  }
  .pl-24 {
    padding-left: 24px !important;
  }
  .pl-28 {
    padding-left: 28px !important;
  }
  .pl-30 {
    padding-left: 30px !important;
  }
  .pl-32 {
    padding-left: 32px !important;
  }
  .pl-36 {
    padding-left: 36px !important;
  }
  .pl-40 {
    padding-left: 40px !important;
  }
  .pl-44 {
    padding-left: 44px !important;
  }
  .pl-48 {
    padding-left: 48px !important;
  }
  .pl-50 {
    padding-left: 50px !important;
  }
  .pl-52 {
    padding-left: 52px !important;
  }
  .pl-56 {
    padding-left: 56px !important;
  }
  .pl-60 {
    padding-left: 60px !important;
  }
  .pl-64 {
    padding-left: 64px !important;
  }
  .pl-68 {
    padding-left: 68px !important;
  }
  .pl-70 {
    padding-left: 70px !important;
  }
  .pl-72 {
    padding-left: 72px !important;
  }
  .pl-76 {
    padding-left: 76px !important;
  }
  .pl-80 {
    padding-left: 80px !important;
  }
  .pl-84 {
    padding-left: 84px !important;
  }
  .pl-88 {
    padding-left: 88px !important;
  }
  .pl-90 {
    padding-left: 90px !important;
  }
  .pl-92 {
    padding-left: 92px !important;
  }
  .pl-96 {
    padding-left: 96px !important;
  }
  .pl-100 {
    padding-left: 100px !important;
  }
}
/*--------------- display ---------------*/
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

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

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

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media screen and (max-width: 768px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
/*--------------- flex ---------------*/
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media screen and (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-md-content-start {
    justify-content: flex-start !important;
  }
  .justify-md-content-end {
    justify-content: flex-end !important;
  }
  .justify-md-content-center {
    justify-content: center !important;
  }
  .justify-md-content-between {
    justify-content: space-between !important;
  }
  .justify-md-content-around {
    justify-content: space-around !important;
  }
  .align-md-items-start {
    align-items: flex-start !important;
  }
  .align-md-items-end {
    align-items: flex-end !important;
  }
  .align-md-items-center {
    align-items: center !important;
  }
  .align-md-items-baseline {
    align-items: baseline !important;
  }
  .align-md-items-stretch {
    align-items: stretch !important;
  }
  .align-md-content-start {
    align-content: flex-start !important;
  }
  .align-md-content-end {
    align-content: flex-end !important;
  }
  .align-md-content-center {
    align-content: center !important;
  }
  .align-md-content-between {
    align-content: space-between !important;
  }
  .align-md-content-around {
    align-content: space-around !important;
  }
  .align-md-content-stretch {
    align-content: stretch !important;
  }
  .align-md-self-auto {
    align-self: auto !important;
  }
  .align-md-self-start {
    align-self: flex-start !important;
  }
  .align-md-self-end {
    align-self: flex-end !important;
  }
  .align-md-self-center {
    align-self: center !important;
  }
  .align-md-self-baseline {
    align-self: baseline !important;
  }
  .align-md-self-stretch {
    align-self: stretch !important;
  }
}
@media screen and (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-lg-content-start {
    justify-content: flex-start !important;
  }
  .justify-lg-content-end {
    justify-content: flex-end !important;
  }
  .justify-lg-content-center {
    justify-content: center !important;
  }
  .justify-lg-content-between {
    justify-content: space-between !important;
  }
  .justify-lg-content-around {
    justify-content: space-around !important;
  }
  .align-lg-items-start {
    align-items: flex-start !important;
  }
  .align-lg-items-end {
    align-items: flex-end !important;
  }
  .align-lg-items-center {
    align-items: center !important;
  }
  .align-lg-items-baseline {
    align-items: baseline !important;
  }
  .align-lg-items-stretch {
    align-items: stretch !important;
  }
  .align-lg-content-start {
    align-content: flex-start !important;
  }
  .align-lg-content-end {
    align-content: flex-end !important;
  }
  .align-lg-content-center {
    align-content: center !important;
  }
  .align-lg-content-between {
    align-content: space-between !important;
  }
  .align-lg-content-around {
    align-content: space-around !important;
  }
  .align-lg-content-stretch {
    align-content: stretch !important;
  }
  .align-lg-self-auto {
    align-self: auto !important;
  }
  .align-lg-self-start {
    align-self: flex-start !important;
  }
  .align-lg-self-end {
    align-self: flex-end !important;
  }
  .align-lg-self-center {
    align-self: center !important;
  }
  .align-lg-self-baseline {
    align-self: baseline !important;
  }
  .align-lg-self-stretch {
    align-self: stretch !important;
  }
}
@media screen and (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-xl-content-start {
    justify-content: flex-start !important;
  }
  .justify-xl-content-end {
    justify-content: flex-end !important;
  }
  .justify-xl-content-center {
    justify-content: center !important;
  }
  .justify-xl-content-between {
    justify-content: space-between !important;
  }
  .justify-xl-content-around {
    justify-content: space-around !important;
  }
  .align-xl-items-start {
    align-items: flex-start !important;
  }
  .align-xl-items-end {
    align-items: flex-end !important;
  }
  .align-xl-items-center {
    align-items: center !important;
  }
  .align-xl-items-baseline {
    align-items: baseline !important;
  }
  .align-xl-items-stretch {
    align-items: stretch !important;
  }
  .align-xl-content-start {
    align-content: flex-start !important;
  }
  .align-xl-content-end {
    align-content: flex-end !important;
  }
  .align-xl-content-center {
    align-content: center !important;
  }
  .align-xl-content-between {
    align-content: space-between !important;
  }
  .align-xl-content-around {
    align-content: space-around !important;
  }
  .align-xl-content-stretch {
    align-content: stretch !important;
  }
  .align-xl-self-auto {
    align-self: auto !important;
  }
  .align-xl-self-start {
    align-self: flex-start !important;
  }
  .align-xl-self-end {
    align-self: flex-end !important;
  }
  .align-xl-self-center {
    align-self: center !important;
  }
  .align-xl-self-baseline {
    align-self: baseline !important;
  }
  .align-xl-self-stretch {
    align-self: stretch !important;
  }
}
/*--------------- text aline ---------------*/
.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

/*--------------- button aline ---------------*/
.btn-left {
  text-align: left;
}

.btn-center {
  text-align: center;
}
.btn-center .btn {
  margin-inline: auto;
}

.btn-right {
  text-align: right;
}
.btn-right .btn {
  margin-left: auto;
}

/*--------------- text size ---------------*/
.text-sm {
  font-size: 80%;
}

.text-lg {
  font-size: 120%;
}

.text-xl {
  font-size: 140%;
}

/*--------------- JS ---------------*/
.js-fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.js-fadeup.is-fadeup {
  opacity: 1;
  transform: translateY(0);
}

/*--------------- css animation ---------------*/
.text-mask {
  position: relative;
  display: inline-block;
}
.text-mask::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #333;
  animation: maskSlide 0.8s cubic-bezier(0.66, 0, 0.34, 1) 0.1s forwards;
  transform: scaleX(0);
}
@keyframes maskSlide {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  52% {
    transform: scaleX(1);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.text-mask span {
  opacity: 0;
  animation: textOpacity 0.8s linear 0.1s forwards;
}
@keyframes textOpacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.text-mask02 {
  position: relative;
  display: inline-block;
}
.text-mask02::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #333;
  animation: maskSlide2 0.8s cubic-bezier(0.66, 0, 0.34, 1) 0.1s forwards;
  transform: scaleX(0);
}
@keyframes maskSlide2 {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  52% {
    transform: scaleX(1);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.text-mask02 span {
  opacity: 0;
  animation: textOpacity2 0.8s linear 0.1s forwards;
}
@keyframes textOpacity2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */