@charset "UTF-8";
html {
  scroll-padding-top: 20px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 40px;
  }
}

body {
  font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  background: #000;
  color: #FFF;
  font-weight: 700;
  line-height: 1;
  background-image: url("../img/bg.svg");
  background-size: cover;
  background-repeat: repeat-y;
}
@media screen and (max-width: 768px) {
  body {
    background-image: initial;
  }
}

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

.nowrap {
  white-space: nowrap;
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
/* header nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
  z-index: 10;
}

.header-wrapper {
  position: relative;
  z-index: 2;
}
.header__content {
  background-color: #fff;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
  padding: 21px 24px;
  position: relative;
  z-index: 2;
}
.header__content .logo {
  z-index: 1;
}
.header__content .logo img {
  width: 128px;
  height: 23px;
}
.header__nav {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.7);
  top: -100vh;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  transition: 0.3s;
  z-index: 0;
  display: flex;
  flex-direction: column;
  padding: 124px 48px 60px;
  gap: 40px;
}
.header__nav.is-showup {
  top: 0;
}
.header__nav a {
  display: block;
  color: #4B4CFF;
  text-decoration: none;
  font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: normal;
  background-image: url(../img/icon-arrow-right-blue.svg);
  background-repeat: no-repeat;
  background-position: right;
  transition-duration: 0.3s;
}
.header__nav a:hover {
  opacity: 0.6;
}
.header__nav a.header__button {
  font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  color: #FFF;
  font-size: 16px;
  line-height: 116%; /* 16.24px */
  border-radius: 300px;
  background: var(--Linear, linear-gradient(90deg, #008ADF 0%, #44B8FF 100%));
  padding: 12px 24px;
  text-align: center;
}
.header__nav .nav__sns {
  display: none;
}

.hamburger {
  width: 64px;
  height: 64px;
  cursor: pointer;
  text-indent: -9999px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
}

.bar {
  transition: all 0.3s ease;
  display: block;
  height: 2px;
  width: 32px;
  background: #0054ff;
  border-radius: 2px;
  margin: 9px auto;
}

.bar.top {
  margin-top: 20px;
}

.bar.middle {
  margin: 0 auto;
}

.bar.bottom {
  margin-bottom: 17px;
}

.hamburger.is-cross .bar.top {
  transform: translateY(11px) rotateZ(45deg);
}

.hamburger.is-cross .bar.middle {
  width: 0;
}

.hamburger.is-cross .bar.bottom {
  transform: translateY(-11px) rotateZ(-45deg);
}

@media screen and (min-width: 1220px) {
  .hamburger {
    display: none;
  }
  header {
    background-color: #fff;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
  }
  .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .header__content {
    background-color: transparent;
    box-shadow: none;
  }
  .header__content .logo img {
    width: 170px;
    height: 37px;
  }
  .header__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 0;
    overflow-y: hidden;
    padding-right: 24px;
    gap: 20px;
  }
  .header__nav a {
    color: #0E202E;
    font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    background-image: none;
  }
  .header__nav a.header__button {
    font-size: 14px;
  }
  .header__nav .nav__sns {
    display: flex;
    gap: 10px;
  }
}
section:not(.kv, .contents, .business) {
  width: 90%;
  max-width: 1100px;
}

.pc-none {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
}
.arrow {
  width: 68px;
  margin: 0 auto 56px;
}
.arrowimg {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .arrow {
    width: 33.5px;
    margin-bottom: 29px;
  }
}

.corner-obj--right {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.kv {
  position: relative;
  width: 96%;
  max-width: 1386px;
  margin: 52px auto 133px;
  background-image: url("../img/kv_bg.svg");
  background-size: cover;
  background-position: center;
  text-align: center;
  border-radius: 32px;
  padding: 130px 0 61px;
}
.kv::before {
  content: "";
  position: absolute;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  top: -5px;
  left: -5px;
  box-shadow: -1px 2px 22px 6px #384869;
  background-image: linear-gradient(90deg, #FFE100 0%, #D1FF45 13%, #FFFFFF 27%, #55FFE8 39%, #6294FF 55%, #888AFF 69%, #FF93ED 84%, #FF77A6 100%);
  z-index: -1;
  border-radius: 32px;
}
.kv__img img {
  margin: 0 auto;
  max-width: 88%;
}
.kv__date {
  font-size: 24px;
  color: #000;
  max-width: 572px;
  background-color: #FF64FF;
  padding: 12px 0;
  margin: 30px auto 0;
  line-height: 120%;
}
.kv__text-area {
  margin: 48px auto 0;
}
.kv__text-area__lead {
  font-size: 24px;
  letter-spacing: 2.88px;
  line-height: 40px;
}
.kv__text-area__text {
  font-size: 20px;
  letter-spacing: 1.2px;
  line-height: 48px;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .kv {
    border-radius: 7.6px;
    background-image: url("../img/kv_bg_sp.svg");
    margin: 67px auto 29px;
    padding: 82px 0 43px;
  }
  .kv::before {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    border-radius: 7.6px;
  }
  .kv__img img {
    margin: 0 auto;
    width: 88%;
  }
  .kv__date {
    font-size: 16px;
    width: 63%;
    max-width: 300px;
    margin-top: 23px;
    padding: 4px 0;
  }
  .kv__text-area {
    max-width: 83%;
  }
  .kv__text-area__lead {
    font-size: 16px;
    line-height: 180%;
  }
  .kv__text-area__text {
    max-width: 92%;
    margin: 31px auto 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 230%;
  }
}

.present {
  margin: 0 auto 56px;
  border: 8px solid #FFF;
  position: relative;
  text-align: center;
  z-index: 1;
}
.present::before, .present::after, .present .corner-obj--right::before, .present .corner-obj--right::after {
  content: "";
  position: absolute;
  background: #FFF;
  z-index: 5;
  width: 16px;
  height: 16px;
}
.present::before {
  top: -8px;
  left: -8px;
  box-shadow: 8px 8px 0 0 #000 inset;
}
.present::after {
  bottom: -8px;
  left: -8px;
  box-shadow: 8px -8px 0 0 #000 inset;
}
.present .corner-obj--right::before {
  top: -8px;
  right: -8px;
  box-shadow: -8px 8px 0 0 #000 inset;
}
.present .corner-obj--right::after {
  bottom: -8px;
  right: -8px;
  box-shadow: -8px -8px 0 0 #000 inset;
}
.present__lead {
  color: #FFFB00;
  font-size: 26px;
  background: #000;
  padding: 8px 36px;
  width: 85%;
  max-width: 762px;
  position: absolute;
  top: -23px;
  right: 0;
  left: 0;
  margin: 0 auto;
  line-height: 100%;
}
.present__contents {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 42px 0;
}
.present__contents--people {
  width: 128px;
  height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/obj_bg.png");
  background-size: cover;
  background-position: center;
  margin-right: 56px;
}
.present__contents--people > p {
  font-size: 28px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(180deg, #182D7D 0%, #181D34 24.52%, #02236F 86.54%, #0037A6 100%);
}
.present__contents--people > p > span:first-child {
  font-size: 20px;
}
.present__contents--people > p > span:last-child {
  font-size: 16px;
}
.present__contents__text {
  max-width: 453px;
}
.present__contents__img {
  max-width: 219px;
}
@media screen and (max-width: 1024.98px) {
  .present__lead {
    font-size: 20px;
    padding: 8px 0;
    max-width: 572px;
  }
  .present__contents--people {
    width: 108px;
    height: 102px;
    margin-right: 36px;
  }
  .present__contents--people > p {
    font-size: 24px;
  }
  .present__contents--people > p > span {
    font-size: 16px !important;
  }
  .present__contents__text {
    width: 310px;
  }
  .present__contents__text > span {
    font-size: 20px;
  }
  .present__contents__img {
    max-width: 190px;
  }
}
@media screen and (max-width: 767px) {
  .present {
    border: 4px solid #FFF;
    margin-bottom: 29px;
  }
  .present::before, .present::after, .present .corner-obj--right::before, .present .corner-obj--right::after {
    width: 8px;
    height: 8px;
  }
  .present::before {
    top: -4px;
    left: -4px;
    box-shadow: 4px 4px 0 0 #000 inset;
  }
  .present::after {
    bottom: -4px;
    left: -4px;
    box-shadow: 4px -4px 0 0 #000 inset;
  }
  .present .corner-obj--right::before {
    top: -4px;
    right: -4px;
    box-shadow: -4px 4px 0 0 #000 inset;
  }
  .present .corner-obj--right::after {
    bottom: -4px;
    right: -4px;
    box-shadow: -4px -4px 0 0 #000 inset;
  }
  .present__lead {
    position: relative;
    top: 0;
    background-color: initial;
    padding: 0;
    margin-top: 24px;
    width: 100%;
    font-size: 16px;
  }
  .present__contents {
    padding-top: 90px;
  }
  .present__contents--people {
    width: 78px;
    height: 74px;
    margin-right: 17px;
  }
  .present__contents--people > p {
    font-size: 18px;
  }
  .present__contents--people > p > span {
    font-size: 14px !important;
  }
  .present__contents__text {
    width: 50vw;
    max-width: 239px;
  }
  .present__contents__img {
    width: 114px;
    max-width: 190px;
    position: absolute;
    top: 15px;
    margin: 0 auto;
    display: block;
  }
  .present__contents__img::before, .present__contents__img::after {
    content: "";
    position: absolute;
    width: 30px;
    aspect-ratio: 1/1;
    top: 25px;
    background-image: url("../img/present_obj.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .present__contents__img::before {
    right: 120px;
  }
  .present__contents__img::after {
    transform: scaleX(-1);
    left: 120px;
  }
}

.mission {
  margin: 0 auto 56px;
  border: 6px solid #FFF;
  background-image: url("../img/mission_bg.svg");
  background-size: cover;
  background-position: center;
}
.mission__title {
  text-align: center;
  padding: 100px 0 0 0;
  margin-bottom: 67px;
}
.mission__title h2 {
  margin-bottom: 24px;
}
.mission__title h2 img {
  width: 260px;
  margin: 0 auto;
}
.mission__title p {
  font-size: 18px;
  line-height: 150%;
}
.mission__inner {
  width: 91%;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 100px;
}
.mission__inner__text {
  color: #FF64FF;
  text-align: center;
  font-size: 18px;
  line-height: 150%;
  width: 520px;
  margin: 0 auto 30px;
  position: relative;
}
.mission__inner__text::before, .mission__inner__text::after {
  content: "";
  position: absolute;
  width: 25px;
  aspect-ratio: 1/1;
  background-image: url("../img/mission_obj.svg");
  top: 10px;
}
.mission__inner__text::before {
  left: -25px;
}
.mission__inner__text::after {
  right: -25px;
  transform: scaleX(-1);
}
.mission__inner__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.mission__inner__list__heading {
  position: relative;
  width: 100%;
  border: 3px solid #FFF;
}
.mission__inner__list__heading > img {
  width: 200px;
  margin: 0 auto;
  padding: 17px 0 11px;
}
.mission__inner__list .one-pt {
  background: #19B6FF;
}
.mission__inner__list .two-pt {
  background: #43AD1F;
}
.mission__inner__list .tree-pt {
  background: #EC1717;
}
.mission__inner__list__item {
  width: 100%;
  position: relative;
  border: 3px solid #FFF;
  display: flex;
  align-items: center;
  z-index: 10px;
  padding: 20px;
  transition-duration: 0.3s;
}
.mission__inner__list__item:hover {
  background: rgba(255, 255, 255, 0.3);
}
.mission__inner__list__item > p {
  font-size: 20px;
  line-height: 148%;
  margin-right: 20px;
}
.mission__inner__list__item--icon {
  width: 42px;
  margin-right: 28px;
  flex-shrink: 0;
}
.mission__inner__list__item--images {
  display: flex;
  gap: 35px;
  margin: 0 0 0 auto;
  flex-shrink: 0;
}
.mission__inner__list__item--images > img:first-child {
  width: 40px;
}
.mission__inner__list__item--images > img:last-child {
  width: 12px;
}
.mission__inner__list .corner-obj--left::before, .mission__inner__list .corner-obj--left::after, .mission__inner__list .corner-obj--right::before, .mission__inner__list .corner-obj--right::after {
  content: "";
  position: absolute;
  background: #FFF;
  z-index: 5;
  width: 6px;
  height: 6px;
}
.mission__inner__list .corner-obj--left::before {
  top: -3px;
  left: -3px;
  box-shadow: 3px 3px 0 0 #000 inset;
}
.mission__inner__list .corner-obj--left::after {
  bottom: -3px;
  left: -3px;
  box-shadow: 3px -3px 0 0 #000 inset;
}
.mission__inner__list .corner-obj--right::before {
  top: -3px;
  right: -3px;
  box-shadow: -3px 3px 0 0 #000 inset;
}
.mission__inner__list .corner-obj--right::after {
  bottom: -3px;
  right: -3px;
  box-shadow: -3px -3px 0 0 #000 inset;
}
@media screen and (max-width: 767px) {
  .mission {
    border: 4px solid;
    background-image: url("../img/mission_bg_sp.svg");
    background-size: auto 100%;
    background-repeat: no-repeat;
    margin-bottom: 29px;
  }
  .mission__title {
    text-align: left;
    margin-bottom: 35px;
    padding-top: 57px;
  }
  .mission__title h2 img {
    width: 200px;
  }
  .mission__title p {
    font-size: 16px;
    font-weight: 500;
    width: 83%;
    margin: 0 auto;
  }
  .mission__inner {
    margin-bottom: 48px;
  }
  .mission__inner__text {
    font-size: 16px;
    width: 100%;
    margin-bottom: 25px;
  }
  .mission__inner__text::before, .mission__inner__text::after {
    display: none;
  }
  .mission__inner__list {
    gap: 12px;
    margin-bottom: 32px;
  }
  .mission__inner__list__heading > img {
    width: 38%;
    padding: 9px 0 7px;
  }
  .mission__inner__list__item {
    padding: 10px;
  }
  .mission__inner__list__item--icon {
    width: 34px;
    margin-right: 9px;
  }
  .mission__inner__list__item > p {
    font-size: 15px;
    margin-right: 10px;
  }
  .mission__inner__list__item--images {
    width: 12px;
  }
  .mission__inner__list__item--images > img:first-child {
    display: none;
  }
}

.entry {
  margin: 0 auto 56px;
  background-image: url("../img/entry_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  position: relative;
}
.entry__title {
  text-align: center;
  padding-top: 79px;
  margin-bottom: 50px;
}
.entry__title > h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}
.entry__title > p {
  font-size: 18px;
  line-height: 150%;
}
.entry__contents {
  display: flex;
  justify-content: center;
  width: 83%;
  max-width: 716px;
  height: 203px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 20px;
  line-height: 160%;
  gap: 50px;
}
.entry__contents > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.entry__contents > div:first-child > img {
  width: 318px;
  max-width: 100%;
}
.entry__contents > div:last-child > img {
  width: 191px;
  max-width: 100%;
  margin: 26px auto 0;
}
.entry__contents > picture > img {
  width: 20px;
  margin-top: 40px;
}
.entry__notes {
  width: 83%;
  max-width: 716px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 16px;
  padding-bottom: 48px;
  line-height: 150%;
}
.entry__notes > h3 {
  text-align: center;
  margin-bottom: 17px;
}
.entry__notes > p:last-child {
  font-size: 14px;
  margin-top: 12px;
}
@media screen and (max-width: 1024.98px) {
  .entry__contents {
    font-size: 16px;
    height: 175px;
    gap: 30px;
  }
  .entry__contents > div:first-child > img {
    width: 278px;
  }
  .entry__contents > picture > img {
    margin-top: 35px;
  }
}
@media screen and (max-width: 767px) {
  .entry {
    background-image: none;
    background-color: #000;
    margin-bottom: 29px;
  }
  .entry::before {
    content: "";
    position: absolute;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    top: -3px;
    left: -3px;
    background-image: linear-gradient(90deg, #FFE100 0%, #D1FF45 13.46%, #FFF 26.92%, #55FFE8 38.94%, #6294FF 54.81%, #888AFF 68.75%, #FF93ED 83.65%, #FF77A6 100%);
    z-index: -1;
  }
  .entry__title {
    padding-top: 28px;
  }
  .entry__title > h2 {
    font-size: 20px;
  }
  .entry__title > p {
    font-size: 16px;
    font-weight: 500;
  }
  .entry__contents {
    flex-direction: column;
    height: auto;
    align-items: center;
    width: 74%;
  }
  .entry__contents > div {
    gap: 16px;
  }
  .entry__contents > div:last-child > img {
    width: 108px;
    margin-top: 0;
  }
  .entry__contents > picture > img {
    width: 33.5px;
    margin-top: 0;
  }
  .entry__notes {
    font-size: 12px;
    padding-bottom: 28px;
  }
  .entry__notes > h3 {
    font-size: 12px;
    margin-bottom: 13.5px;
  }
  .entry__notes > p:last-child {
    font-size: 12px;
  }
}

.faq {
  margin: 0 auto 56px;
  border: 6px solid #FFF;
  background-color: #000;
}
.faq > h2 {
  font-size: 32px;
  font-weight: 800;
  padding-top: 62px;
  margin-bottom: 52px;
  text-align: center;
}
.faq__list {
  width: 83%;
  max-width: 800px;
  margin: 0 auto 73px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq__list__item {
  line-height: 150%;
}
.faq__list__item dt {
  font-size: 18px;
  margin-bottom: 16px;
}
.faq__list__item dd {
  font-size: 16px;
  font-weight: 500;
}
.faq__list__item dd > a {
  font-weight: 700;
  text-decoration: underline;
}
.faq__list__item dd ul {
  list-style: disc;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .faq {
    margin-bottom: 29px;
    border: 4px solid #FFF;
  }
  .faq > h2 {
    font-size: 24px;
    padding-top: 36px;
    margin-bottom: 32px;
  }
  .faq__list {
    gap: 30px;
    margin-bottom: 60px;
  }
  .faq__list__item dt {
    font-size: 16px;
  }
  .faq__list__item ul {
    padding-left: 20px !important;
  }
}

.bylaws {
  margin: 0 auto 250px;
  border: 6px solid #FFF;
  background-color: #282727;
  background-image: url("../img/bylaws_bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.bylaws > h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 90px 0;
  text-align: center;
}
.bylaws__list {
  width: 83%;
  max-width: 800px;
  font-size: 16px;
  line-height: 150%;
  margin: 0 auto 142px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.bylaws__list__item > dl {
  font-weight: 500;
}
.bylaws__list__item > dl ul {
  list-style: disc;
  padding-left: 20px;
}
.bylaws__list__item > dl ul > li::marker {
  font-size: 10px;
}
.bylaws__list__item--action > ul {
  font-weight: 700;
  list-style: decimal !important;
}
.bylaws__list__item--action > ul > li::marker {
  font-size: 1em !important;
}
.bylaws__list__item--action > div {
  font-size: 14px;
  margin-top: 32px;
}
.bylaws__list__item a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .bylaws {
    background-image: url("../img/bylaws_bg_sp.svg");
    border: 4px solid #FFF;
    margin-bottom: 106px;
  }
  .bylaws > h2 {
    font-size: 24px;
    margin: 50px 0 31px;
  }
  .bylaws__list {
    font-size: 14px;
    margin-bottom: 32px;
  }
}

.contents {
  width: 100%;
  max-width: 100%;
  background-image: url("../img/contents_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.contents h2 {
  text-align: center;
  max-width: 462px;
  margin: 0 auto 40px;
  font-size: 24px;
  color: #0054FF;
  position: relative;
}
.contents h2::before, .contents h2::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 2px;
  height: 20px;
  background-color: #0054FF;
}
.contents h2::before {
  transform: rotate(-25deg);
  left: 0;
}
.contents h2::after {
  transform: rotate(25deg);
  right: 0;
}
.contents__area {
  width: 95%;
  max-width: 912px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.contents__area a {
  transition-duration: 0.3s;
}
.contents__area a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .contents {
    padding: 40px 0 67px;
    background-image: url("../img/contents_bg_sp.png");
  }
  .contents h2 {
    max-width: 335px;
    font-size: 16px;
    margin-bottom: 28px;
  }
  .contents h2::before, .contents h2::after {
    top: 6px;
    height: 15px;
  }
  .contents h2::before {
    left: 10px;
  }
  .contents h2::after {
    right: 10px;
  }
  .contents__area {
    gap: 20px;
  }
}

.business {
  background: #C5DAFF;
}
.business-wrapper {
  padding-top: 120px;
  padding-bottom: 120px;
}
.business-wrapper h2 {
  text-align: center;
}
.business-wrapper h2 img {
  max-width: 632px;
  display: inline-block;
}
.business__lead {
  text-align: center;
  color: #0037A3;
  font-size: 28px;
  margin: 10px 0;
}
.business__banner {
  margin-top: 56px;
}
.business__banner a {
  display: block;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition-duration: 0.3s;
  cursor: pointer;
  filter: drop-shadow(0px 2px 15px rgba(90, 114, 162, 0.4));
}
.business__banner a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .business-wrapper {
    padding: 80px 24px;
  }
  .business-wrapper h2 {
    text-align: center;
  }
  .business-wrapper h2 img {
    width: 100%;
    max-width: 346px;
    display: inline-block;
  }
  .business__lead {
    font-size: 16px;
    margin: 4px 0;
  }
  .business__banner {
    margin-top: 32px;
  }
  .business__banner a {
    display: block;
    width: 100%;
    max-width: 346px;
    margin: 0 auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition-duration: 0.3s;
    cursor: pointer;
    filter: drop-shadow(0px 2px 15px rgba(90, 114, 162, 0.4));
  }
  .business__banner a:hover {
    opacity: 0.7;
  }
}

/* loading */
.loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 1s ease;
}

.spinner {
  position: relative;
  display: flex;
  justify-content: center;
  width: 56px;
  min-width: 56px;
  height: 56px;
  min-height: 56px;
  padding: 4px;
  margin: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  transform-origin: 50% 50%;
  animation: 1s linear infinite spin;
  opacity: 1;
  transition: opacity 1s ease;
}

.circle {
  fill: none;
  stroke: #000000;
  stroke-miterlimit: 10;
  stroke-opacity: 0.15;
  stroke-width: 5px;
}

.path {
  fill: none;
  stroke: #0054ff;
  stroke-miterlimit: 10;
  stroke-width: 5px;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.footer_app-icon {
  display: inline-block;
}

.footer__share {
  display: flex;
}/*# sourceMappingURL=style.css.map */