@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*
  * Reset CSS
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* list Remove default style */
ul,
ol {
  padding: 0;
  list-style: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizespeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  -webkit-text-decoration-skip: ink;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* フォームリセット */
input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
}

/* stylelint-disable */
textarea {
  resize: vertical;
}

/* stylelint-enable */
input[type=radio] {
  visibility: hidden;
}

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

/* =====================
 * Baseスタイル
===================== */
:root,
:root[theme=Default] {
  --pc-max-width:1080px;
  --pc-max-width2:1480px;
  --f-family-main: "Noto Sans JP", sans-serif;
  --f-family-en: "Poppins", sans-serif;
  --f-font-size: 16px;
  --f-font-size2: 24px;
  --f-font-size3: 20px;
  --f-h2-font-size: 32px;
  --f-line-height: 1.6;
  --f-line-height2: 2.0;
  --c-black: #3D3D3D;
  --c-orange:#FB752B;
  --c-yellow:#FFE97C;
  --c-yellow2:#FFFCEB;
}
@media (max-width: 768px) {
  :root,
  :root[theme=Default] {
    --f-font-size: 16px;
    --f-font-size2: 16px;
    --f-font-size3: 18px;
    --f-h2-font-size: 28px;
  }
}

html {
  /* ----------------------------
  * リキッドレイアウト rootのfont-sizeを可変にして、単位をremで指定することでレイアウトを可変にする
    // 計算式参考サイト：https://lpeg.info/html/css_calc_font.html
    // font-size: calc([最小値px] + ([最大値] - [最小値]) * ((100vw - [最小画面幅px]) / ([最大画面幅] - [最小画面幅])));
    // clampと併用して上限下限を設定すること。しないと無限に変化し続ける
  * ---------------------------- */
  font-size: 18px;
  color: var(--c-black);
}
@media (max-width: 1140px) {
  html {
    font-size: clamp(12px, 12px + 4 * (100vw - 768px) / 372, 16px);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: clamp(12px, 4.2666666667vw, 16px);
  }
}

body {
  font-family: var(--f-family-main);
  font-size: var(--f-font-size);
  line-height: var(--f-line-height);
  overflow-wrap: break-word;
  word-break: break-all;
}

img {
  height: auto;
  vertical-align: top;
}

a {
  display: inline-block;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

button {
  transition: 0.3s;
}
button:hover, button:focus {
  opacity: 0.7;
}

p {
  line-height: var(--f-line-height);
  font-size: var(--f-font-size);
}

section {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 3.75rem 0;
}
@media (max-width: 768px) {
  section {
    padding: 1.875rem 0.625rem;
  }
}
section p, section li, section dt, section dd, section h3, section h4 {
  text-align: left;
}
section img {
  width: auto;
  margin: auto;
}
section h2 {
  font-size: var(--f-h2-font-size);
  display: inline-block;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem 1.5rem;
  background: url(../images/bg-titleh2.svg) bottom right no-repeat;
  background-size: 40%;
}
section h2 strong {
  color: var(--c-orange);
}

.l-header {
  height: 3.75rem;
  background-color: var(--c-white);
  padding: 0 1.25rem;
}

.l-header__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}
@media (max-width: 768px) {
  .l-header__container {
    padding-left: 0;
    justify-content: center;
  }
}
.l-header__container .l-header__logo {
  padding: 0.75rem;
  height: 100%;
}
@media (max-width: 768px) {
  .l-header__container .l-header__logo {
    padding: 0.75rem;
  }
}
.l-header__container .l-header__logo img {
  width: auto;
  height: 100%;
}

.c-flex {
  display: flex;
}

.c-en {
  font-family: var(--f-family-en) !important;
}

.txt-center {
  text-align: center;
}

.c-cta {
  padding: 1.25rem 0;
  max-width: var(--pc-max-width2);
  margin: 1.875rem auto 0;
  text-align: center;
}
@media (max-width: 768px) {
  .c-cta {
    margin: 0.625rem auto 0;
  }
}
.c-cta p {
  width: 98%;
  margin: 0 auto 1.875rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.875rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .c-cta p {
    grid-template-columns: 1fr;
  }
}
.c-cta p > img {
  margin: 0 0 0 auto;
  width: 60%;
}
@media (max-width: 768px) {
  .c-cta p > img {
    margin: 0 auto -1.25rem;
    width: 70%;
  }
}
.c-cta a {
  background: var(--c-orange);
  margin: 0;
  padding: 1.5rem 2.25rem 1.5rem 2.25rem;
  position: relative;
  max-width: 30.625rem;
  border-radius: 0.75rem;
  display: flex;
  justify-content: center;
  text-align: left;
  -webkit-box-shadow: 0 4px 0 #D41C1C;
  box-shadow: 0 4px 0 #D41C1C;
  overflow: hidden;
  color: #fff;
}
@media (max-width: 768px) {
  .c-cta a {
    margin: 0 auto 0.625rem;
    width: 92%;
  }
}
.c-cta.c-bottom-cta {
  width: 100%;
  max-width: unset;
  padding: 0.625rem;
  box-shadow: none;
  position: fixed;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  transition: var(--t-all1);
  opacity: 0;
}
@media (max-width: 768px) {
  .c-cta.c-bottom-cta {
    flex-direction: column;
    width: 100%;
  }
}
.c-cta.c-bottom-cta p {
  transform: scale(0.8);
  margin-bottom: 0;
  width: auto;
}
@media (max-width: 768px) {
  .c-cta.c-bottom-cta p {
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .c-cta.c-bottom-cta p > img {
    width: 60%;
    margin-bottom: -1.25rem;
  }
}
@media (max-width: 768px) {
  .c-cta.c-bottom-cta a {
    margin: 0 auto 0;
  }
}
.c-cta.c-bottom-cta.is-scroll {
  opacity: 1;
}

@keyframes shiny-btn3 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes elm {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: 0 2px 0 #db5a0a;
    box-shadow: 0 2px 0 #db5a0a;
  }
  70% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: 0 2px 0 #db5a0a;
    box-shadow: 0 2px 0 #db5a0a;
  }
  80% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  90% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: 0 2px 0 #db5a0a;
    box-shadow: 0 2px 0 #db5a0a;
  }
  100% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.h-title {
  background: var(--c-grade-01);
  padding: 0.625rem 0.625rem 0.625rem 16%;
  color: #fff;
  position: relative;
  text-align: left;
  display: flex;
  border-radius: 0.625rem;
  font-size: var(--f-font-size2);
  margin: auto;
  margin-top: 3.75rem;
  max-width: var(--pc-max-width2);
}
@media (max-width: 768px) {
  .h-title {
    padding: 0.625rem 1.5625rem 0.625rem 24%;
  }
}
.h-title img:first-of-type {
  position: absolute;
  width: 5.3125rem;
  top: -75%;
  left: 2%;
}
@media (max-width: 768px) {
  .h-title img:first-of-type {
    width: 20%;
    bottom: 15%;
    top: unset;
  }
}
.h-title img:nth-of-type(2) {
  width: 24%;
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
}
@media (max-width: 768px) {
  .h-title img:nth-of-type(2) {
    width: 31.5%;
    bottom: 0.625rem;
    right: 0.625rem;
  }
}

.h3-title {
  background: var(--c-base) url(../images/icon-h3.svg) center left no-repeat;
  background-size: 7.5%;
  background-position: left 14px top 9px;
  padding: 0.625rem 0.625rem 0.625rem 11%;
  color: #fff;
  font-size: var(--f-font-size2);
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .h3-title {
    padding: 0.625rem 0.625rem 0.625rem 16%;
    background-position: left 14px top 40%;
    background-size: 9%;
  }
}

.p-worry-text {
  text-align: center;
}

section.p-fv {
  padding: 0;
  overflow: hidden;
  position: relative;
  height: 47vw;
}
@media (max-width: 768px) {
  section.p-fv {
    height: 110vw;
  }
}
section.p-fv > img {
  object-fit: cover;
  margin-top: -4vw;
}
@media (max-width: 768px) {
  section.p-fv > img {
    margin-top: 0;
  }
}
section.p-fv .p-fv-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
}
section.p-fv .p-fv-box p:nth-of-type(1) {
  position: absolute;
  left: 0vw;
  bottom: 13.5vw;
  width: 30vw;
  height: auto;
}
@media (max-width: 768px) {
  section.p-fv .p-fv-box p:nth-of-type(1) {
    bottom: 35.5vw;
    left: 2vw;
    width: 42vw;
  }
}
section.p-fv .p-fv-box p:nth-of-type(2) {
  position: absolute;
  bottom: -2vw;
  left: 0;
  right: 0;
  padding: 1.25rem;
  height: auto;
  width: 48vw;
}
@media (max-width: 768px) {
  section.p-fv .p-fv-box p:nth-of-type(2) {
    bottom: 2vw;
    width: 100vw;
  }
}
section.p-fv .p-fv-box p:nth-of-type(2):after {
  content: "";
  display: block;
  background-color: var(--c-orange);
  transform: rotate(5deg);
  position: absolute;
  bottom: -7vw;
  left: -10vw;
  z-index: -1;
  height: 23vw;
  width: 120vw;
}
@media (max-width: 768px) {
  section.p-fv .p-fv-box p:nth-of-type(2):after {
    width: 120vw;
    bottom: -10vw;
    height: 55vw;
    transform: rotate(-10deg);
  }
}
@media (max-width: 768px) {
  section.p-fv .p-fv-box p:nth-of-type(2) img {
    margin-bottom: -6vw;
  }
}

section.p-reason {
  padding: 2.5rem 2.5rem 8.75rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  section.p-reason {
    padding: 0;
  }
}
@media (max-width: 768px) {
  section.p-reason h2 {
    font-size: 24px;
  }
}
section.p-reason h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: url(../images/bg-h3title.png) right bottom no-repeat;
  background-size: 30%;
  padding: 0 2.5rem 1.25rem;
  font-size: var(--f-font-size2);
}
section.p-reason h3 span {
  width: 6.25rem;
  height: 6.25rem;
  text-indent: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/bg-title-reason.svg) top center no-repeat;
  background-size: contain;
  background-position: top 0.625rem center;
}
@media (max-width: 768px) {
  section.p-reason h3 span {
    margin-top: -1.25rem;
  }
}
section.p-reason .p-reason-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: var(--pc-max-width);
  margin: 0 auto;
}
@media (max-width: 768px) {
  section.p-reason .p-reason-wrapper {
    flex-direction: column;
  }
}
section.p-reason .p-reason-wrapper .p-reason-item {
  width: 48%;
}
@media (max-width: 768px) {
  section.p-reason .p-reason-wrapper .p-reason-item {
    width: 100%;
    padding-bottom: 5rem;
  }
}
section.p-reason .p-reason-wrapper .p-reason-item:first-of-type p:last-of-type:after {
  right: 0;
  left: unset;
}
section.p-reason .p-reason-wrapper .p-reason-item p:first-of-type {
  width: 96%;
  margin: 0 auto 2.5rem;
}
@media (max-width: 768px) {
  section.p-reason .p-reason-wrapper .p-reason-item p:first-of-type {
    width: 90%;
  }
}
section.p-reason .p-reason-wrapper .p-reason-item p:last-of-type {
  position: relative;
}
section.p-reason .p-reason-wrapper .p-reason-item p:last-of-type:after {
  content: "";
  display: block;
  width: 50vw;
  height: 110%;
  background: var(--c-yellow);
  position: absolute;
  top: 5vw;
  z-index: -1;
}
section.p-reason .p-reason-wrapper .p-reason-item p:last-of-type img {
  width: 90%;
}

section.p-program {
  padding: 5rem 2.5rem;
  background: var(--c-yellow2);
}
@media (max-width: 768px) {
  section.p-program {
    padding: 1.875rem 0.625rem 0;
  }
}
section.p-program .p-program-item-header {
  padding: 0 0.625rem 3.75rem;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  section.p-program .p-program-item-header {
    width: 100%;
  }
}
section.p-program .p-program-item-header h3 {
  border-top: 2px solid;
  border-bottom: 2px solid;
  padding: 0.625rem;
  display: inline-block;
  margin: 0 auto 2.5rem;
  font-size: var(--f-font-size3);
}
section.p-program .p-program-item-header p {
  text-align: center;
}
@media (max-width: 768px) {
  section.p-program .p-program-item-header p {
    text-align: left;
  }
}
section.p-program .p-program-wrapper {
  display: grid;
  max-width: var(--pc-max-width);
  margin: 0 auto;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem 2.5rem;
}
@media (max-width: 768px) {
  section.p-program .p-program-wrapper {
    grid-template-columns: 1fr;
  }
}
section.p-program .p-program-wrapper .p-program-item {
  background: #fff;
  border-radius: 2.375rem;
  padding: 4.0625rem 1.5625rem 1.875rem;
  position: relative;
}
section.p-program .p-program-wrapper .p-program-item img {
  width: 75%;
  height: auto;
  margin: 0.625rem auto;
}
section.p-program .p-program-wrapper h3 {
  background: var(--c-yellow);
  border-radius: 2.5rem;
  min-width: 10em;
  width: 60%;
  margin: 2.5rem auto 2.5rem;
  text-align: center;
  display: inline-block;
  padding: 0.625rem 1.875rem;
  position: absolute;
  top: -3.75rem;
  left: 0;
  right: 0;
}
@media (max-width: 768px) {
  section.p-program .p-program-wrapper h3 {
    width: 85%;
  }
}
section.p-program .p-program-wrapper h3 span {
  display: block;
  font-size: var(--f-font5-size);
  transform: rotate(-3.2deg);
}

section.p-voice {
  background: var(--c-yellow2);
}
@media (max-width: 768px) {
  section.p-voice {
    padding: 2.5rem 1.25rem;
  }
}
section.p-voice .p-voice-wrapper {
  margin: 0 auto 0;
  max-width: var(--pc-max-width);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
}
@media (max-width: 768px) {
  section.p-voice .p-voice-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
section.p-voice h3 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
section.p-voice h3 strong {
  color: var(--c-orange);
  display: block;
}
@media (max-width: 768px) {
  section.p-voice h3 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
section.p-voice img {
  margin: 1.25rem auto;
}
@media (max-width: 768px) {
  section.p-voice img {
    max-width: 11.25rem;
    margin: 0.625rem auto;
  }
}

section.p-flow {
  max-width: var(--pc-max-width);
  margin: 0 auto;
}
section.p-flow h3 {
  color: var(--c-orange);
  text-align: center;
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
  padding-top: 8.75rem;
  background: url(../images/icon-flow1.svg) top center no-repeat;
  background-size: 57% !important;
}
@media (max-width: 768px) {
  section.p-flow h3 {
    background-size: 18vw auto !important;
    padding-top: 20vw;
    margin-bottom: 1.25rem;
  }
}
section.p-flow .p-flow-wrapper {
  display: flex;
}
@media (max-width: 768px) {
  section.p-flow .p-flow-wrapper {
    flex-direction: column;
  }
}
section.p-flow .p-flow-wrapper .p-flow-item {
  width: 24%;
  padding: 1.25rem;
}
@media (max-width: 768px) {
  section.p-flow .p-flow-wrapper .p-flow-item {
    width: 100%;
    padding: 0 1.25rem 1.25rem;
  }
}
section.p-flow .p-flow-wrapper .p-flow-item:nth-of-type(2) h3 {
  background: url(../images/icon-flow2.svg) top center no-repeat;
}
section.p-flow .p-flow-wrapper .p-flow-item:nth-of-type(3) h3 {
  background: url(../images/icon-flow3.svg) top center no-repeat;
}
section.p-flow .p-flow-wrapper .p-flow-item:nth-of-type(4) h3 {
  background: url(../images/icon-flow4.svg) top center no-repeat;
}
section.p-flow .p-flow-wrapper .p-flow-item .p-flow-item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  section.p-flow .p-flow-wrapper .p-flow-item .p-flow-item-wrapper {
    display: grid;
    grid-template-columns: 26% 1fr;
    gap: 1.25rem;
  }
}
section.p-flow .p-flow-wrapper .p-flow-item .p-flow-item-wrapper img {
  width: 7.5rem;
  height: auto;
  margin: 0 auto 2.5rem;
}
@media (max-width: 768px) {
  section.p-flow .p-flow-wrapper .p-flow-item .p-flow-item-wrapper img {
    margin: 0;
  }
}

section.p-faq {
  max-width: var(--pc-max-width);
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
}
@media (max-width: 768px) {
  section.p-faq {
    padding: 0 1.25rem;
    width: 96%;
  }
}
section.p-faq h2 {
  display: inline-block;
  border-bottom: 4px solid var(--c-orange);
  padding: 2.5rem 0 0.3125rem;
  background-image: none;
}
@media (max-width: 768px) {
  section.p-faq h2 {
    width: 75%;
    margin-bottom: 0;
  }
}
section.p-faq .p-faq-box {
  margin-top: 0;
  padding: 2.5rem 0;
}
@media (max-width: 768px) {
  section.p-faq .p-faq-box {
    margin-top: 2.5rem;
  }
}
section.p-faq .p-faq-box .p-faq-item {
  margin-bottom: 2.5rem;
  position: relative;
  line-height: 1.5;
}
section.p-faq .p-faq-box .p-faq-item:last-of-type {
  margin-bottom: 0;
}
section.p-faq .p-faq-box .p-faq-item:last-of-type .p-faq_a__item {
  margin-bottom: 0;
}
section.p-faq .p-faq-box .p-faq-item .p-faq_f__item {
  align-items: flex-start;
  margin-bottom: 1.25rem;
  text-align: left;
  position: relative;
  display: flex;
  font-weight: 600;
}
section.p-faq .p-faq-box .p-faq-item .p-faq_f__item:before {
  position: relative;
  top: -0.3125rem;
  content: "Q";
  font-family: var(--f-family-en);
  font-weight: 600;
  color: var(--c-orange);
  background-color: var(--c-yellow2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.625rem;
  width: 1.875rem;
  min-width: 1.875rem;
  height: 1.875rem;
}
section.p-faq .p-faq-box .p-faq-item .p-faq_a__item {
  transition: var(--t-all1);
  margin-bottom: 2.5rem;
  text-align: left;
  display: flex;
  align-items: flex-start;
  position: relative;
  line-height: 1.8;
}
@media (max-width: 768px) {
  section.p-faq .p-faq-box .p-faq-item .p-faq_a__item {
    margin-bottom: 0;
  }
}
section.p-faq .p-faq-box .p-faq-item .p-faq_a__item:before {
  content: "A";
  font-family: var(--f-family-en);
  margin-right: 0.625rem;
  color: var(--c-orange);
  background-color: var(--c-yellow2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 1.875rem;
  min-width: 1.875rem;
  height: 1.875rem;
  font-weight: 600;
}
section.p-faq .p-faq-box .p-faq-item .p-faq_a__item a {
  position: relative;
  z-index: 10;
}
section.p-faq .p-faq-box .p-faq-item .p-faq_a__item a:hover {
  text-decoration: underline;
}

section.p-contact {
  width: 100%;
}
@media (max-width: 768px) {
  section.p-contact {
    padding: 1.25rem;
  }
}
@media (max-width: 768px) {
  section.p-contact h2 {
    width: 90%;
    margin-bottom: 0;
  }
}
section.p-contact h2 strong {
  color: var(--c-orange);
  display: block;
}
section.p-contact p {
  max-width: 43.75rem;
  margin: 1.25rem auto;
  font-size: var(--f-font3-size);
}
section.p-contact iframe {
  width: 700px;
  height: 800px;
}
@media (max-width: 768px) {
  section.p-contact iframe {
    width: 100%;
  }
}

.u-pc-hidden {
  display: none !important;
}
@media (max-width: 768px) {
  .u-pc-hidden {
    display: block !important;
  }
}

.u-sm-hidden {
  display: none;
}
@media (max-width: 450px) {
  .u-sm-hidden {
    display: initial;
  }
}

.u-xl-hidden {
  display: none;
}
@media (max-width: 1200px) {
  .u-xl-hidden {
    display: initial;
  }
}

.u-sp-hidden {
  display: initial;
}
@media (max-width: 768px) {
  .u-sp-hidden {
    display: none !important;
  }
}

.u-space-contact {
  margin-top: 7.5rem;
}
@media (max-width: 768px) {
  .u-space-contact {
    margin-top: 10rem;
  }
}/*# sourceMappingURL=style.css.map */