body {
  margin: 0;
  padding: 0;
}

.p-page_content {
  padding-right: 0;
  padding-left: 0;
}

.about_page {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 8px;
  font-feature-settings: "palt";
  word-break: break-all;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media screen and (max-width: 750px) {
  .about_page {
    font-size: 1.333vw;
  }
}

.about_page .sp_contents {
  max-width: 75em;
  margin: auto;
  transition-duration: .5s;
  overflow-x: hidden;
}

.about_page h1 {
  font-family: "Lato", sans-serif;
  font-size: 7em;
  color: #668096;
  font-weight: 400;
}

.about_page h1 span {
  display: block;
  font-size: .4em;
}

.about_page h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 5em;
  font-weight: 500;
  margin-bottom: .7em;
}

.about_page p {
  color: #668096;
  font-size: 3em;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
}

.about_page p span {
  font-weight: bold;
}

.about_page .fv {
  position: relative;
  font-weight: 500;
  padding: 0 5em;
}

.about_page .fv h2 {
  color: #668096;
  padding-top: 2em;
}

.about_page .fv_txt {
  padding-bottom: 38em;
}

.about_page .contents_wrap {
  background-image: linear-gradient(0deg, #668096, #c9cfd6);
  color: #fff;
}

.about_page .contents {
  position: relative;
  padding: 5em 0;
}

.about_page .contents .contents_txt {
  padding: 0 5em;
}

.about_page .contents p {
  color: #fff;
}

.about_page .contents01 {
  padding-top: 28em;
}

.about_page .contents02 {
  padding-bottom: 22em;
}

.about_page .contents01_img {
  position: absolute;
  top: -28em;
  right: 0;
  width: 43em;
}

.about_page .contents02_img {
  width: 43em;
  margin-bottom: 12em;
}

.about_page .contents #contents01_txt {
  opacity: 0;
  transition: .5s ease-in-out;
}

.about_page .contents #contents01_txt.active {
  opacity: 1;
}


/* ============ sns ============ */
.about_page .sns {
  padding-top: 20em;
}
.about_page .sns ul {
  display: flex;
  justify-content: center;
  gap: 7em;
  list-style: none;
}

.about_page .sns ul li {
  height: 10em;
}

.about_page .sns ul li img {
  height: 100%;
  width: auto;
}


/* ========== animation ========== */
.about_page .anime {
  transition: 1s ease-in-out;
}

.about_page .fadeUp {
  opacity: 0;
  transform: translateY(3em);
}

.about_page .fadeUp.active {
  opacity: 1;
  transform: translateY(0);
}


/* ========== fig ========== */
.about_page .container {
  height: 50em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-align: center;
}

.about_page .canvas_wrap {
  position: relative;
  width: 100%;
  height: 100em;
}

@media screen and (max-width: 750px) {
  .about_page .canvas_wrap {
    height: 160em;
  }
}

.about_page canvas {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
}

.about_page .circle_text {
  position: absolute;
  font-size: 5em;
  font-weight: 500;
  color: #668096;
  text-align: center;
  pointer-events: none;
  z-index: 10;
  transform: translate(-50%, -50%);
  height: 1.5em;
  align-content: center;
}

.about_page .canvas_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  pointer-events: none;
  z-index: 15;
  opacity: 0;
  transition: 1.5s ease-in-out;
  font-family: 'Arial', sans-serif;
  letter-spacing: 0.1em;
  width: 18em;
}

.about_page .canvas_logo.visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.about_page .canvas_logo img {
  width: 100%;
}

.about_page .japanese {
  letter-spacing: .2em;
  line-height: 1;
  margin-bottom: 0.3em;
}

.about_page .english {
  font-size: .7em;
  font-weight: 400;
  color: #668096;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.6;
}

.about_page #leftText.active {
  animation: fadeLeft 2.5s cubic-bezier(0.33, 1, 0.68, 1) 2.5s forwards;
}
@keyframes fadeLeft {
  0% {
    transform: translate(-50%, -50%);
    font-size: 5em;
  }
  100% {
    transform: translate(-3em, -50%);
    font-size: 4em;
  }
}

.about_page #rightText.active {
  animation: fadeRight 2.5s cubic-bezier(0.33, 1, 0.68, 1) 2.5s forwards;
}
@keyframes fadeRight {
  0% {
    transform: translate(-50%, -50%);
    font-size: 5em;
  }
  100% {
    transform: translate(.7em, -50%);
    font-size: 4em;
  }
}

