@charset "UTF-8";
/*============================================================
common
==============================================================*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  color: #222;
  /*読み込み時ふわっと表示させる*/
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: auto;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
a:link, a:visited, a:active {
  color: #222;
}

.sp {
  display: inherit;
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media (min-width: 769px) {
  .pc {
    display: inherit;
  }
}

.en {
  font-family: "Montserrat", sans-serif;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.inner {
  width: 100%;
  margin: auto;
  padding: 0 20px;
}
@media (min-width: 769px) {
  .inner {
    width: 90%;
    max-width: 1040px;
  }
}

.sec {
  padding: 40px 0;
}

.flex-wrap {
  display: flex;
  justify-content: normal;
  align-items: normal;
  flex-wrap: wrap;
}

.flex-wrap-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.flex-wrap-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.flex-wrap-middle {
  display: flex;
  justify-content: center;
  align-items: normal;
  flex-wrap: wrap;
}

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

.head-ttl {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
.head-ttl .en {
  display: block;
  font-size: 3.125rem;
  color: #2d62eb;
  opacity: 0.1;
  margin-bottom: -0.5em;
}

.head-ttl-logo {
  display: inline;
  vertical-align: bottom;
  width: 160px;
  height: 48px;
  margin-right: 4px;
}

.btn-block {
  width: 100%;
}

.btn {
  display: inline-block;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  background-image: linear-gradient(90deg, #f99116 0, #f97316 100%);
  background-clip: padding-box;
  border-radius: 100vh;
  padding: 18px 60px;
  transition: all 0.3s ease-in-out 0s;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  bottom: auto;
  left: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -4px;
}
.btn:link, .btn:visited, .btn:active {
  color: #fff;
}
.btn:hover {
  opacity: 0.5;
}
@media (min-width: 769px) {
  .btn {
    width: 320px;
    padding: 18px 50px;
  }
}

.btn-download {
  background-color: #fff;
  background-image: none;
  color: #f97316;
  outline: solid 2px #f97316;
  outline-offset: -2px;
}
.btn-download::after {
  border-top: 2px solid #f97316;
  border-right: 2px solid #f97316;
}
.btn-download:link, .btn-download:visited, .btn-download:active {
  color: #f97316;
}
.btn-download span {
  background-color: #f97316;
  color: #fff;
  font-size: 0.8125rem;
  padding: 0 8px;
  margin-right: 5px;
  border-radius: 100vh;
}

.btn-header::after {
  display: none;
}

@media (min-width: 769px) {
  .sec {
    padding: 70px 0;
  }
  .btn-block {
    width: auto;
  }
  .head-ttl {
    font-size: 2.25rem;
  }
  .head-ttl .en {
    font-size: 7.5rem;
  }
  .head-ttl-logo {
    vertical-align: text-top;
  }
}
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.header-logo img {
  width: 113px;
  height: 34px;
}

.navi .link a:link, .navi .link a:visited, .navi .link a:active {
  color: #222;
}
.navi .btn {
  padding: 12px 20px 12px 20px;
}

#pc-navi ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

#sp-navi {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.3s;
}
#sp-navi ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sp-navi li {
  list-style: none;
  text-align: center;
}
#sp-navi li a {
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#sp-navi li .btn {
  width: 280px;
  padding: 12px 20px 12px 20px;
  margin-top: 10px;
}
#sp-navi li .btn::after {
  right: 20px;
  margin-top: -13px;
}

#sp-navi.panelactive {
  opacity: 1;
  z-index: 999;
}

#sp-navi.panelactive ul {
  display: block;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #2d62eb;
  border-radius: 0 0 4px 4px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media (min-width: 769px) {
  header {
    position: fixed;
    z-index: 100;
  }
  .header-inner {
    height: 70px;
    padding: 0 20px;
  }
  .header-logo img {
    zoom: 1;
  }
  #pc-navi ul {
    font-size: 1.300390117vw;
  }
  #pc-navi ul li {
    margin: 0 5px;
  }
  #pc-navi ul .link {
    margin: 0 15px;
  }
  .navi .btn {
    width: auto;
    font-size: 1.300390117vw;
  }
}
@media (min-width: 1040px) {
  #pc-navi ul {
    font-size: 0.875rem;
  }
  .navi .btn {
    font-size: 0.875rem;
  }
}
#kv {
  position: relative;
  background: url(../img/kv-bg.jpg) no-repeat top center/cover;
  padding: 30px 0;
  margin-top: 54px;
  z-index: 1;
}
#kv .inner {
  position: relative;
  max-width: 1200px;
}
#kv h1 {
  color: #fff;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.2;
}
#kv h1 span {
  color: #facc15;
}
#kv .subtxt {
  color: #fff;
  font-size: 0.8125rem;
  margin: 20px 0;
}
#kv .btn-wrap {
  display: flex;
  justify-content: normal;
  align-items: end;
  gap: 10px;
}
#kv .btn-lead {
  text-align: center;
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 0.5em;
}

.kv-img {
  width: 240px;
  height: auto;
  margin: 0 auto 20px;
}

.kv-medal-list {
  display: flex;
  justify-content: normal;
  align-items: normal;
  gap: 5px;
  margin-bottom: 30px;
}
.kv-medal-list li img {
  height: 50px;
}

@media (min-width: 769px) {
  #kv {
    padding: 70px 0;
    margin-top: 70px;
  }
  #kv h1 {
    font-size: 4.125rem;
  }
  #kv .subtxt {
    font-size: 1.375rem;
  }
  .kv-medal-list {
    gap: 10px;
  }
  .kv-medal-list li img {
    height: 84px;
  }
  .kv-img {
    position: absolute;
    top: 0;
    right: -4%;
    width: 444px;
    height: 504px;
    margin: 0;
    z-index: -1;
  }
}
#logos {
  padding: 30px 0 0;
}
#logos .head-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.25rem;
}

#case .head-ttl .en {
  margin-bottom: -0.65em;
}
#case .subtxt {
  display: block;
  font-size: 1rem;
}

.case-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.case-list li h3 {
  display: inline-block;
  background-color: #2d62eb;
  color: #fff;
  padding: 5px 20px;
  border-radius: 10px 10px 0 0;
}

.case-box {
  border: solid 2px #2d62eb;
  padding: 30px;
  border-radius: 0 5px 5px 5px;
  height: 95%;
}

.case-box-inner {
  display: flex;
  justify-content: normal;
  align-items: center;
  margin-bottom: 30px;
}

.case-img {
  width: 120px;
  height: 120px;
  margin-right: 10px;
}

.case-name {
  font-weight: 700;
  margin-bottom: 0.5em;
}

.case-info {
  font-size: 0.875rem;
}
.case-info span {
  font-weight: 700;
}

.case-logo {
  display: inline;
  vertical-align: bottom;
  width: 94px;
  height: 28px;
  margin: 0 4px;
}

.case-before {
  background-color: #f5f5f5;
  padding: 20px 0 20px 24px;
  border-radius: 5px;
}
.case-before h4 {
  font-size: 1.125rem;
  color: #2d62eb;
  margin-bottom: 0.5em;
}
.case-before p {
  font-size: 0.9375rem;
  margin-bottom: 5px;
}
.case-before .strong {
  font-weight: 700;
}

.case-arr {
  position: relative;
  text-align: center;
  font-weight: 700;
  margin: 10px 0 20px;
}
.case-arr::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  width: 17px;
  height: 10px;
  background-image: url(../img/icon-arr2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.case-after {
  background-color: #fef5d0;
  padding: 20px 30px;
  border-radius: 5px;
}
.case-after h4 {
  font-size: 1.125rem;
  color: #f97316;
  margin-bottom: 0.5em;
}
.case-after p {
  font-weight: 700;
  line-height: 1.2;
  padding: 6px 0 6px 32px;
  background: url(../img/icon-check.svg) no-repeat left center/28px;
}
.case-after .strong {
  font-size: 1.25rem;
  color: #f97316;
}

@media (min-width: 769px) {
  .case-list {
    display: flex;
    justify-content: stretch;
    align-items: normal;
  }
  .case-list li {
    width: 48%;
  }
}
.cta {
  background: url(../img/cta-bg.jpg) no-repeat top center/cover;
  padding: 60px 0;
}
.cta .head-ttl {
  color: #fff;
  font-size: 1.75rem;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  padding: 0 0 30px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}
.cta-box p {
  text-align: center;
  margin: 10px 0;
}
.cta-box figure {
  margin: 0 0 15px;
}

.cta-box-ttl {
  width: 100%;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  background-color: #fce58a;
  padding: 0.8em 0;
  border-radius: 5px 5px 0 0;
}

.cta-box-contact-ttl {
  background-color: #fcb98a;
}

.cta-logo {
  display: inline;
  width: 94px;
  height: 28px;
  margin: 0 4px;
}

@media (min-width: 769px) {
  .cta-wrap {
    display: flex;
    justify-content: space-between;
    align-items: normal;
  }
  .cta-box {
    width: 48%;
  }
}
#about .txt h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
#about .flex-wrap-center {
  flex-direction: column-reverse;
}
#about .flex-wrap-center figure {
  margin-top: 20px;
}
#about .flex-wrap-center figure img {
  width: 80%;
}

.scout {
  background-color: #f5f5f5;
  margin-top: 60px;
}
.scout h3 {
  text-align: center;
  color: #2d62eb;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.scout h3 span {
  border-bottom: solid 2px #2d62eb;
}
.scout .intro {
  text-align: center;
  font-weight: 700;
}

.scout-list {
  gap: 40px;
  margin: 50px 0 70px;
}
.scout-list li {
  position: relative;
  width: 100%;
  text-align: center;
  background-color: #fff;
  padding-bottom: 10px;
  border-radius: 5px;
}
.scout-list li::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 0;
  left: 0;
  width: 30px;
  height: 18px;
  background-image: url(../img/icon-arr2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
}
.scout-list li:first-child {
  padding-bottom: 0;
}
.scout-list li:last-child::after {
  display: none;
}
.scout-list li h4 {
  background-color: #2d62eb;
  color: #fff;
  padding: 0.6em 0;
  border-radius: 5px 5px 0 0;
}
.scout-list li p {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 1em 0;
}
.scout-list .txt-right {
  text-align: right;
  margin-right: 30px;
}

.scout-sample-ttl {
  position: relative;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 60px;
}
.scout-sample-ttl::after {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -20px;
  border-bottom: solid 2px #2d62eb;
  width: 30px;
}

.scout-pr-box, .scout-ai-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}
.scout-pr-box h5, .scout-ai-box h5 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1em;
}
.scout-pr-box p, .scout-ai-box p {
  line-height: 1.8;
}

.scout-pr-box {
  position: relative;
  margin-bottom: 90px;
}
.scout-pr-box::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 0;
  right: 0;
  width: 100px;
  height: 50px;
  background-image: url(../img/icon-arr2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.scout-ai-box {
  border: solid 2px #2d62eb;
}
.scout-ai-box h5 {
  padding-bottom: 1em;
  border-bottom: solid 1px #2d62eb;
}
.scout-ai-box h5 span {
  display: block;
  color: #2d62eb;
  font-size: 0.875rem;
}

.maker-blue {
  background-color: #eff2fd;
  color: #2d62eb;
  font-weight: 700;
}

@media (min-width: 769px) {
  #about .txt {
    width: 51%;
    margin-left: 40px;
  }
  #about .txt h3 {
    margin-top: 0;
  }
  #about .flex-wrap-center {
    flex-direction: row;
  }
  #about .flex-wrap-center figure {
    margin-top: 0;
  }
  #about .flex-wrap-center figure img {
    width: 100%;
  }
  .scout h3 {
    font-size: 2.25rem;
  }
  .scout-list li {
    width: 22%;
    max-width: 220px;
    padding-bottom: 0;
  }
  .scout-list li::after {
    top: 50%;
    left: auto;
    right: -36px;
    width: 30px;
    height: 18px;
    transform: rotate(-90deg);
  }
  .scout-pr-box, .scout-ai-box {
    padding: 40px 50px;
  }
}
.point-list li {
  margin: 0 0 40px;
}
.point-list li h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.point-list li h3 span {
  display: block;
  font-size: 5rem;
  color: #eff2fd;
  margin-bottom: -0.5em;
}
.point-list .desc {
  line-height: 1.8;
}

@media (min-width: 769px) {
  .point-list li h3 {
    font-size: 1.75rem;
  }
  .point-list li .txt {
    width: 48%;
    margin-right: 40px;
    margin-bottom: 0;
  }
}
#flow .intro {
  font-size: 1.25rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}
#flow .maker {
  background: linear-gradient(transparent 60%, #facc15 60%);
}

.flow-item {
  position: relative;
  margin: 0 50px 50px;
}
.flow-item::after {
  content: "";
  position: absolute;
  bottom: -31px;
  left: 0;
  right: 0;
  width: 31px;
  height: 16px;
  background-image: url("../img/icon-arr.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(90deg);
  margin: 0 auto;
}
.flow-item:last-child::after {
  display: none;
}
.flow-item p {
  text-align: center;
  font-weight: 700;
  margin-top: 0.2em;
}

@media (min-width: 769px) {
  .flow-item {
    margin: 0 50px;
  }
  .flow-item::after {
    content: "";
    top: 40%;
    left: auto;
    bottom: auto;
    right: -62px;
    width: 31px;
    height: 16px;
    transform: rotate(0deg);
  }
}
#faq {
  background-color: #f5f5f5;
}

.faq-box {
  width: 96%;
  max-width: 800px;
  margin: 60px auto 0;
}

.accordion {
  margin-bottom: 15px;
}

.toggle {
  display: none;
}

.accordion-ttl {
  display: block;
  position: relative;
  text-align: left;
  color: #2d62eb;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4rem;
  background: #fff;
  padding: 10px 50px 10px 10px;
  cursor: pointer;
  transition-duration: 0.2s;
  border-radius: 5px;
}
.accordion-ttl p {
  display: flex;
  align-items: center;
}
.accordion-ttl span {
  display: inline-block;
  text-align: center;
  color: #2d62eb;
  font-size: 2.625rem;
  line-height: 4rem;
  font-family: "Montserrat", sans-serif;
  margin-right: 20px;
}
.accordion-ttl::before, .accordion-ttl::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #2d62eb;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}
.accordion-ttl::before {
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.accordion-ttl,
.accordion-txt {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.accordion-txt {
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}
.accordion-txt .answer {
  display: inline-block;
  text-align: center;
  color: #f97316;
  font-size: 2.625rem;
  font-family: "Montserrat", sans-serif;
  margin-right: 20px;
  margin-top: 10px;
}
.accordion-txt p {
  display: flex;
  align-items: center;
}

.toggle:checked + .accordion-ttl + .accordion-txt {
  height: auto;
  padding: 20px;
  transition: all 0.3s;
}

.toggle:checked + .accordion-ttl::before {
  transform: translateY(-50%) rotate(0);
}

@media (min-width: 769px) {
  .accordion-ttl {
    font-size: 1.125rem;
    padding: 0 66px 0 15px;
  }
  .accordion-txt {
    font-size: 1rem;
  }
}
#company {
  padding: 60px 0;
}
#company .flex-wrap-center {
  gap: 20px;
}
#company .name, #company .add {
  font-size: 0.875rem;
}
#company .name {
  font-weight: 700;
}

@media (min-width: 769px) {
  #company figure {
    margin-right: 10px;
  }
}
/*============================================================
form
==============================================================*/
#form {
  background: url(../img/contact-bg.jpg) no-repeat top center/cover;
}
#form .head-ttl {
  color: #fff;
}
#form .head-ttl .en {
  color: #fff;
}

.download {
  margin-top: 50px;
}
.download .intro, .download .caution {
  text-align: center;
  color: #fff;
}
.download .caution {
  font-size: 0.75rem;
  margin: 20px 0;
}

.form-box {
  max-width: 800px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px 20px;
  margin: 0 auto;
}

.download-box {
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: normal;
  flex-wrap: wrap;
  gap: 40px;
}

.download-txt {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 5px;
}
.download-txt h3 {
  font-weight: 700;
  margin-bottom: 0.5em;
}

.contact-group {
  margin-bottom: 20px;
}
.contact-group textarea {
  height: 100px;
}

.contact-label {
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-req, .contact-any {
  font-size: 0.625rem;
  padding: 2px 9px 3px;
  border-radius: 100vh;
  margin-left: 8px;
}

.contact-req {
  color: #fff;
  background: #2d62eb;
}

.contact-any {
  color: #222;
  background: #ececec;
}

.contact-note {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 6px;
  margin-left: 2px;
}

.contact-input {
  width: 100%;
  height: 40px;
  background: #fff;
  padding: 8px 16px 8px;
  border: 1px solid #cfd0cc;
  border-radius: 5px;
}

.agree {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 30px auto;
}
.agree a {
  text-decoration: underline;
}
.agree a:link, .agree a:visited, .agree a:active {
  color: #222;
}

.contact-action {
  text-align: center;
}

.contact-btn {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  width: auto;
  border: none;
}
.contact-btn:hover {
  transition: all 0.2s ease-in-out 0s;
  opacity: 0.5;
}

h6.error {
  color: #ff753b;
}

.form-box input[type=text].error, .form-box input[type=email].error, .form-box select.error {
  background: #FCE6E6 !important;
  border: solid 1px #ff753b;
}

@media (min-width: 769px) {
  .download {
    margin-top: 70px;
  }
  .form-box {
    padding: 40px 100px 20px;
  }
  .download-form {
    width: 50%;
  }
  .contact-note {
    display: inline;
    font-size: 0.875rem;
    margin-left: 16px;
  }
}
#thanks {
  margin-top: 70px;
}
#thanks .txt-box {
  text-align: center;
  margin: 40px 0;
}
#thanks .btn-wrap {
  margin-top: 50px;
}

footer {
  font-size: 0.625rem;
  color: #fff;
  background: #222;
  text-align: center;
  padding: 40px 0;
}/*# sourceMappingURL=style.css.map */