@charset "utf-8";
.header__top-hidden {
  /* transform: translateY(-100%); */
  opacity: 0.01;
}
.pageWrapper {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .pageWrapper {
    margin-top: 60px;
  }
}
.mv {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f2f2f2;
}
.mv video {
  width: 100%;
  height: 100vh;
  min-height: 600px;
}
.scroll-indicator {
  opacity: 0;
  margin-top: -120px;
  position: sticky;
  bottom: 20px;
  left: 48px;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0.75px;
  writing-mode: vertical-rl;
}
.scroll-indicator__border {
  content: "";
  display: block;
  width: 1px;
  height: 150%;
  background: #001223;
  position: absolute;
  top: -35px;
  left: -8px;
  overflow: hidden;
}
.scroll-indicator__border::before {
  content: "";
  display: block;
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/top/bgScroll.webp);
  animation: scrollBg 2s infinite linear;
}
@media screen and (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
  .mv video {
    height: fit-content;
  }
}
@keyframes scrollBg {
  0% {
    top: -100%;
  }
  25% {
    top: -50%;
  }
  50% {
    top: 0%;
  }
  50% {
    top: 50%;
  }
  100% {
    top: 120%;
  }
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 64px 40px;
  max-width: 1440px;
}
.pageWrapper {
  position: relative;
  z-index: 3;
}
.large-title {
  font-size: 64px;
  line-height: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/top/bgTextColorMedium.webp);
}
.large-title.show-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 32px 20px;
  }
  .large-title {
    font-size: 28px;
    line-height: 100%;
  }
  .large-title.show-sp {
    display: block;
  }
}
.news {
  background: #f2f2f2;
}
.news .large-title {
  margin-top: 10px;
}
.news .layout {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #0068b7;
}
.news .layout .left {
  width: fit-content;
  display: flex;
  flex-direction: column;
}
.news .sticky {
  margin-top: 32px;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
.news__tags {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news__tag {
  color: #777a7d;
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0.75px;
  cursor: pointer;
  transition: 0.3s ease;
}
.news__select-wrapper {
  display: none;
}
.news__tag.on,
.news__tag:hover {
  color: #0068b7;
}
.news__parent.current {
  color: #0068b7;
}
.news__tag.on::before,
.news__tag:hover::before {
  position: absolute;
  top: 30%;
  left: 0;
  transform: translateY(-50%);
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='9' viewBox='0 0 7 9' fill='none'%3E%3Cpath d='M7 4.5L0 9L3.53316e-07 0L7 4.5Z' fill='%230068B7'/%3E%3C/svg%3E");
  width: 7px;
  height: 9px;
  display: inline-block;
}
.common__btn {
  margin-top: auto;
  width: fit-content;
  padding: 16px 32px 16px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.7px;
}
.common__btn.show-sp {
  display: none;
}
.news .layout .right {
  width: 45%;
  min-width: 670px;
}
.news__link {
  display: flex;
  flex-direction: column;
  padding: 20px 8px;
  border-bottom: 1px solid #0068b7;
}
.news__wrap {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.news__date {
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.75px;
}
.news__category {
  color: #777a7d;
  font-size: 12px;
  line-height: 100%;
  border-radius: 20px;
  background: #fafafa;
  padding: 6px 10px;
}
.news__category:nth-child(n+3) {
  margin-left: -5px;
}
.news__text {
  margin-top: 8px;
  overflow: hidden;
  color: #001223;
  text-overflow: ellipsis;
  font-size: 15px;
  line-height: 156%;
  letter-spacing: 0.75px;
  transition: 0.3s ease;
}
.news__link:hover .news__text {
  color: #0068b7;
}
.news__no-posts {
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  .news .layout {
    flex-direction: column;
    border: none;
  }
  .news .layout .left {
    width: 100%;
    gap: 30px;
    margin-bottom: 32px;
  }
  .common__btn.show-sp {
    display: flex;
  }
  .common__btn.sp-none {
    display: none;
  }
  .common__btn {
    margin-top: 32px;
  }
  .news .layout .right {
    width: 100%;
    min-width: auto;
  }
  .news__tags {
    display: none;
  }
  .news__select-wrapper {
    width: fit-content;
    position: relative;
    display: block;
  }
  .news__select {
    appearance: none;
    width: fit-content;
    padding: 12px 34px 12px 12px;
    background-color: #fafafa;
    font-size: 14px;
    color: #777a7d;
    cursor: pointer;
    font-family: var(--font-strong) !important;
  }
  .news__select-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #777a7d;
    pointer-events: none;
  }
  .news__select-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #777a7d;
    pointer-events: none;
  }
  .news__list .news__listIn:first-child .news__link {
    border-top: 1px solid #0068b7;
  }
 
  .news__link {
    border-bottom: 1px solid #fafafa;
  }
  .news__category {
    font-size: 12px;
  }
  .news__no-posts {
    padding: 60px 0;
    text-align: center;
  }
}
.company__inner {
  padding: 240px 40px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.company__layout {
  display: flex;
  gap: 106px;
  justify-content: center;
}
.company__layout--02 {
  margin-top: 200px;
}
.company__contents {
  width: 45%;
  /*padding-left: 86px;*/
}
.company__layout--02 .company__contents {
  padding-left: 0;
  padding-right: 86px;
}
.company__title {
  color: #fafafa;
  font-size: 38px;
  line-height: 156%;
  letter-spacing: -0.76px;
}
.company__title--large {
  color: #fafafa;
  font-size: 64px;
  line-height: 1.38;
  letter-spacing: -1px;
	padding-top: 100px;
}
.company__title--large span {
  font-size: 58px;
  margin-left: 2px;
  margin-right: -26px;
}
.company__text {
  margin-top: 32px;
  color: #fafafa;
  font-size: 13px;
  line-height: 156%;
  letter-spacing: 0.78px;
}
.company__img {
  width: 50%;
}
.company__img img {
  width: 100%;
  height: auto;
}
.company__btn {
  margin-top: 100px;
}
.company__btn .common__btn {
  color: #fafafa;
  border: 1px solid #fafafa;
}
.company__btn .common__btn svg path {
  fill: #fafafa;
}
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 18, 35, 0.4);
  backdrop-filter: blur(40px);
}
.bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .bg {
    height: 160vh;
  }
}
@media screen and (max-width: 768px) {
  .company__inner {
    padding: 116px 30px 80px 30px;
  }
  .company__layout {
    flex-direction: column-reverse;
    gap: 32px;
  }
  .company__layout--02 {
    margin-top: 100px;
    flex-direction: column;
  }
  .company__contents {
    width: 100%;
    padding-left: 0;
  }
  .company__layout--02 .company__contents {
    padding-right: 0;
  }
  .company__img {
    width: 100%;
  }
  .company__title--img {
    max-width: 320px;
    margin: 0 auto;
  }
  .company__title--img img {
    width: 100%;
    height: auto;
  }
  .company__title {
    font-size: 24px;
    line-height: 156%;
    letter-spacing: -0.48px;
  }
  .company__title--large {
    font-size: 10.5vw;
    line-height: 1.5;
    letter-spacing: 0.01vw;
	padding-top: 0;
  }
  .company__title--large span {
    font-size: 9vw;
    margin-right: -5.5%;
  }
  .company__text {
    font-weight: 400;
  }
  .company__btn {
    margin-top: 0;
  }
  .bg {
    height: 120vh;
  }
}
.partners {
  background: #fff;
}
.partners__inner {
  padding: 64px 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.partners__grid {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 60px;
}
.partners__item {
  width: auto;
  height: 70px;
  object-fit: contain;
}
.partners__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .partners__inner {
    padding: 64px 20px;
  }
  .partners__grid {
    margin-top: 32px;
    gap: 20px;
  }
}
.numbers {
  background: #f2f2f2;
}
.numbers__inner {
  padding: 64px 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.numbers__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.numbers__item {
  height: 360px;
  position: relative;
  background: #fafafa;
  padding: 64px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.numbers__icon {
  position: absolute;
  z-index: 1;
}
.numbers__label {
  position: relative;
  z-index: 2;
  color: #0068b7;
  text-align: center;
  font-size: 19px;
  line-height: 156%;
  letter-spacing: 0.95px;
}
.numbers__text {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 8px;
}
.numbers__text--small {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  color: #777a7d;
  text-align: center;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.6px;
}
.numbers__num {
  position: relative;
  font-size: 126px;
  font-weight: 700;
  line-height: 85%;
  letter-spacing: -6.4px;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: block;
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/top/bgTextColor.webp);
  z-index: 2;
}
.numbers__num .dot {
  font-size: 62px;
  line-height: 45%;
}
.numbers__unit {
  margin-top: -10px;
  width: fit-content;
  height: 32px;
  position: relative;
  font-size: 32px;
  line-height: 100%;
  font-weight: 700;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: block;
  background-position: center;
  background-size: cover;
  background-image: url(../images/top/bgTextColor.webp);
}
@media screen and (max-width: 768px) {
  .numbers__inner {
    padding: 64px 20px 32px;
  }
  .numbers__title img {
    width: 100%;
  }
  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .numbers__item {
    padding: 24px 2px;
    height: 100%;
    max-height: 160px;
  }
  .numbers__icon {
    width: 88px;
    height: 88px;
  }
  .numbers__icon img {
    width: 100%;
    height: 100%;
  }
  .numbers__label {
    font-size: calc(20px * 0.0216);
    font-size: min(3.33vw, 20px);
    line-height: 156%;
    letter-spacing: calc(1px * 0.0216);
    letter-spacing: min(0.16vw, 1px);
  }
  .numbers__text {
    margin-top: 2vw;
  }
  .numbers__text--small {
    font-size: 2vw;
    line-height: 100%;
    letter-spacing: calc(0.75px * 0.0216);
    letter-spacing: min(0.125vw, 0.75px);
  }
  .numbers__num {
    font-size: calc(69px * 0.0766);
    font-size: min(11.5vw, 69px);
    letter-spacing: calc(-3px * 0.0766);
    letter-spacing: min(-0.5vw, -3px);
  }
  .numbers__num .dot {
    font-size: calc(36px * 0.04);
    font-size: min(6vw, 36px);
    line-height: 50%;
  }
  .numbers__unit {
    height: calc(20px * 0.0216);
    height: min(3.33vw, 20px);
    font-size: calc(20px * 0.0216);
    font-size: min(3.33vw, 20px);
  }
}
.investor {
  background: #f2f2f2;
}
.investor__inner {
  padding: 0 40px 64px 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.investor__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.investor__item {
  position: relative;
  background: #fafafa;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
}
.investor__item::after {
  content: "";
  display: flex;
  width: 36px;
  height: 36px;
  padding: 14px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #0068b7;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='10' viewBox='0 0 7 10' fill='none'%3E%3Cpath d='M7 5L0 9.5L3.53316e-07 0.5L7 5Z' fill='%230068B7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px 10px;
}
.investor__item__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.investor__item:hover .investor__label {
  color: #0068b7;
}
.investor__label {
  font-size: 22px;
  line-height: 128%;
  letter-spacing: 1.1px;
  transition: 0.3s ease;
}
.investor__label::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .investor__inner {
    padding: 32px 20px 64px 20px;
  }
  .investor__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .investor__item {
    padding: 20px;
  }
  .investor__item__inner {
    gap: 12px;
  }
  .investor__icon {
    max-width: 36px;
  }
  .investor__icon img {
    width: 100%;
    height: auto;
  }
  .investor__label {
    font-size: 17px;
    line-height: 160%;
    letter-spacing: 0.85px;
  }
}
.groupCompany__inner {
  padding: 180px 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.groupCompany__title {
  color: #fafafa;
  font-size: 64px;
  font-weight: 400;
  line-height: 100%;
}
.groupCompany__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 20px;
}
.groupCompany__item {
  position: relative;
  padding: 24px 0;
  border-top: 1px solid#FAFAFA;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.groupCompany__img {
  cursor: pointer;
  overflow: hidden;
}
.groupCompany__img img {
  width: 100%;
  height: auto;
  transition: 0.3s ease;
}
.groupCompany__img:hover img {
  transform: scale(1.1);
}
.groupCompany__item__title {
  color: #fafafa;
  font-size: 15px;
  line-height: 156%;
  letter-spacing: 0.75px;
}
.groupCompany__item__title .icon {
  display: none;
}
.groupCompany__text {
  color: #fafafa;
  font-size: 13px;
  line-height: 156%;
  letter-spacing: 0.65px;
}
.groupCompany__link {
  overflow: hidden;
  color: #fafafa;
  font-size: 13px;
  line-height: 156%;
  letter-spacing: 0.65px;
  display: flex;
  gap: 6px;
  transition: 0.3s ease;
}
.groupCompany__link:hover {
  opacity: 0.6;
}
.groupCompany__link span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 300px;
}
.groupCompany__link::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M16.4782 8.91844L14.0582 11.3384C13.8982 11.4984 13.6582 11.4984 13.4982 11.3384C13.3382 11.1784 13.3382 10.9384 13.4982 10.7784L15.9182 8.35844C17.0982 7.17844 17.0982 5.25844 15.9182 4.07844C15.3382 3.49844 14.5982 3.19844 13.7782 3.19844C12.9782 3.19844 12.2182 3.51844 11.6382 4.07844L9.2182 6.49844C8.0382 7.67844 8.0382 9.59844 9.2182 10.7784C9.4982 11.0584 9.8382 11.2984 10.2182 11.4384C10.4182 11.5184 10.5182 11.7584 10.4382 11.9584C10.2582 12.3784 9.7982 12.1384 9.9182 12.1784C9.4382 11.9784 9.0182 11.6984 8.6582 11.3384C7.1582 9.85844 7.1582 7.41844 8.6582 5.93844L11.0782 3.51844C11.7982 2.79844 12.7582 2.39844 13.7782 2.39844C14.7982 2.39844 15.7582 2.79844 16.4782 3.51844C17.9782 4.99844 17.9782 7.43844 16.4782 8.91844ZM10.0782 7.81844C9.8782 7.73844 9.6382 7.83844 9.5582 8.03844C9.4782 8.23844 9.5782 8.47844 9.7782 8.55844C10.1582 8.71844 10.4982 8.93844 10.7782 9.21844C11.9582 10.3984 11.9582 12.3184 10.7782 13.4984L8.3582 15.9184C7.7782 16.4984 7.0382 16.7984 6.2182 16.7984C5.4182 16.7984 4.6582 16.4784 4.0782 15.9184C2.8982 14.7384 2.8982 12.8184 4.0782 11.6384L6.4982 9.21844C6.6582 9.05844 6.6582 8.81844 6.4982 8.65844C6.3382 8.49844 6.0982 8.49844 5.9382 8.65844L3.5182 11.0784C2.0382 12.5584 2.0382 14.9984 3.5182 16.4784C4.2382 17.1984 5.1982 17.5984 6.2182 17.5984C7.2382 17.5984 8.1982 17.1984 8.9182 16.4784L11.3382 14.0584C12.8382 12.5784 12.8382 10.1384 11.3382 8.65844C10.9782 8.29844 10.5582 8.01844 10.0782 7.81844Z' fill='%23FAFAFA'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.groupCompany__btn {
  margin-top: 48px;
}
.groupCompany__btn .common__btn {
  color: #fafafa;
  border: 1px solid #fafafa;
}
.groupCompany__btn .common__btn svg path {
  fill: #fafafa;
}
@media screen and (max-width: 768px) {
  .groupCompany__inner {
    padding: 64px 20px;
  }
  .groupCompany__title {
    font-size: 28px;
    line-height: 100%;
  }
  .groupCompany__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .groupCompany__item {
    overflow: hidden;
    padding: 16px 0;
    border-top: 1px solid#FAFAFA;
    gap: 16px;
  }
  .groupCompany__item__title {
    font-size: 13px;
    line-height: 156%;
    letter-spacing: 0.65px;
  }
  .groupCompany__item__title .icon {
    display: inline;
    vertical-align: baseline;
    margin-left: 3px;
  }
  .groupCompany__img {
    display: none;
  }
  .groupCompany__btn {
    margin-top: 0;
  }
}
