@charset "UTF-8";
@font-face {
  font-family: "DIN Alternate";
  src: url("../fonts/din-alternate-bold.ttf") format("truetype");
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  html {
    font-size: 1.25vw;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}

body:not(.login) {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  width: 100%;
  line-height: 2.15;
  color: #3D3D3D;
  margin: 0;
}
@media (max-width: 767px) {
  body:not(.login) {
    font-size: 0.75rem;
    overflow-x: hidden;
  }
}

h1,
h2,
h3,
h4 {
  line-height: inherit;
  margin: 0;
  font-weight: inherit;
}

p {
  margin: 0;
}

figure {
  margin: 0;
}

iframe,
video,
img,
svg {
  height: auto;
  max-width: 100%;
}

b, strong {
  font-weight: bold;
}

iframe,
img {
  vertical-align: bottom;
}

dl,
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dd {
  margin: 0;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.5;
}

#autozip {
  display: none !important;
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 75rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .l-header {
    z-index: 1000;
  }
}
@media (max-width: 767px) {
  .l-header {
    position: absolute;
  }
}
.l-header__logo {
  position: relative;
  z-index: 10;
  margin: 0;
  padding-top: 0.5rem;
  padding-left: 0.5rem;
}
@media (max-width: 767px) {
  .l-header__logo {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.l-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 10.625rem;
  height: 3.125rem;
  font-size: 0;
  background: url(../img/logo_tukka.png) center/contain no-repeat;
}
@media (max-width: 767px) {
  .l-header__logo a {
    width: 5.375rem;
    height: 4.4954375rem;
  }
}
.l-header__hamburger {
  position: fixed;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.69);
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  margin: auto;
  outline: none;
  -webkit-transition: transform 0.3s ease-in-out;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 1000;
}
.l-header__hamburger[aria-expanded=true] .l-header__hamburger-line {
  background: transparent;
}
.l-header__hamburger[aria-expanded=true] .l-header__hamburger-line:before, .l-header__hamburger[aria-expanded=true] .l-header__hamburger-line:after {
  top: 50%;
}
.l-header__hamburger[aria-expanded=true] .l-header__hamburger-line:before {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.l-header__hamburger[aria-expanded=true] .l-header__hamburger-line:after {
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.l-header__hamburger[aria-expanded=true] .l-header__hamburger-text {
  display: none;
}
.l-header__hamburger-line {
  width: 1.875rem;
  height: 0.0625rem;
  border-radius: 0.0625rem;
  display: block;
  -webkit-transition: inherit;
  transition: inherit;
  color: #3D3D3D;
  background: #3D3D3D;
  position: relative;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.l-header__hamburger-line:before, .l-header__hamburger-line:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.0625rem;
  background-color: #3D3D3D;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
}
.l-header__hamburger-line:before {
  top: -0.375rem;
}
.l-header__hamburger-line:after {
  top: 0.375rem;
}
.l-header__hamburger-text {
  font-family: "Shippori Mincho", serif;
  font-size: 0.83125rem;
  letter-spacing: 0.1rem;
}
.l-header__sp-menu {
  position: fixed;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background: #F2F0ED;
  overflow-y: scroll;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 5rem;
}

.l-sp-menu {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.l-sp-menu__item {
  padding: 0.75rem 1.5625rem;
  border-top: 0.0625rem solid #e6e6e6;
}
.l-sp-menu__item:last-of-type {
  border-bottom: 0.0625rem solid #e6e6e6;
}
.l-sp-menu__item-link {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: 0.03rem;
}
.l-sp-menu__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6875rem;
  margin-top: 2.125rem;
}
.l-sp-menu__button-text {
  color: #000;
  font-size: 0.8125rem;
  font-family: "Noto Sans JP";
  line-height: 1;
  letter-spacing: 0.03rem;
}
.l-sp-menu__button {
  width: 20.25rem;
  height: 3.0625rem;
  font-size: 1rem;
}

.l-footer {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background: #F2F0ED;
}
@media (max-width: 767px) {
  .l-footer {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.l-footer__nav-item {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  text-align: right;
}
.l-footer__copyright {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.5;
}

.l-container {
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
}
@media (min-width: 768px) {
  .l-container {
    max-width: calc(1080px + 5% * 2);
  }
}
@media (max-width: 767px) {
  .l-container {
    padding: 0 1rem;
  }
}
@media (min-width: 768px) {
  .l-container--w1320 {
    max-width: calc(1320px + 5% * 2);
  }
}
@media (min-width: 768px) {
  .l-container--w1100 {
    max-width: calc(1100px + 5% * 2);
  }
}
@media (min-width: 768px) {
  .l-container--w900 {
    max-width: calc(900px + 5% * 2);
  }
}

.l-main__inner {
  overflow: hidden;
}

.l-cta {
  background: #E0D3CA;
}
@media (max-width: 767px) {
  .l-cta__inner {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
.l-cta__box {
  max-width: 50.5rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (min-width: 768px) {
  .l-cta__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767px) {
  .l-cta__box {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.l-cta__box--deco-right::after {
  right: auto;
  left: calc(100% + 5.875rem);
}
@media (max-width: 767px) {
  .l-cta__box--deco-right::after {
    left: auto !important;
    right: 1rem !important;
  }
}
.l-cta__box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: calc(100% + 5.875rem);
  width: 7.75rem;
  height: 1rem;
  background: url(../img/deco_dots.png) center/cover no-repeat;
}
@media (max-width: 767px) {
  .l-cta__box::after {
    right: auto;
    left: 1rem;
    bottom: auto;
    top: calc(100% + 2.25rem);
  }
}
@media (min-width: 768px) {
  .l-cta__box-img {
    width: 20.310625rem;
  }
}
.l-cta__box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-cta__box-body {
  background: #fff;
}
@media (min-width: 768px) {
  .l-cta__box-body {
    width: 30.1875rem;
    padding: 1.25rem 2.5rem 1.25rem;
  }
}
@media (max-width: 767px) {
  .l-cta__box-sentense {
    padding: 1.5625rem 2.5rem 0;
  }
}
.l-cta__title {
  font-size: 1.375rem;
  font-weight: 350;
  line-height: 1.63;
  letter-spacing: 0.03rem;
}
@media (max-width: 767px) {
  .l-cta__title {
    font-size: 1rem;
    line-height: 2.24;
  }
}
.l-cta__product-name-en {
  margin-top: 0.5rem;
  font-size: 1.1133125rem;
  font-weight: 700;
  font-family: "DIN Alternate";
  display: block;
  letter-spacing: 0.03rem;
  line-height: 1.33;
}
@media (max-width: 767px) {
  .l-cta__product-name-en {
    font-size: 0.875rem;
  }
}
.l-cta__product-name-ja {
  display: block;
  font-size: 0.75rem;
  font-weight: 350;
  line-height: 1.66;
  letter-spacing: 0.03rem;
}
@media (max-width: 767px) {
  .l-cta__product-name-ja {
    font-size: 0.75rem;
  }
}
.l-cta__price {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.38;
}
.l-cta__price strong {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "DIN Alternate";
}
.l-cta__button-wrap {
  margin-top: 0.8525rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8525rem;
}
@media (max-width: 767px) {
  .l-cta__button-wrap {
    padding-bottom: 1.30375rem;
  }
}
.l-cta__button-microcopy {
  color: #000;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03rem;
}
.l-cta__button {
  width: 20.25rem;
  height: 3.0625rem;
}

.c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: #E0D3CA;
  font-family: "Noto Sans JP";
  text-align: center;
  font-weight: 350;
  line-height: 2.24;
  letter-spacing: 0.03rem;
  position: relative;
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 767px) {
  .c-button {
    font-size: 1rem;
  }
}
.p-fv {
  height: 115.3472222222vw;
  background: #E0D3CA;
  position: relative;
}

@media (max-width: 767px) {
  .p-fv {
    height: 377.3333333333vw;
  }
}
.p-fv::before, .p-fv::after {
  content: "";
  width: 7.75rem;
  height: 1rem;
  background: url(../img/deco_dots.png) center/contain no-repeat;
  position: absolute;
}

.p-fv::before {
  top: 54.375vw;
  left: 55.3472222222vw;
}

@media (max-width: 767px) {
  .p-fv::before {
    top: 158.1333333333vw;
    left: 3.7333333333vw;
  }
}
.p-fv::after {
  bottom: 4.2361111111vw;
  right: 79.375vw;
}

@media (max-width: 767px) {
  .p-fv::after {
    bottom: 16.5333333333vw;
    right: 3.2vw;
  }
}
.p-fv__title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.0625rem;
  position: absolute;
  top: 29.5833333333vw;
  right: 17.2222222222vw;
}

@media (max-width: 767px) {
  .p-fv__title {
    top: 92.2666666667vw;
    right: 4.2666666667vw;
    gap: 0.625rem;
  }
}
.p-fv__title span {
  display: block;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.4rem;
  font-family: "Shippori Mincho", serif;
}

@media (max-width: 767px) {
  .p-fv__title span {
    font-size: 1.25rem;
  }
}
.p-fv__subtitle {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.05rem;
  font-family: "Shippori Mincho", serif;
  position: absolute;
  top: 65.3472222222vw;
  left: 27.2222222222vw;
}

@media (max-width: 767px) {
  .p-fv__subtitle {
    font-size: 1.125rem;
    top: 266.6666666667vw;
    left: 3.4666666667vw;
  }
}
.p-fv__subtitle_1 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.05rem;
  font-family: "Shippori Mincho", serif;
  position: absolute;
  top: 69.347222vw;
  left: 27.2222222222vw;
}

@media (max-width: 767px) {
  .p-fv__subtitle_1 {
    font-size: 1.125rem;
    position: absolute;
    top:274.666667vw;
    left: 3.4666666667vw;
  }
}


.p-fv__img {
  position: absolute;
}

.p-fv__img--1 {
  top: 32.4305555556vw;
  left: 0;
  width: 20.6944444444vw;
}

@media (max-width: 767px) {
  .p-fv__img--1 {
    top: 108vw;
    width: 28.2666666667vw;
  }
}
.p-fv__img--2 {
  top: 4.2361111111vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 31.25vw;
}

@media (max-width: 767px) {
  .p-fv__img--2 {
    -webkit-transform: none;
            transform: none;
    top: 27.4666666667vw;
    left: 12.5333333333vw;
    width: 51.7333333333vw;
  }
}
.p-fv__img--3 {
  top: 0;
  right: 0;
  width: 15.8333333333vw;
}

@media (max-width: 767px) {
  .p-fv__img--3 {
    width: 16vw;
  }
}
.p-fv__img--4 {
  top: 65.3472222222vw;
  left: 3.75vw;
  width: 18.6111111111vw;
}

@media (max-width: 767px) {
  .p-fv__img--4 {
    top: 190.4vw;
    left: 0;
    width: 54.9333333333vw;
  }
}
.p-fv__img--5 {
  top: 55.9027777778vw;
  right: 8.0555555556vw;
  width: 20.4166666667vw;
}

@media (max-width: 767px) {
  .p-fv__img--5 {
    top: 147.4666666667vw;
    right: 4.2666666667vw;
    width: 49.8666666667vw;
  }
}
.p-fv__img--6 {
  top: 77.6388888889vw;
  left: 24.5833333333vw;
  width: 24.3055555556vw;
}

@media (max-width: 767px) {
  .p-fv__img--6 {
    top: 301.6vw;
    left: 18.1333333333vw;
    width: 39.4666666667vw;
  }
}
.p-fv__img--7 {
  top: 83.75vw;
  right: 12.7777777778vw;
  width: 16.9444444444vw;
}

@media (max-width: 767px) {
  .p-fv__img--7 {
    top: 218.1333333333vw;
    right: 0;
    width: 29.6vw;
  }
}
.p-introduction__heading {
  height: 19.4rem;
  background: url(../img/introduction_heading-bg.jpg) center/cover no-repeat;
  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;
}

@media (max-width: 767px) {
  .p-introduction__heading {
    background: url(../img/introduction_heading-bg-sp.jpg) center/cover no-repeat;
  }
}
.p-introduction__title {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  font-family: "Shippori Mincho", serif;
}

.p-introduction__title-en {
  font-size: 1.5805625rem;
  font-weight: 500;
  line-height: 1.43;
  letter-spacing: 0.14625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

.p-introduction__title-en::after {
  content: "";
  display: block;
  width: 0.0625rem;
  height: 2rem;
  background: #fff;
}

.p-introduction__title-ja {
  font-size: 1rem;
  font-weight: 600;
  line-height: 2.62;
  letter-spacing: 0.03rem;
}

.p-introduction__body {
  background: #F2F0ED;
}

.p-introduction__list1 {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.625rem;
}

@media (max-width: 767px) {
  .p-introduction__list1 {
    margin-top: 1.5625rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 3.125rem;
    width: 15rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-introduction__list1-item {
  min-height: 12.22875rem;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}

@media (max-width: 767px) {
  .p-introduction__list1-item {
    padding: 1.5rem 1rem;
    min-height: 9.375rem;
  }
}
.p-introduction__list1-item::before, .p-introduction__list1-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(50% - 0.3924375rem);
  height: 0.0625rem;
  background: currentColor;
}

.p-introduction__list1-item::before {
  left: 0;
}

.p-introduction__list1-item::after {
  right: 0;
}

.p-introduction__list1-item-deco {
  width: 1.0625rem;
  height: 0.0625rem;
  position: absolute;
  background: currentColor;
  top: 100%;
  left: calc(50% - 0.3924375rem);
  -webkit-transform: translateY(-100%) rotate(45deg);
          transform: translateY(-100%) rotate(45deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.p-top__lead {
  background: #F2F0ED;
}

.p-top__lead-title {
  padding: 2.15625rem 2.75rem 0;
  height: 16.875rem;
  font-size: 2.3125rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .p-top__lead-title {
    height: 5.25rem;
    padding-top: 0.9375rem;
    padding-left: 1rem;
    font-size: 1.125rem;
  }
}
.p-top__title {
  font-size: 1.625rem;
  text-align: center;
  padding-bottom: 3.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .p-top__title {
    font-size: 1.25rem;
  }
}
.p-top__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.0625rem;
  height: 2rem;
  background: currentColor;
}

.p-top__subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.03rem;
}

@media (max-width: 767px) {
  .p-top__subtitle {
    font-size: 1.25rem;
    line-height: 1.56;
  }
}
.p-top__text {
  margin-top: 0.55rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.25;
  padding-left: 1.1875rem;
  position: relative;
  min-height: 3.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-top__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.0625rem;
  height: 3.9375rem;
  background: currentColor;
}

@media (max-width: 767px) {
  .p-top__text {
    font-size: 0.875rem;
    line-height: 2.57;
    padding-left: 0.6875rem;
  }
}
.p-top__smtext {
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 2.54;
  letter-spacing: 0.03rem;
}

.p-top__list {
  margin-top: 5rem;
  max-width: 58.125rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem;
}

@media (max-width: 767px) {
  .p-top__list {
    margin-top: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
    width: 17.29125rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-top__list-text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
}

.p-system {
  background: #F2F0ED;
}

.p-system__list {
  margin-top: 5.3125rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}

@media (max-width: 767px) {
  .p-system__list {
    margin-top: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.p-system__item-text {
  padding-top: 1rem;
  font-size: 0.8125rem;
  line-height: 1.53;
  letter-spacing: 0.03rem;
}

@media (max-width: 767px) {
  .p-system__item-text {
    min-height: 7.25rem;
  }
}
.p-feature__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}

@media (max-width: 767px) {
  .p-feature__inner {
    gap: 2.5rem;
  }
}
.p-feature__subtitle {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03rem;
  margin-bottom: 1rem;
}

.p-feature__text {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 2.15;
  letter-spacing: 0.03rem;
}

.p-feature__smtext {
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 2.54;
  letter-spacing: 0.03rem;
}

.p-feature__first {
  margin-top: 0.625rem;
}

@media (min-width: 768px) {
  .p-feature__first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    border: 0.0625rem solid #3d3d3d;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 7.74125rem;
  }
}
@media (min-width: 768px) {
  .p-feature__first-img {
    width: 30.5rem;
  }
}
@media (max-width: 767px) {
  .p-feature__first-img {
    padding-left: 0.97125rem;
    padding-right: 0.97125rem;
  }
}
.p-feature__first-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .p-feature__first-sentense {
    width: 33.09375rem;
    padding: 1.875rem 3.625rem;
  }
}
@media (max-width: 767px) {
  .p-feature__first-sentense {
    margin-top: -1.25rem;
    border: 0.0625rem solid #3d3d3d;
    padding: 1.8125rem 1rem;
  }
}
.p-feature__second {
  position: relative;
}

@media (min-width: 768px) {
  .p-feature__second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5.3125rem;
  }
}
.p-feature__second::after {
  content: "";
  position: absolute;
  top: 6.875rem;
  right: 0;
  width: 7.75rem;
  height: 1rem;
  background: url(../img/deco_dots.png) center/cover no-repeat;
}

@media (min-width: 1280px) {
  .p-feature__second::after {
    right: -5.8125rem;
  }
}
@media (max-width: 767px) {
  .p-feature__second::after {
    top: calc(100% + 0.72375rem);
  }
}
@media (min-width: 768px) {
  .p-feature__second-img {
    width: 24.6rem;
    height: 14.513375rem;
  }
}
@media (max-width: 767px) {
  .p-feature__second-img {
    padding-left: 0.97125rem;
    padding-right: 0.97125rem;
  }
}
.p-feature__second-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .p-feature__second-sentense {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media (max-width: 767px) {
  .p-feature__second-sentense {
    margin-top: 0.5rem;
  }
}
@media (min-width: 768px) {
  .p-feature__third {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5.375rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 768px) {
  .p-feature__third-sentense {
    width: 22.6875rem;
  }
}
@media (min-width: 768px) {
  .p-feature__third-img {
    width: 34.461875rem;
  }
}
@media (max-width: 767px) {
  .p-feature__third-img {
    margin-top: 1.075625rem;
  }
}
.p-feature__fourth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.625rem;
}

@media (min-width: 768px) {
  .p-feature__fourth {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .p-feature__fourth {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-feature__fourth-block {
  border: solid 0.0625rem currentColor;
  padding: 1.4375rem;
}

@media (max-width: 767px) {
  .p-feature__fourth-block {
    padding-right: 1.125rem;
  }
}
@media (min-width: 768px) {
  .p-feature__fourth-block:first-of-type {
    width: 42.9375rem;
    margin-top: 3.6875rem;
  }
}
@media (min-width: 768px) {
  .p-feature__fourth-block:last-of-type {
    width: 22.9375rem;
  }
}
.p-feature__fourth-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .p-feature__fifth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.875rem;
  }
}
@media (min-width: 768px) {
  .p-feature__fifth-img {
    width: 30.8125rem;
    margin-top: 5rem;
  }
}
.p-feature__fifth-sentense {
  color: #000;
}

@media (min-width: 768px) {
  .p-feature__fifth-sentense {
    width: 29.8125rem;
  }
}
@media (max-width: 767px) {
  .p-feature__fifth-sentense {
    margin-top: 1rem;
  }
}
.p-developer {
  background: #F2F0ED;
}

.p-developer__box {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

@media (max-width: 767px) {
  .p-developer__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.25rem;
  }
}
.p-developer__box::after {
  content: "";
  position: absolute;
  top: calc(100% + 1.25rem);
  left: 0;
  width: 7.75rem;
  height: 1rem;
  background: url(../img/deco_dots.png) center/cover no-repeat;
}

@media (min-width: 1280px) {
  .p-developer__box::after {
    right: calc(100% - 1.3125rem);
  }
}
@media (max-width: 767px) {
  .p-developer__box::after {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .p-developer__sentense {
    width: 36rem;
  }
}
.p-developer__subtitle {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.18;
}

.p-developer__text {
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .p-developer__img {
    width: 16.9375rem;
  }
}
@media (max-width: 767px) {
  .p-developer__img {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
}
.p-flow__box {
  margin-top: 8rem;
  max-width: 40.25rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .p-flow__box {
    margin-top: 4.5rem;
  }
}
.p-flow__box-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

@media (max-width: 767px) {
  .p-flow__box-images {
    gap: 0.5625rem;
  }
}
@media (max-width: 767px) {
  .p-flow__box-image img {
    aspect-ratio: 167/268;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-flow__box-image-caption {
  text-align: center;
  background: #fff;
  font-size: 1.5rem;
}

.p-flow__box-text {
  margin-top: 0.625rem;
  color: #000;
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .p-flow__box-text {
    margin-top: 1.5rem;
  }
}
.p-sponsor__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.1875rem;
}

@media (max-width: 767px) {
  .p-sponsor__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
  }
}
@media (min-width: 768px) {
  .p-sponsor__img {
    width: 31.0625rem;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (min-width: 768px) {
  .p-sponsor__box {
    width: 30.1875rem;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.p-sponsor__title {
  line-height: 1.25;
}

@media (max-width: 767px) {
  .p-sponsor__title {
    font-size: 1.625rem;
  }
}
.p-sponsor__subtitle {
  margin-top: 3.625rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.82;
  letter-spacing: 0.03rem;
}

.p-sponsor__subtitle span {
  font-size: 0.75rem;
}

.p-sponsor__text {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 2.6;
  letter-spacing: 0.03rem;
}

.p-sponsor__list {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2.5rem;
}

@media (max-width: 767px) {
  .p-sponsor__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1.25rem;
  }
}
.p-sponsor__list-item {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 2.6;
  letter-spacing: 0.03rem;
}

/*=======================
display
=======================*/
.u-d-none {
  display: none !important;
}

@media (min-width: 768px) {
  .u-d-md-none {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .u-d-sm-none {
    display: none !important;
  }
}
.u-bg-main {
  background: #E0D3CA;
}

.u-bg-main-light {
  background: #F2F0ED;
}

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

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

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

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

.u-my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.u-mx-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-0 {
    margin-top: 0rem !important;
  }
  .u-mr-sm-0 {
    margin-right: 0rem !important;
  }
  .u-mb-sm-0 {
    margin-bottom: 0rem !important;
  }
  .u-ml-sm-0 {
    margin-left: 0rem !important;
  }
  .u-my-sm-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .u-mx-sm-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}
.u-mt-1 {
  margin-top: 0.5rem !important;
}

.u-mr-1 {
  margin-right: 0.5rem !important;
}

.u-mb-1 {
  margin-bottom: 0.5rem !important;
}

.u-ml-1 {
  margin-left: 0.5rem !important;
}

.u-my-1 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.u-mx-1 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-1 {
    margin-top: 0.5rem !important;
  }
  .u-mr-sm-1 {
    margin-right: 0.5rem !important;
  }
  .u-mb-sm-1 {
    margin-bottom: 0.5rem !important;
  }
  .u-ml-sm-1 {
    margin-left: 0.5rem !important;
  }
  .u-my-sm-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .u-mx-sm-1 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}
.u-mt-2 {
  margin-top: 1rem !important;
}

.u-mr-2 {
  margin-right: 1rem !important;
}

.u-mb-2 {
  margin-bottom: 1rem !important;
}

.u-ml-2 {
  margin-left: 1rem !important;
}

.u-my-2 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.u-mx-2 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-2 {
    margin-top: 1rem !important;
  }
  .u-mr-sm-2 {
    margin-right: 1rem !important;
  }
  .u-mb-sm-2 {
    margin-bottom: 1rem !important;
  }
  .u-ml-sm-2 {
    margin-left: 1rem !important;
  }
  .u-my-sm-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .u-mx-sm-2 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.u-mt-3 {
  margin-top: 1.5rem !important;
}

.u-mr-3 {
  margin-right: 1.5rem !important;
}

.u-mb-3 {
  margin-bottom: 1.5rem !important;
}

.u-ml-3 {
  margin-left: 1.5rem !important;
}

.u-my-3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.u-mx-3 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-3 {
    margin-top: 1.5rem !important;
  }
  .u-mr-sm-3 {
    margin-right: 1.5rem !important;
  }
  .u-mb-sm-3 {
    margin-bottom: 1.5rem !important;
  }
  .u-ml-sm-3 {
    margin-left: 1.5rem !important;
  }
  .u-my-sm-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .u-mx-sm-3 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
}
.u-mt-4 {
  margin-top: 2rem !important;
}

.u-mr-4 {
  margin-right: 2rem !important;
}

.u-mb-4 {
  margin-bottom: 2rem !important;
}

.u-ml-4 {
  margin-left: 2rem !important;
}

.u-my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.u-mx-4 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-4 {
    margin-top: 2rem !important;
  }
  .u-mr-sm-4 {
    margin-right: 2rem !important;
  }
  .u-mb-sm-4 {
    margin-bottom: 2rem !important;
  }
  .u-ml-sm-4 {
    margin-left: 2rem !important;
  }
  .u-my-sm-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .u-mx-sm-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
}
.u-mt-5 {
  margin-top: 2.5rem !important;
}

.u-mr-5 {
  margin-right: 2.5rem !important;
}

.u-mb-5 {
  margin-bottom: 2.5rem !important;
}

.u-ml-5 {
  margin-left: 2.5rem !important;
}

.u-my-5 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.u-mx-5 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-5 {
    margin-top: 2.5rem !important;
  }
  .u-mr-sm-5 {
    margin-right: 2.5rem !important;
  }
  .u-mb-sm-5 {
    margin-bottom: 2.5rem !important;
  }
  .u-ml-sm-5 {
    margin-left: 2.5rem !important;
  }
  .u-my-sm-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .u-mx-sm-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}
.u-mt-6 {
  margin-top: 3rem !important;
}

.u-mr-6 {
  margin-right: 3rem !important;
}

.u-mb-6 {
  margin-bottom: 3rem !important;
}

.u-ml-6 {
  margin-left: 3rem !important;
}

.u-my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.u-mx-6 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-6 {
    margin-top: 3rem !important;
  }
  .u-mr-sm-6 {
    margin-right: 3rem !important;
  }
  .u-mb-sm-6 {
    margin-bottom: 3rem !important;
  }
  .u-ml-sm-6 {
    margin-left: 3rem !important;
  }
  .u-my-sm-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .u-mx-sm-6 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
}
.u-mt-7 {
  margin-top: 3.5rem !important;
}

.u-mr-7 {
  margin-right: 3.5rem !important;
}

.u-mb-7 {
  margin-bottom: 3.5rem !important;
}

.u-ml-7 {
  margin-left: 3.5rem !important;
}

.u-my-7 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.u-mx-7 {
  margin-left: 3.5rem !important;
  margin-right: 3.5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-7 {
    margin-top: 3.5rem !important;
  }
  .u-mr-sm-7 {
    margin-right: 3.5rem !important;
  }
  .u-mb-sm-7 {
    margin-bottom: 3.5rem !important;
  }
  .u-ml-sm-7 {
    margin-left: 3.5rem !important;
  }
  .u-my-sm-7 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .u-mx-sm-7 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
}
.u-mt-8 {
  margin-top: 4rem !important;
}

.u-mr-8 {
  margin-right: 4rem !important;
}

.u-mb-8 {
  margin-bottom: 4rem !important;
}

.u-ml-8 {
  margin-left: 4rem !important;
}

.u-my-8 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.u-mx-8 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-8 {
    margin-top: 4rem !important;
  }
  .u-mr-sm-8 {
    margin-right: 4rem !important;
  }
  .u-mb-sm-8 {
    margin-bottom: 4rem !important;
  }
  .u-ml-sm-8 {
    margin-left: 4rem !important;
  }
  .u-my-sm-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .u-mx-sm-8 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}
.u-mt-9 {
  margin-top: 4.5rem !important;
}

.u-mr-9 {
  margin-right: 4.5rem !important;
}

.u-mb-9 {
  margin-bottom: 4.5rem !important;
}

.u-ml-9 {
  margin-left: 4.5rem !important;
}

.u-my-9 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

.u-mx-9 {
  margin-left: 4.5rem !important;
  margin-right: 4.5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-9 {
    margin-top: 4.5rem !important;
  }
  .u-mr-sm-9 {
    margin-right: 4.5rem !important;
  }
  .u-mb-sm-9 {
    margin-bottom: 4.5rem !important;
  }
  .u-ml-sm-9 {
    margin-left: 4.5rem !important;
  }
  .u-my-sm-9 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .u-mx-sm-9 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
}
.u-mt-10 {
  margin-top: 5rem !important;
}

.u-mr-10 {
  margin-right: 5rem !important;
}

.u-mb-10 {
  margin-bottom: 5rem !important;
}

.u-ml-10 {
  margin-left: 5rem !important;
}

.u-my-10 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.u-mx-10 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-10 {
    margin-top: 5rem !important;
  }
  .u-mr-sm-10 {
    margin-right: 5rem !important;
  }
  .u-mb-sm-10 {
    margin-bottom: 5rem !important;
  }
  .u-ml-sm-10 {
    margin-left: 5rem !important;
  }
  .u-my-sm-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .u-mx-sm-10 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
}
.u-py-default {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 767px) {
  .u-py-default {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.u-pt-0 {
  padding-top: 0rem !important;
}

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

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

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

.u-py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.u-px-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.u-pt-1 {
  padding-top: 0.5rem !important;
}

.u-pr-1 {
  padding-right: 0.5rem !important;
}

.u-pb-1 {
  padding-bottom: 0.5rem !important;
}

.u-pl-1 {
  padding-left: 0.5rem !important;
}

.u-py-1 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.u-px-1 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.u-pt-2 {
  padding-top: 1rem !important;
}

.u-pr-2 {
  padding-right: 1rem !important;
}

.u-pb-2 {
  padding-bottom: 1rem !important;
}

.u-pl-2 {
  padding-left: 1rem !important;
}

.u-py-2 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.u-px-2 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.u-pt-3 {
  padding-top: 1.5rem !important;
}

.u-pr-3 {
  padding-right: 1.5rem !important;
}

.u-pb-3 {
  padding-bottom: 1.5rem !important;
}

.u-pl-3 {
  padding-left: 1.5rem !important;
}

.u-py-3 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.u-px-3 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.u-pt-4 {
  padding-top: 2rem !important;
}

.u-pr-4 {
  padding-right: 2rem !important;
}

.u-pb-4 {
  padding-bottom: 2rem !important;
}

.u-pl-4 {
  padding-left: 2rem !important;
}

.u-py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.u-px-4 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.u-pt-5 {
  padding-top: 2.5rem !important;
}

.u-pr-5 {
  padding-right: 2.5rem !important;
}

.u-pb-5 {
  padding-bottom: 2.5rem !important;
}

.u-pl-5 {
  padding-left: 2.5rem !important;
}

.u-py-5 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.u-px-5 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.u-pt-6 {
  padding-top: 3rem !important;
}

.u-pr-6 {
  padding-right: 3rem !important;
}

.u-pb-6 {
  padding-bottom: 3rem !important;
}

.u-pl-6 {
  padding-left: 3rem !important;
}

.u-py-6 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.u-px-6 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.u-pt-7 {
  padding-top: 3.5rem !important;
}

.u-pr-7 {
  padding-right: 3.5rem !important;
}

.u-pb-7 {
  padding-bottom: 3.5rem !important;
}

.u-pl-7 {
  padding-left: 3.5rem !important;
}

.u-py-7 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.u-px-7 {
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}

.u-pt-8 {
  padding-top: 4rem !important;
}

.u-pr-8 {
  padding-right: 4rem !important;
}

.u-pb-8 {
  padding-bottom: 4rem !important;
}

.u-pl-8 {
  padding-left: 4rem !important;
}

.u-py-8 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.u-px-8 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.u-pt-9 {
  padding-top: 4.5rem !important;
}

.u-pr-9 {
  padding-right: 4.5rem !important;
}

.u-pb-9 {
  padding-bottom: 4.5rem !important;
}

.u-pl-9 {
  padding-left: 4.5rem !important;
}

.u-py-9 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.u-px-9 {
  padding-left: 4.5rem !important;
  padding-right: 4.5rem !important;
}

.u-pt-10 {
  padding-top: 5rem !important;
}

.u-pr-10 {
  padding-right: 5rem !important;
}

.u-pb-10 {
  padding-bottom: 5rem !important;
}

.u-pl-10 {
  padding-left: 5rem !important;
}

.u-py-10 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.u-px-10 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.u-color-font {
  color: #3D3D3D;
}

@media (min-width: 768px) {
  .u-text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .u-text-md-left {
    text-align: left !important;
  }
}
@media (min-width: 768px) {
  .u-text-md-right {
    text-align: right !important;
  }
}
@media (max-width: 580px) {
  .u-text-sm-center {
    text-align: center !important;
  }
}
@media (max-width: 580px) {
  .u-text-sm-left {
    text-align: left !important;
  }
}
@media (max-width: 580px) {
  .u-text-sm-right {
    text-align: right !important;
  }
}