@charset "UTF-8";
/*==================
　Reset
==================*/
input[type="text"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none; }

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent; }

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

a {
  text-decoration: none;
  color: #fff; }

.header-nav li:hover, .header-nav a:hover {
  color: #ccc;
  transition: .5s; }

/*==================
　Basic
==================*/
body {
  color: #253044;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; }

section {
  max-width: 960px;
  margin: 0 auto 80px;
  padding: 0 20px;
  width: 100%; }
  section .section-title .main {
    display: inline-block;
    font-size: 24px;
    margin: 0 0 24px 0;
    font-family: Avenir Next, sans-serif;
    box-shadow: inset 0 -10px 0 0 #9ac5ff; }
  section .section-title .sub {
    display: block;
    line-height: 48px;
    font-size: 32px; }
  section p {
    line-height: 32px; }

.pp {
  width: calc(100% - 40px); }
  .pp p {
    line-height: 1.8em; }
  .pp h2 {
    margin: 48px 0 0;
    line-height: 1.5em; }
  .pp li {
    line-height: 1.8em; }

/*==================
　Header
==================*/
header {
  color: #fff;
  width: calc(100% - 100px);
  height: 124px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 50px;
  position: relative; }
  header .header-logo {
    width: 22%;
    padding: 0;
    margin: 0;
    left: 0;
    position: absolute; }
  header .header-nav {
    width: 78%;
    display: flex;
    position: absolute;
    right: 0; }
    header .header-nav ul {
      width: 100%;
      display: flex;
      justify-content: flex-end;
      align-items: center; }
    header .header-nav li {
      margin: 0 0 0 0;
      padding: 0 0 0 30px;
      list-style: none; }
    header .header-nav li span {
      display: block;
      text-align: center; }
    header .header-nav li .main {
      font-size: 20px;
      font-weight: bold;
      margin: 0 0 10px 0;
      font-family: Avenir Next, sans-serif; }
    header .header-nav li .sub {
      font-size: 12px; }
  header .header-nav-sp {
    display: none; }
  header .sp-menu {
    background: url("/menu.2b71b4ce.svg") no-repeat;
    width: 48px;
    height: 34px;
    display: none; }

.active-nav {
  color: #aaa; }

.contact-btn-desktop {
  width: 256px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(90.17415deg, #ffb510 19.87891%, #ffb40f 19.87891%, #ff9300 71.28516%);
  font-weight: bold;
  text-align: center;
  color: #fff;
  border-radius: 6px;
  display: inline-block; }
  .contact-btn-desktop:hover {
    background: linear-gradient(90.17415deg, #ff9610 19.87891%, #ff960f 19.87891%, #ff7800 71.28516%);
    cursor: pointer;
    opacity: 1; }

.contact-btn-mobile {
  width: 256px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(90.17415deg, #ffb510 19.87891%, #ffb40f 19.87891%, #ff9300 71.28516%);
  font-weight: bold;
  text-align: center;
  color: #fff;
  border-radius: 6px;
  display: none; }

/*==================
　Cover
==================*/
.cover {
  color: #fff;
  min-height: 270px;
  width: 100%;
  height: 100vh;
  margin: -124px 0 0;
  z-index: -1;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(to bottom, #1e53e6, #031d65) fixed, url("/bg.e79a717b.png") no-repeat;
  background-blend-mode: hard-light;
  background-position: center;
  background-size: cover; }

.cover-text {
  padding: 0 0 0 50px; }

.main-text {
  font-size: 105px;
  margin: 0 0 20px 0;
  font-family: 'Avenir Next',sans-serif;
  font-weight: 600; }

.sub-text-desktop {
  font-size: 28px;
  font-weight: 500;
  display: block; }

.sub-text-mobile {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5em;
  display: none; }

.scroll a {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(-50%);
  transform: translateX(-50%);
  text-decoration: none;
  padding-top: 80px;
  color: #fff;
  font-family: Avenir Next, sans-serif; }

.scroll a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  opacity: 0;
  box-sizing: border-box; }

.scroll a span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s; }

.scroll a span:nth-of-type(2) {
  top: 16px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s; }

.scroll a span:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s; }

@-webkit-keyframes sdb {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes sdb {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*==================
　Mission
==================*/
.mission {
  width: calc(100% - 40px);
  height: auto;
  display: flex;
  margin-top: 40px; }
  .mission .mission-left {
    width: 50%;
    padding: 0 40px 0 0; }
  .mission .mission-right {
    width: 50%; }
  .mission .mission-right img {
    width: 100%; }

/*==================
　Concept
==================*/
.concept {
  width: calc(100% - 40px);
  height: auto;
  display: flex;
  margin-top: 40px; }
  .concept .concept-left {
    width: 45%;
    padding: 0 40px 0 0; }
  .concept .concept-left img {
    width: 100%; }
  .concept .concept-right {
    width: 55%; }

/*==================
　Service
==================*/
.service {
  width: calc(100% - 40px);
  height: auto;
  padding: 0 -60px 0 0; }
  .service .service-inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between; }
  .service .service-img {
    width: 49%;
    padding: 0 0 40px 0; }
    .service .service-img img {
      width: 100%;
      height: auto;
      border-radius: 8px; }
  .service .service-caption-title {
    font-size: 20px; }
  .service .service-caption-copy {
    width: 100%;
    font-size: 16px;
    line-height: 28px; }

/*==================
　Form
==================*/
.form {
  width: calc(100% - 40px);
  height: auto; }
  .form .form-inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between; }
  .form .form-notice {
    text-align: center;
    font-size: 14px;
    color: #253044;
    margin: 0 auto 30px;
    line-height: 1.7em; }
    .form .form-notice a {
      color: #253044;
      text-decoration: underline; }
  .form .form-wrap {
    margin: 40px 0 0; }
  .form label {
    display: table-cell;
    font-size: 16px;
    font-weight: bold;
    padding: 0 0 14px 0; }
    .form label span {
      color: #fff;
      background: #DD2828;
      font-size: 10px;
      font-weight: normal;
      padding: 4px 4px;
      border-radius: 2px;
      margin: 0 0 0 8px;
      vertical-align: 2px; }
  .form .form-check {
    text-align: center;
    padding: 20px 0 20px 0;
    font-size: 14px;
    margin: 0 auto;
    display: flex;
    justify-content: center; }
    .form .form-check input[type=checkbox] {
      margin: 0 10px 0 0;
      font-size: 20px;
      cursor: pointer; }
    .form .form-check label {
      font-size: 14px;
      font-weight: normal;
      cursor: pointer; }
    .form .form-check a {
      color: #253044;
      text-decoration: underline; }
  .form .form-input {
    margin: 0 0 32px 0;
    width: 49%; }
    .form .form-input input[type="text"] {
      width: calc(100% - 22px);
      padding: 16px 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      outline: none;
      background: none; }
  .form .form-textarea {
    margin: 0 0 32px 0;
    width: 100%; }
    .form .form-textarea textarea {
      width: calc(100% - 20px);
      border: 1px solid #ccc;
      border-radius: 6px;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      resize: none;
      padding: 8px;
      outline: none;
      background: transparent; }

.submit {
  margin: 0 auto;
  text-align: center; }
  .submit .submit-btn {
    width: 256px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(90.17415deg, #ffb510 19.87891%, #ffb40f 19.87891%, #ff9300 71.28516%);
    text-align: center;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
    border: 0; }
    .submit .submit-btn:hover {
      background: linear-gradient(90.17415deg, #ff9610 19.87891%, #ff960f 19.87891%, #ff7800 71.28516%);
      cursor: pointer; }

/*==================
　Footer
==================*/
footer {
  max-width: 100%;
  height: auto;
  background: #DEE1E8;
  padding: 48px 0 20px; }
  footer .copyright {
    display: block;
    margin: 40px auto 0;
    text-align: center; }
  footer .footer-inner {
    max-width: 960px;
    display: flex;
    margin: 0 auto;
    justify-content: space-between; }
    footer .footer-inner a {
      text-decoration: none;
      color: #253044; }
    footer .footer-inner a:hover {
      color: #aaa;
      transition: .5s; }
    footer .footer-inner img {
      margin: 0 0 32px 0; }
    footer .footer-inner .name {
      font-size: 16px;
      font-weight: bold;
      margin: 0 0 10px 0; }
    footer .footer-inner .info {
      font-size: 14px;
      margin: 0 0 12px 0;
      line-height: 1.75em; }
    footer .footer-inner .right {
      display: flex;
      font-size: 21px;
      font-family: 'Avenir Next',sans-serif;
      font-weight: 600; }
      footer .footer-inner .right .menu {
        margin: 0 0 18px 0; }
      footer .footer-inner .right .column-left {
        margin: 0 80px 0 0; }
      footer .footer-inner .right .caption {
        margin: 0 0 18px 0;
        font-size: 12px; }

/*======================================
        ========================================
        ========================================
        ========================================
        ========================================
        =======================================*/
@media screen and (max-width: 930px) {
  body {
    font-size: 16px; }
  section {
    margin: 0 auto 40px; }
    section .section-title .sub {
      display: block;
      line-height: 40px;
      font-size: 24px; }
  .cover {
    color: #fff;
    height: 100vh;
    margin: -124px 0 0 0;
    z-index: -1;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(to bottom, #1e53e6, #031d65) fixed, url("/bg.e79a717b.png") no-repeat;
    background-blend-mode: hard-light;
    background-position: center bottom;
    background-size: cover; }
  .cover-text {
    width: 100%;
    padding: 0 40px 0; }
  .main-text {
    font-size: 80px;
    margin: 100px 0 20px 0;
    font-family: 'Avenir Next',sans-serif;
    font-weight: 600; }
  .sub-text-desktop {
    font-size: 24px;
    font-weight: 500;
    display: block;
    margin: 0 0 100px 0; }
  .sub-text-mobile {
    font-size: 28px;
    font-weight: 500;
    display: none; }
  /*==================
          　Header
          ==================*/
  header {
    color: #fff;
    width: calc(100% - 80px);
    height: 124px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 40px; }
    header .header-nav ul {
      width: 100%;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 0; }
    header .header-nav li {
      margin: 0 0 0 0;
      padding: 0 0 0 30px;
      list-style: none; }
    header .header-nav li:hover {
      opacity: .6;
      cursor: pointer;
      transition: .5s; }
    header .header-nav li span {
      display: block;
      text-align: center; }
    header .header-nav li .main {
      font-size: 20px;
      font-weight: bold;
      margin: 0 0 10px 0;
      font-family: Avenir Next, sans-serif; }
    header .header-nav li .sub {
      font-size: 12px; }
    header .header-nav-sp {
      display: none; }
    header .sp-menu {
      background: url("/menu.2b71b4ce.svg") no-repeat;
      width: 48px;
      height: 34px;
      display: none; }
  .contact-btn-desktop {
    width: 140px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(90.17415deg, #ffb510 19.87891%, #ffb40f 19.87891%, #ff9300 71.28516%);
    font-weight: bold;
    text-align: center;
    color: #fff;
    border-radius: 6px;
    display: inline-block; }
    .contact-btn-desktop:hover {
      background: linear-gradient(90.17415deg, #ff9610 19.87891%, #ff960f 19.87891%, #ff7800 71.28516%);
      cursor: pointer;
      opacity: 1; }
  .contact-btn-mobile {
    width: 256px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(90.17415deg, #ffb510 19.87891%, #ffb40f 19.87891%, #ff9300 71.28516%);
    font-weight: bold;
    text-align: center;
    color: #fff;
    border-radius: 6px;
    display: none; }
  /*==================
          　Mission
          ==================*/
  .mission {
    width: calc(100% - 80px);
    height: auto;
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap; }
    .mission .mission-left {
      width: 100%;
      padding: 0 0 0 0; }
    .mission .mission-right {
      width: 100%;
      text-align: center; }
    .mission .mission-right img {
      width: 70%; }
  /*==================
          　Concept
          ==================*/
  .concept {
    width: calc(100% - 80px);
    height: auto;
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap; }
    .concept .concept-left {
      width: 100%;
      padding: 40px 40px 0;
      text-align: center;
      order: 2; }
    .concept .concept-left img {
      width: 70%; }
    .concept .concept-right {
      width: 100%;
      order: 1; }
  /*==================
          　Service
          ==================*/
  .service {
    width: calc(100% - 80px);
    height: auto;
    padding: 0 -60px 0 0; }
  /*==================
          　Form
          ==================*/
  .form {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 80px);
    padding: 0 20px 0; }
  .form-wrap {
    width: 100%; }
  .form-input, .form-textarea {
    margin: 0 0 32px 0;
    width: 100%; }
    .form-input input[type="text"], .form-textarea input[type="text"] {
      width: calc(100% - 20px);
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 6px;
      outline: none;
      background: none; }
    .form-input textarea, .form-textarea textarea {
      width: calc(100% - 20px);
      border: 1px solid #ccc;
      border-radius: 6px;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      resize: none;
      padding: 8px;
      outline: none;
      background: transparent; }
  .submit {
    width: 100%; }
    .submit .submit-btn {
      width: 100%;
      max-width: 480px;
      height: 60px;
      line-height: 60px;
      background: linear-gradient(90.17415deg, #ffb510 19.87891%, #ffb40f 19.87891%, #ff9300 71.28516%);
      text-align: center;
      color: #fff;
      font-weight: bold;
      border-radius: 50px;
      display: inline-block;
      margin: 0 auto 48px; }
  /*==================
          　Footer
          ==================*/
  footer {
    width: 100%;
    background: #DEE1E8;
    padding: 48px 0 60px;
    line-height: 1.3em; }
    footer .footer-inner {
      width: calc(100% - 80px);
      display: flex;
      margin: 0 auto;
      justify-content: space-between; }
    footer .left {
      padding: 0 80px 0 0; }
  .scroll a {
    position: absolute;
    bottom: 30px;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(-50%);
    transform: translateX(-50%);
    text-decoration: none;
    padding-top: 80px;
    color: #fff; } }

/*======================================
                        ========================================
                        ========================================
                        ========================================
                        ========================================
                        =======================================*/
@media screen and (max-width: 480px) {
  .main-text {
    font-size: 54px;
    margin: 0 0 20px 0;
    font-family: 'Avenir Next',sans-serif;
    font-weight: 600; }
  .sub-text-desktop {
    font-size: 28px;
    font-weight: 500;
    display: none; }
  .sub-text-mobile {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5em;
    display: block;
    margin: 0 0 40px 0; }
  .scroll a {
    display: none; }
  /*==================
                          　Header
                          ==================*/
  header {
    color: #fff;
    width: calc(100% - 40px);
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 20px; }
    header .header-logo {
      width: 22%;
      padding: 0;
      margin: 8px 0 0; }
    header .sp-menu {
      background: url("/menu.2b71b4ce.svg") no-repeat;
      width: 40px;
      height: 40px;
      display: block;
      position: absolute;
      top: 20px;
      right: 0;
      z-index: 999; }
    header .header-nav {
      display: none; }
    header .header-nav-sp {
      display: none; }
  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer; }
  .nav-open .black-bg {
    opacity: .8;
    visibility: visible; }
  .nav-open .header-nav-sp {
    display: table;
    visibility: visible;
    z-index: 999;
    transition-delay: 6s;
    font-size: 24px;
    line-height: 2.5em;
    font-weight: bold;
    width: 100%;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100); 
    margin: auto; }
    .nav-open .header-nav-sp ul {
      display: table-cell;
      vertical-align: middle; }
    .nav-open .header-nav-sp ul li {
      list-style-type: none; }
    .nav-open .header-nav-sp ul li .sub {
      display: block;
      font-size: 16px;
      margin: -30px 0 0; }
  .nav-open .sp-menu {
    background: url("/close.4440cd52.svg") no-repeat;
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 999; }
  .cover {
    color: #fff;
    height: 100vh;
    margin: -80px 0 0 0;
    z-index: -1;
    display: flex;
    align-items: center;
    position: unset;
    background: linear-gradient(to bottom, #1e53e6, #031d65) fixed, url("/bg.e79a717b.png") no-repeat;
    background-blend-mode: hard-light;
    background-position: center bottom;
    background-size: cover; }
  .cover-text {
    padding: 40px 20px 0; }
  .contact-btn {
    width: 140px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(90.17415deg, #ffb510 19.87891%, #ffb40f 19.87891%, #ff9300 71.28516%);
    text-align: center;
    color: #fff;
    border-radius: 6px;
    display: none; }
  .contact-btn-mobile {
    width: 100%;
    max-width: 480px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(90.17415deg, #ffb510 19.87891%, #ffb40f 19.87891%, #ff9300 71.28516%);
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    display: block;
    margin: 0 auto; }
  /*==================
                          　Mission
                          ==================*/
  .mission {
    width: calc(100% - 40px);
    height: auto;
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap; }
    .mission .mission-left {
      width: 100%;
      padding: 0 0 0 0; }
    .mission .mission-right {
      width: 100%;
      text-align: center; }
    .mission .mission-right img {
      width: 100%; }
  /*==================
                          　Concept
                          ==================*/
  .concept {
    width: calc(100% - 40px);
    height: auto;
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap; }
    .concept .concept-left {
      width: 100%;
      padding: 40px 20px 0;
      text-align: center;
      order: 2; }
    .concept .concept-left img {
      width: 100%; }
    .concept .concept-right {
      width: 100%;
      order: 1; }
  /*==================
                          　Service
                          ==================*/
  .service {
    width: calc(100% - 40px);
    height: auto;
    padding: 0 -60px 0 0; }
    .service .service-inner {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      justify-content: space-between; }
    .service .service-img {
      width: 100%;
      padding: 0 0 40px 0; }
      .service .service-img img {
        width: 100%;
        height: auto;
        border-radius: 8px; }
    .service .service-caption-title {
      font-size: 20px; }
    .service .service-caption-copy {
      width: 100%;
      font-size: 16px;
      line-height: 28px; }
    .service .service-img:last-child {
      width: 100%;
      padding: 0 0 0 0; }
  /*==================
                          　Form
                          ==================*/
  .form {
    width: calc(100% - 40px);
    height: auto; }
    .form .form-inner {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      justify-content: space-between; }
    .form p {
      margin: -10px 0 0; }
    .form label {
      display: table-cell;
      font-size: 16px;
      font-weight: bold;
      padding: 0 0 14px 0; }
      .form label span {
        color: #fff;
        background: #DD2828;
        font-size: 10px;
        font-weight: normal;
        padding: 4px 4px;
        border-radius: 2px;
        margin: 0 0 0 8px;
        vertical-align: 2px; }
    .form .form-input {
      margin: 0 0 32px 0;
      width: 100%; }
      .form .form-input input[type="text"] {
        width: calc(100% - 22px);
        padding: 16px 10px;
        border: 1px solid #ccc;
        border-radius: 6px;
        outline: none;
        background: none; }
    .form .form-textarea {
      margin: 0 0 32px 0;
      width: 100%; }
      .form .form-textarea textarea {
        width: calc(100% - 20px);
        border: 1px solid #ccc;
        border-radius: 6px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        resize: none;
        padding: 8px;
        outline: none;
        background: transparent; }
  /*==================
                          　Footer
                          ==================*/
  footer {
    max-width: 100%;
    height: auto;
    background: #DEE1E8;
    padding: 48px 0 60px; }
    footer .footer-inner {
      width: calc(100% - 40px);
      display: flex;
      flex-wrap: wrap;
      margin: 0 auto;
      padding: 0 20px;
      justify-content: space-between; }
      footer .footer-inner img {
        margin: 20px 0 32px 0; }
      footer .footer-inner .name {
        font-size: 16px;
        font-weight: bold;
        margin: 0 0 10px 0; }
      footer .footer-inner .info {
        font-size: 14px;
        margin: 0 0 12px 0; }
      footer .footer-inner .left {
        padding: 0 0 0 0;
        order: 2; }
      footer .footer-inner .right {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        font-size: 21px;
        font-family: 'Avenir Next',sans-serif;
        font-weight: 600;
        order: 1; }
        footer .footer-inner .right .menu {
          margin: 0 0 18px 0; }
        footer .footer-inner .right .column-left {
          width: 100%;
          margin: 0 80px 0 0; }
        footer .footer-inner .right .caption {
          margin: 0 0 18px 0;
          font-size: 12px; } }

/*======================================
                                                  ========================================
                                                  ========================================
                                                  ========================================
                                                  ========================================
                                                  =======================================*/
@media screen and (max-width: 320px) {
  .main-text {
    font-size: 46px;
    margin: 0 0 20px 0;
    font-family: 'Avenir Next',sans-serif;
    font-weight: 600; }
  .sub-text-desktop {
    font-size: 28px;
    font-weight: 500;
    display: none; }
  .sub-text-mobile {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5em;
    display: block; }
  .scroll a {
    display: none; } }


/*# sourceMappingURL=/main.77bb5cfd.css.map */