@charset "UTF-8";

:root {
  --color-main: #5234ff;
  --color-base: #e7e6f7;
  --color-text: #000;
  --color-white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif, "Hiragino Kaku Gothic ProN", "Hiragino Sans";
  /* line-height: 1; */
  background: var(--color-base);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

.sp_only {
  display: none;
}

.content_wrap {
  overflow: hidden;
}

.about_page {
  position: relative;
  min-height: 100vh;
  background: var(--color-base);
}

.about_header {
  position: relative;
  z-index: 0;
  padding: 35px 35px 0;
}

.about_header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background-color: var(--color-main);
  background-image:
    linear-gradient(0deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.15) calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.15) calc(100% - 1px));
  background-size: 20px 20px, 20px 20px;
  background-repeat: repeat, repeat;
  background-position: center center;
  z-index: -1;
}

.about_header__inner {
  width: 100%;
  margin: 0;
}

.about_header__logo {
  display: inline-block;
  width: 159px;
}

.about_hero {
  position: relative;
  z-index: 1;
  padding: 110px 0 0;
}

.about_hero__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px 120px;
}

.about_hero__heading {
  margin-bottom: 80px;
}

.about_hero__heading h1 {
  display: inline-block;
}

.about_hero__eyebrow {
  display: flex;
  align-items: center;
  width: 420px;
  height: 90px;
  padding: 24px;
  background: var(--color-white);
  box-sizing: border-box;
}

.about_hero__eyebrow img {
  width: 371.61px;
  max-width: 100%;
}

.about_hero__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 199px;
  height: 46px;
  padding: 10px;
  background: var(--color-main);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  box-sizing: border-box;
}

.about_hero__body {
  position: relative;
  z-index: 1;
}

.about_hero__body h2 {
  margin-bottom: 80px;
  color: var(--color-main);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.about_hero__text {
  max-width: 100%;
}

.about_hero__text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.78;
}

.about_hero__text p + p {
  margin-top: 24px;
}

.about_hero__text strong {
  color: var(--color-main);
  font-weight: 700;
}

.about_hero__sparkle {
  position: absolute;
  z-index: 0;
}

.about_hero__sparkle--top {
  top: 100px;
  right: 80px;
  width: 157px;
}

.about_hero__sparkle--bottom {
  bottom: 164px;
  left: -46px;
  width: 167px;
}

.btn_top {
  width:100%;
  max-width:350px;
  margin: 80px auto 0;
}

.about_hero__wordmark {
  position: absolute;
  bottom:0;
  right:0;
  left: 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }

  .about_header {
    padding: 20px 20px 0;
  }

  .about_header::before {
    width: 100%;
    height: 145px;
  }

  .about_header__logo {
    width: 133px;
  }

  .about_hero {
    padding: 60px 0 0;
  }

  .about_hero__inner {
    /* max-width: 375px; */
    padding: 0 15px 120px;
  }

  .about_hero__heading {
    margin-bottom: 40px;
  }

  .about_hero__heading h1 {
    display: inline-block;
  }

  .about_hero__eyebrow {
    width: 253px;
    height: 55px;
    padding: 15px;
  }

  .about_hero__eyebrow img {
    width: 222.97px;
  }

  .about_hero__label {
    width: 205px;
    height: 40px;
    padding: 10px;
    font-size: 18px;
    line-height: 26px;
  }

  .about_hero__body h2 {
    margin-bottom: 34px;
    font-size: 28px;
    line-height: 1.57;
    letter-spacing: 0.03em;
  }

  .about_hero__text p {
    font-size: 15px;
    line-height: 1.74;
  }

  .about_hero__text p + p {
    margin-top: 18px;
  }

  .about_hero__sparkle--top {
    top: 18px;
    right: -12px;
    width: 138px;
  }

  .about_hero__sparkle--bottom {
    bottom: 52px;
    left: -14px;
    width: 101px;
  }
  .btn_top {
      max-width: 220px;
      margin: 60px auto 0;
  }

}
