@media not screen and (max-width: 990px) {
  .tablet-and-below {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body, * {
  font-family: "Noto Sans JP", sans-serif;
  color: #0F0F0F;
  word-break: break-word;
}

section {
  padding: 56px 0;
}
@media screen and (max-width: 767px) {
  section {
    padding: 24px 0;
  }
}
section.lilac {
  background: #F0F0FA;
}

.container {
  padding: 0 16px;
  box-sizing: border-box;
  max-width: 1072px;
  width: 100%;
  margin: auto;
}
.container--large {
  max-width: 1200px;
}

h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.45;
  /* identical to box height */
  text-align: center;
  letter-spacing: 0.005em;
  color: #121863;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  h2 {
    margin-bottom: 18px;
    font-size: 24px;
  }
}

h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 18px;
  }
}

img {
  max-width: 100%;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgb(50, 65, 255);
  padding: 24px 32px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.nav * {
  color: white;
}
.nav__menu__button {
  background: transparent;
}
@media not screen and (max-width: 990px) {
  .nav__menu__button {
    display: none;
  }
}
.nav__menu__button span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 1px;
  background: white;
}
.nav__menu__button span + span {
  margin-top: 8px;
}
.nav__menu__links a {
  display: inline-block;
  margin-left: 30px;
  line-height: 32px;
  height: 32px;
}
.nav__menu__links a.login-button {
  color: rgb(50, 65, 255);
  background: white;
  border-radius: 100px;
  padding: 0 24px;
}
@media screen and (max-width: 990px) {
  .nav__menu__links {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    transition: 0.5s;
    z-index: 999;
    transform: translateY(-200px);
    background: rgb(50, 65, 255);
    opacity: 0;
    padding: 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nav__menu__links a {
    margin-left: 0;
  }
  .nav__menu__links a + a {
    margin-top: 32px;
  }
  .nav__menu__button.active + .nav__menu__links {
    transform: translateY(100%);
    opacity: 1;
  }
}

.banner {
  padding: 64px 0 55px;
  background: rgb(50, 65, 255);
}
.banner * {
  color: white;
}
.banner h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0.005em;
}
@media screen and (max-width: 767px) {
  .banner h1 {
    font-size: 32px;
  }
}
.banner__main__images {
  display: flex;
  align-items: flex-start;
}
.banner__main__images img {
  display: flex;
}
.banner__main__images img:first-child {
  flex: 0 0 85%;
  max-width: 85%;
}
.banner__main__images img:last-child {
  flex: 0 0 60%;
  max-width: 60%;
  margin-left: -45%;
  margin-top: 150px;
}
.banner__main h2 {
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0.005em;
}
@media not screen and (max-width: 990px) {
  .banner__main {
    margin: 90px 0 108px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .banner__main__images {
    flex: 0 0 60%;
  }
  .banner__main h2 {
    flex: 0 0 42%;
    font-size: 32px;
  }
}
@media screen and (max-width: 990px) {
  .banner__main {
    margin: 24px 0;
    width: 100%;
  }
  .banner__main__images {
    max-width: 100%;
  }
  .banner__main h2 {
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .banner__main h2 {
    font-size: 20px;
  }
}
.banner__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner__buttons a {
  display: flex;
  width: 248px;
  height: 55px;
  align-items: center;
  justify-content: center;
  color: rgb(50, 65, 255);
  background: white;
  border-radius: 16px;
}
@media not screen and (max-width: 990px) {
  .banner__buttons a + a {
    margin-left: 32px;
  }
}
@media screen and (max-width: 990px) {
  .banner__buttons {
    flex-direction: column;
  }
  .banner__buttons a + a {
    margin-top: 16px;
  }
}

.about h3 {
  text-align: center;
  margin-bottom: 30px;
}
.about__display__left {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: rgba(242, 148, 127, 0.2);
  border-radius: 16px;
  padding: 26px 45px;
}
.about__display__left ul li {
  list-style: none;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.45;
}
.about__display__left ul li + li {
  margin-top: 40px;
}
.about__display__left ul li > img {
  margin-right: 10px;
}
@media not screen and (max-width: 990px) {
  .about__display {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .about__display h3 {
    margin-bottom: 80px;
  }
  .about__display__left {
    flex: 1 1 44%;
    padding: 48px 60px;
  }
  .about__display__right {
    flex: 1 1 56%;
    margin-top: 120px;
  }
}
@media screen and (max-width: 990px) {
  .about__display__left ul li {
    font-size: 16px;
  }
  .about__display__right {
    margin-top: 32px;
  }
}

.issues__group {
  border: 1px solid #D7DDE7;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
}
.issues__group + .issues__group {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .issues__group + .issues__group {
    margin-top: 24px;
  }
}
.issues__group h3 {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .issues__group {
    padding: 16px;
  }
  .issues__group h3 {
    margin-bottom: 24px;
  }
}
.issues__group__worry {
  display: flex;
  align-items: center;
}
.issues__group__worry {
  margin-top: 32px;
}
.issues__group__worry__image {
  flex: 0 1 145px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.issues__group__worry__image::after {
  content: "";
  width: 28px;
  height: 38px;
  background-image: url(../img/sweat.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 90%;
  top: 25%;
}
.issues__group__worry__text {
  margin-left: 30px;
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.issues__group__worry__text__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.issues__group__worry__text span {
  position: relative;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0.05em;
}
.issues__group__worry:nth-child(odd) {
  margin-left: auto;
}
.issues__group__worry:nth-child(odd) .issues__group__worry__image {
  order: 1;
}
.issues__group__worry:nth-child(odd) .issues__group__worry__text {
  margin: 0 10px 0 0;
  order: 0;
  justify-content: flex-end;
}
.issues__group__worry:nth-child(odd) .issues__group__worry__text__bg {
  transform: scaleX(-1);
}
@media not screen and (max-width: 767px) {
  .issues__group__worry + .issues__group__worry {
    margin-top: -40px;
  }
  .issues__group__worry__text {
    flex: 0 1 394px;
    width: 394px;
    height: 113px;
    padding: 0 54px;
  }
}
@media screen and (max-width: 767px) {
  .issues__group__worry {
    align-items: stretch;
  }
  .issues__group__worry + .issues__group__worry {
    margin-top: 24px;
  }
  .issues__group__worry__image, .issues__group__worry__text {
    max-width: 330px;
  }
  .issues__group__worry__image {
    flex: 0 0 64px;
  }
  .issues__group__worry__image > p {
    max-width: 64px;
    text-align: center;
    position: relative;
    font-size: 11px;
    margin-top: 4px;
  }
  .issues__group__worry__image > p span {
    width: 80px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .issues__group__worry__image::after {
    left: 100%;
    width: 14px;
  }
  .issues__group__worry__text {
    flex: 1 1 auto;
    padding: 0 30px;
  }
  .issues__group__worry__text__bg {
    -o-object-fit: fill;
       object-fit: fill;
  }
  .issues__group__worry__text span {
    font-size: 14px;
  }
}

.functions {
  overflow: hidden;
}
.functions__function h3 {
  display: inline-flex;
  align-items: center;
  color: white;
  height: 104px;
  margin-bottom: 48px;
}
.functions__function h3, .functions__function h3::before, .functions__function h3 span {
  position: relative;
  color: white;
  z-index: 1;
}
.functions__function h3::before {
  display: inline-block;
  content: attr(data-count);
  font-size: 64px;
  margin-right: 0.2em;
  opacity: 0.8;
}
.functions__function h3 span {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.005em;
}
.functions__function h3 .decor {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.functions__function h3 .decor::before, .functions__function h3 .decor::after {
  content: "";
  position: absolute;
  transform: skew(-30deg);
}
.functions__function h3 .decor::before {
  left: -50vw;
  right: -10vw;
  top: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(270deg, rgba(50, 65, 255, 0) -11.88%, #3241FF 60.06%);
}
.functions__function h3 .decor::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 20px;
  right: -8vw;
  background: #F0F0FA;
}
@media screen and (max-width: 990px) {
  .functions__function h3 {
    height: auto;
    padding: 8px 0;
    min-height: 48px;
    margin-bottom: 24px;
  }
  .functions__function h3::before, .functions__function h3 span {
    font-size: 18px;
  }
  .functions__function h3 span {
    max-width: 70vw;
    text-align: left;
  }
  .functions__function h3 .decor::after {
    width: 8px;
    right: -6vw;
  }
}
.functions__function__body p {
  font-weight: 700;
  font-size: 24px;
  line-height: 160%;
}
@media screen and (max-width: 990px) {
  .functions__function__body p {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 767px) {
  .functions__function__body p {
    font-size: 15px;
  }
  .functions__function__body p br {
    display: none;
  }
}
.functions__function__body img {
  height: auto;
}
.functions__function__body__images {
  width: 100%;
}
.functions__function + .functions__function {
  margin-top: 96px;
}
@media screen and (max-width: 990px) {
  .functions__function + .functions__function {
    margin-top: 48px;
  }
}
.functions__function:nth-child(3) .functions__function__body, .functions__function:nth-child(5) .functions__function__body {
  position: relative;
}
.functions__function:nth-child(3) .functions__function__body__images, .functions__function:nth-child(5) .functions__function__body__images {
  position: relative;
}
@media not screen and (max-width: 990px) {
  .functions__function:nth-child(3) .functions__function__body p, .functions__function:nth-child(5) .functions__function__body p {
    position: absolute;
  }
}
.functions__function:nth-child(even) {
  text-align: right;
}
@media not screen and (max-width: 990px) {
  .functions__function:nth-child(even) p {
    text-align: left;
  }
}
.functions__function:nth-child(even) h3 .decor::before, .functions__function:nth-child(even) h3 .decor::after {
  transform: skew(30deg);
}
.functions__function:nth-child(even) h3 .decor::before {
  right: -50vw;
  left: -10vw;
}
.functions__function:nth-child(even) h3 .decor::after {
  left: -8vw;
  background: #F0F0FA;
}
.functions__function:nth-child(3) .functions__function__body h3 {
  max-width: 50%;
}
.functions__function:nth-child(3) .functions__function__body__images img:first-child {
  width: 70%;
  margin-top: 10vw;
}
.functions__function:nth-child(3) .functions__function__body__images img:last-child {
  width: 47%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 990px) {
  .functions__function:nth-child(3) .functions__function__body__images img {
    margin-top: 0;
  }
}
@media not screen and (max-width: 990px) {
  .functions__function:nth-child(3) .functions__function__body__images {
    margin-top: 30px;
  }
  .functions__function:nth-child(3) .functions__function__body__images img:first-child {
    margin-top: 120px;
  }
  .functions__function:nth-child(3) .functions__function__body__images img:last-child {
    right: 10%;
    top: 45px;
  }
}
.functions__function:nth-child(4) .functions__function__body > img {
  width: min(100%, 390px);
}
@media not screen and (max-width: 767px) {
  .functions__function:nth-child(4) .functions__function__body {
    display: flex;
    justify-content: flex-end;
  }
}
.functions__function:nth-child(5) .functions__function__body__images {
  text-align: right;
}
.functions__function:nth-child(5) .functions__function__body__images img:first-child {
  width: 55%;
  position: absolute;
  left: 0;
  top: 0;
}
.functions__function:nth-child(5) .functions__function__body__images img:last-child {
  width: 55%;
}
@media not screen and (max-width: 990px) {
  .functions__function:nth-child(5) .functions__function__body p {
    max-width: 50%;
    right: 0;
  }
  .functions__function:nth-child(5) .functions__function__body img:last-child {
    margin-top: 120px;
    right: 10%;
  }
}
@media screen and (max-width: 990px) {
  .functions__function:nth-child(5) .functions__function__body {
    margin-top: 0;
  }
  .functions__function:nth-child(5) .functions__function__body img:last-child {
    margin-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .functions__function:nth-child(5) .functions__function__body img:first-child, .functions__function:nth-child(5) .functions__function__body img:last-child {
    width: 65%;
  }
}

.qna__qa {
  padding: 24px 32px;
  background: #FFFFFF;
  border-radius: 16px;
}
.qna__qa h3, .qna__qa p {
  display: flex;
}
.qna__qa h3::before, .qna__qa p::before {
  font-family: "Roboto";
  margin-right: 16px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.45;
}
.qna__qa h3 {
  font-size: 20px;
  margin-bottom: 0.6em;
}
.qna__qa h3::before {
  content: "Q";
  color: rgb(50, 65, 255);
}
.qna__qa p {
  font-size: 16px;
  line-height: 1.45;
  text-align: justify;
}
.qna__qa p::before {
  content: "A";
  color: #F2947F;
}
.qna__qa + .qna__qa {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .qna__qa {
    padding: 16px;
  }
  .qna__qa h3::before, .qna__qa p::before {
    margin-right: 8px;
    font-size: 16px;
  }
  .qna__qa h3 {
    font-size: 16px;
  }
  .qna__qa p {
    font-size: 14px;
  }
}

.news__item__date {
  font-size: 16px;
  line-height: 1.45;
  color: #121863;
}
.news__item__text {
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
}
@media not screen and (max-width: 767px) {
  .news__item {
    display: flex;
  }
  .news__item__date {
    margin-right: 16px;
  }
  .news__item + .news__item {
    margin-top: 48px;
  }
}
@media screen and (max-width: 767px) {
  .news__item__date {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .news__item__text {
    font-size: 16px;
  }
  .news__item + .news__item {
    margin-top: 24px;
  }
}

.footer {
  background: #121863;
  padding: 36px 0;
}
.footer * {
  color: white;
  line-height: 1.45;
}
.footer__links__link {
  display: flex;
  align-items: center;
}
.footer__links__link--external::after {
  content: url(../img/external-link.svg);
  margin-left: 8px;
}
@media not screen and (max-width: 767px) {
  .footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer * {
    font-size: 14px;
  }
  .footer__links {
    margin: 0 60px;
    flex: 1 1 auto;
    justify-content: flex-start;
    display: flex;
  }
  .footer__links__link + a {
    margin-left: 60px;
  }
}
@media screen and (max-width: 767px) {
  .footer .container {
    display: grid;
    grid-template-columns: 86px auto;
    grid-gap: 8px 32px;
  }
  .footer .container > img {
    grid-row: 1/span 1;
    grid-column: 1/span 1;
  }
  .footer * {
    color: white;
    font-size: 12px;
  }
  .footer__links {
    grid-row: 1/span 2;
    grid-column: 2/span 1;
  }
  .footer__links__link {
    font-size: 12px;
  }
  .footer__links__link + a {
    margin-top: 8px;
  }
  .footer__copyright {
    grid-row: 2/span 1;
    grid-column: 1/span 1;
    text-align: center;
    font-size: 10px;
  }
}

.text-page section.title {
  background: rgb(50, 65, 255);
  padding: 90px 0;
}
.text-page section.title h1 {
  color: white;
  font-size: 64px;
  text-align: center;
}
.text-page section.main-text h2 {
  text-align: left;
  margin-top: 1em;
}
.text-page section.main-text h3 {
  margin: 1em 0 0.5em;
}
.text-page section.main-text p, .text-page section.main-text ul {
  font-size: 18px;
  line-height: 1.45;
}
.text-page section.main-text p + p, .text-page section.main-text p + ul, .text-page section.main-text ul + p, .text-page section.main-text ul + ul {
  margin-top: 1em;
}
.text-page section.main-text ul li {
  list-style-type: disc;
}
.text-page section.main-text ul li + li {
  margin-top: 0.25em;
}
.text-page section.main-text a {
  text-decoration: underline;
}/*# sourceMappingURL=area-compass-lp.css.map */