@charset "UTF-8";


/*---------------------------------------------------------------*\
$policy
\*---------------------------------------------------------------*/

.content_privacy {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 200px auto 0;
}

.content_privacy .heading {
  font-size: clamp(30px, 8vw, 100px);
  margin: 0 0 80px 0;
}

.content_privacy .title_content_privacy {
  padding: 100px 0px 24px;
  border-bottom: solid 1px rgba(255, 255, 255, .2);
  font-size: 32px;
}

.content_privacy .title_company {
  padding: 100px 0px 16px;
}

.content_privacy .desciption_content_privacy {
  margin: 40px 0 0;
}

.content_privacy .desciption_company {
  margin: 12px 0 0;
}

.content_privacy .desciption_company:last-child {
  margin: 12px 0 180px;
}

.content_privacy .content_info_policy {
  margin-top: 140px;
  gap: 12px;
}


/*---------------------------------------------------------------*\
$about page
\*---------------------------------------------------------------*/

.about_page {
  max-width: 1280px;
}

.about_page .heading {
  margin-bottom: 96px;
}

.about_page .about_ajiro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(0, 1.3fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
  padding: clamp(40px, 6vw, 72px);
  border: solid 1px rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, .08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .02) 100%),
    rgba(0, 0, 0, .32);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.about_page .about_ajiro::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -25%;
  width: min(540px, 55vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 255, 55, .18) 0%, rgba(0, 255, 55, 0) 58%),
    radial-gradient(circle at 60% 40%, rgba(255, 150, 68, .2) 0%, rgba(255, 150, 68, 0) 52%);
  pointer-events: none;
}

.about_page .about_ajiro__title_wrap,
.about_page .about_ajiro__body {
  position: relative;
  z-index: 1;
}

.about_page .about_ajiro--body-only {
  grid-template-columns: 1fr;
  gap: 0;
}

.about_page .about_ajiro .title_content_privacy {
  padding: 0;
  border: none;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1;
}

.about_page .about_ajiro__body {
  display: grid;
  gap: 28px;
}

.about_page .about_ajiro__body .desciption_content_privacy {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 20px);
  color: rgba(255, 255, 255, .82);
}

.about_page .leadership_team {
  margin-top: 140px;
}

.about_page .leadership_team .title_content_privacy {
  padding: 0 0 24px;
  font-size: clamp(28px, 4vw, 40px);
}

.about_page .leadership_team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.about_page .team_member {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: solid 1px rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .045) 0%, rgba(255, 255, 255, .02) 100%);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.about_page .team_member__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 255, 55, .18), rgba(0, 255, 55, 0) 38%),
    radial-gradient(circle at 82% 18%, rgba(255, 150, 68, .18), rgba(255, 150, 68, 0) 40%),
    linear-gradient(155deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
}

.about_page .team_member__visual--placeholder::before {
  content: "";
  position: absolute;
  inset: 12% 11% 0;
  border-radius: 999px 999px 28px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.about_page .team_member__visual--placeholder::after {
  content: attr(data-initials);
  position: absolute;
  right: 18px;
  bottom: 18px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .76);
}

.about_page .team_member__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about_page .team_member__content {
  display: grid;
  gap: 12px;
  padding: 24px 24px 28px;
  border-top: solid 1px rgba(255, 255, 255, .08);
}

.about_page .team_member__name {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.3;
  font-weight: 500;
}

.about_page .team_member__note {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .56);
}

.about_page .team_member__role {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .72);
}


@media screen and (max-width: 768px) {

  .content_privacy .desciption_company:last-child {
    margin: 12px 0 80px;
  }

  .about_page .heading {
    margin-bottom: 72px;
  }

  .about_page .about_ajiro {
    grid-template-columns: 1fr;
  }

  .about_page .leadership_team {
    margin-top: 104px;
  }

  .about_page .leadership_team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media screen and (max-width: 600px) {


  .content_privacy {
    width: calc(100% - 44px);
  }

  .content_privacy .heading {
    margin: 0;
  }

  .content_privacy .title_content_privacy {
    font-size: 20px;
  }

  .content_privacy .desciption_company:last-child {
    margin: 12px 0 0;
  }

  .content_privacy .content_info_policy {
    margin-top: 100px;
  }

  .about_page .heading {
    margin-bottom: 56px;
  }

  .about_page .about_ajiro {
    padding: 36px 24px;
  }

  .about_page .about_ajiro__body {
    gap: 20px;
  }

  .about_page .about_ajiro__body .desciption_content_privacy {
    font-size: 15px;
  }

  .about_page .leadership_team {
    margin-top: 88px;
  }

  .about_page .leadership_team .title_content_privacy {
    padding-bottom: 18px;
  }

  .about_page .leadership_team__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .about_page .team_member__content {
    padding: 20px 20px 24px;
  }

  .about_page .team_member__role {
    font-size: 14px;
  }
}
