@charset "UTF-8";
/* --------------------------------------------------
 * archive__founders
-------------------------------------------------- */

/* founders */
.archive__founders .founders__cont {
  margin-top: 4.5em;
}
.archive__founders .founders__list {
  display: flex;
  flex-direction: column;
  gap: 3.75em;
}
.archive__founders .founders__item {
  display: flex;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  background: var(--gray3-color);
}
.archive__founders .founders__item .item__thumb {
  width: 50%;
}
.archive__founders .founders__item:nth-child(even) .item__thumb {
  order: 2;
}
.archive__founders .founders__item .item__thumb img {
  width: 100%;
  height: auto;
}
.archive__founders .founders__item .item__cont {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 3.75em 1.25em 1.25em 3.125em;
}
.archive__founders .founders__item .item__cont .item__name {
  line-height: 1;
  font-weight: 400;
  font-size: 2.6875rem;
  color: var(--accent-color);
}
.archive__founders .founders__item .item__cont .item__txt {
  line-height: 1.8;
  margin-top: 1.25em;
  font-weight: 500;
  font-size: 1.8125rem;
  letter-spacing: 0.08em;
}
.archive__founders .founders__item .item__cont .item__position {
  margin-top: 1em;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}
.archive__founders .founders__item .item__cont .item__more {
  margin-top: auto;
  text-align: right;
}
.archive__founders .founders__item .item__cont .item__more .cmn__more01 {
  font-size: 0.875rem;
}
@media screen and (max-width: 1440px) {
  .archive__founders .founders__item .item__cont .item__name {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 1280px) {
  .archive__founders .founders__item .item__cont {
    padding: 2em 1em 1em 1.5em;
  }
  .archive__founders .founders__item .item__cont .item__txt {
    font-size: 2vw;
  }
  .archive__founders .founders__item .item__cont .item__position {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  .archive__founders {
    padding: 0 7% !important;
  }
  .archive__founders .founders__item {
    flex-direction: column;
  }
  .archive__founders .founders__item .item__thumb,
  .archive__founders .founders__item .item__cont {
    width: 100%;
  }
  .archive__founders .founders__item:nth-child(even) .item__thumb {
    order: inherit;
  }
  .archive__founders .founders__item .item__cont .item__name {
    font-size: 2.25rem;
  }
  .archive__founders .founders__item .item__cont .item__txt {
    line-height: 1.6;
    margin-top: 1.35em;
    font-size: 1.42rem;
  }
  .archive__founders .founders__item .item__cont .item__position {
    margin-top: 1.35em;
    font-size: 1.16rem;
  }
  .archive__founders .founders__item .item__cont .item__more {
    margin-top: 3.75em;
    text-align: left;
  }
}

/* early-founders */
.archive__early-founders {
  margin-top: 6.25em;
}
.archive__early-founders .pro__list {
  padding: 7.5em 4.375em;
  background: var(--gray3-color);
}
.archive__early-founders .early-founders__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25em;
}
.archive__early-founders .early-founders__item {
  width: calc((100% - 1.25em) / 2);
  aspect-ratio: 1.41 / 1;
}
.archive__early-founders .early-founders__term {
  display: flex;
  align-items: center;
  width: calc((100% - 1.25em) / 2);
  aspect-ratio: 1.41 / 1;
  padding-left: 2.25em;
  border-radius: 10px;
  background: var(--accent-color);
}
.archive__early-founders .early-founders__term .item__term {
  line-height: 1.3;
  font-weight: 400;
  font-size: 2.75rem;
  color: var(--main-color);
}
.archive__early-founders .early-founders__item a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  height: 100%;
  padding: 1.25em;
  border-radius: 10px;
  overflow: hidden;
}
.archive__early-founders .early-founders__item a:before {
  display: block;
  position: absolute;
  width: 100%;
  height: 27%;
  bottom: 0;
  left: 0;
  content: "";
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
}
.archive__early-founders .early-founders__item a:after {
  display: block;
  position: absolute;
  width: 3.125em;
  aspect-ratio: 1 / 1;
  right: 1.25em;
  bottom: 1.25em;
  border: 1px solid var(--main-color);
  border-radius: 3.5px;
  content: "";
  background: url(../img/cmn/cmn__ico-arrow-tr--wh.svg) no-repeat center center;
  background-size: 0.875rem;
  z-index: 2;
}
.archive__early-founders .early-founders__item a .item__tit {
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1.6;
  padding-right: 3.125em;
  font-weight: 400;
  font-family: var(--fm-notojp);
  font-size: 1.1875rem;
  z-index: 2;
  color: var(--main-color);
}
.archive__early-founders .early-founders__item a .item__txt {
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1.6;
  padding-right: 3.125em;
  font-weight: 500;
  font-family: var(--fm-inter);
  font-size: 1.083rem;
  z-index: 2;
  color: var(--main-color);
}
.archive__early-founders .early-founders__item a img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  object-fit: cover;
  transition: 0.3s;
  background: var(--main-color);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.archive__early-founders .early-founders__item a:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}
@media screen and (max-width: 1080px) {
  .archive__early-founders .early-founders__term .item__term {
    font-size: 3.75vw;
  }
}
@media screen and (max-width: 768px) {
  .archive__early-founders {
    margin-bottom: 0 !important;
    padding: 0 !important;
    box-shadow: 0 1px 0 0 var(--accent-color);
  }
  .archive__early-founders .early-founders__list {
    margin: 3.25em 0 0;
    padding: 5.5em 7%;
    background: var(--accent-color);
  }
  .archive__early-founders .early-founders__term {
    width: 100%;
    aspect-ratio: auto;
    padding: 0 0 1.25em;
    background: none;
  }
  .archive__early-founders .early-founders__term .item__term {
    font-size: 2.675rem;
  }
  .archive__early-founders .early-founders__item {
    width: 100%;
    aspect-ratio: 1.41 / 1;
  }
}


/* --------------------------------------------------
 * single__founders
-------------------------------------------------- */
.single__founders {
  margin-top: 12.25em !important;
  padding: 0 !important;
}
.single__founders .founders__profile {
  display: flex;
  justify-content: center;
  margin-top: 4em;
  padding: 0 5.3125em;
  background: var(--accent-color);
}
.single__founders .founders__profile .profile__thumb {
  max-width: 56%;
}
.single__founders .founders__profile .profile__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single__founders .founders__profile .profile__cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.25em;
  width: 44%;
  padding: 5em;
}
.single__founders .founders__profile .cont__catch {
  line-height: 1.6;
  font-weight: 400;
  font-size: 1.8125rem;
  color: var(--main-color);
  letter-spacing: 0.15em;
}
.single__founders .founders__profile .cont__position span {
  display: block;
  line-height: 1.7;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--main-color);
  letter-spacing: 0.05em;
}
.single__founders .founders__cont {
  display: flex;
  margin-top: 11.25em;
  padding: 0 6.25em 0 4.375em;
}
.single__founders .founders__cont .cont__fld01 {
  width: 51.5%;
  padding-right: 3.375em;
}
.single__founders .founders__cont .cont__fld02 {
  width: calc(48.5% - 1px);
  padding-left: 3.375em;
  border-left: 1px solid var(--accent-color);
}
.single__founders .founders__cont .cont__fld02 > div + .fld__relation {
  margin-top: 3.375em;
}
.single__founders .founders__cont .cont__fld02 .relation__tit {
  line-height: 1.6;
  font-weight: 500;
  font-family: var(--fm-notojp);
  font-size: 1.25rem;
  color: var(--accent-color);
}
.single__founders .founders__cont .cont__fld02 .relation__list {
  display: flex;
  flex-direction: column;
  margin-top: 1.25em;
  gap: 0.5em;
}
.single__founders .founders__cont .cont__fld02 .relation__item {
  display: flex;
  align-items: center;
  gap: 0.75em;
}
.single__founders .founders__cont .cont__fld02 .relation__item:before {
  display: block;
  width: 0.675em;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  content: "";
  background: var(--accent-color);
}
.single__founders .founders__cont .cont__fld02 .relation__item a {
  display: block;
  width: calc(100% - 1.425em);
  line-height: 1.8;
  font-weight: 300;
  font-family: var(--fm-notojp);
  font-size: 1rem;
  color: var(--base-color);
}
.single__founders .founders__cont .cont__fld02 * + .fld__official {
  margin-top: 5.675em;
}
.single__founders .founders__cont .cont__fld02 .fld__official {
  text-align: left;
}
.single__founders .founders__cont .cont__fld02 .fld__official span {
  font-size: 0.875rem;
}
.single__founders .founders__cont .cont__fld02 .fld__official a {
  display: inline-block;
}
.single__founders .founders__cont .cont__fld02 .fld__official a img {
  max-height: 3.75em;
}
.single__founders .founders__cont .cont__fld02 * + .fld__back {
  margin-top: 3.75em;
  padding-top: 3.75em;
  border-top: 1px solid var(--accent-color);
}
.single__founders .founders__cont .cont__fld02 .fld__back .cmn__more01 span {
  font-size: 0.875rem;
}
@media screen and (max-width: 1280px) {
  .single__founders .founders__profile .profile__cont {
    padding: 2.5em;
    gap: 20%;
  }
  .single__founders .founders__profile .cont__catch {
    font-size: 2.5vw;
  }
  .single__founders .founders__profile .cont__position span {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  .single__founders {
    margin-top: 10em !important;
  }
  .single__founders .founders__profile {
    flex-direction: column;
    margin-top: 2.75em;
    padding: 0 0 4% 0;
  }
  .single__founders .founders__profile .profile__thumb {
    max-width: 100%;
    height: auto;
  }
  .single__founders .founders__profile .profile__thumb img {
    width: 100%;
  }
  .single__founders .founders__profile .profile__cont {
    width: 100%;
    padding: 2em 6.5%;
    gap: 2em;
  }
  .single__founders .founders__profile .cont__catch {
    line-height: 1.8;
    font-size: 1.75rem;
  }
  .single__founders .founders__profile .cont__position span {
    font-size: 1.125rem;
  }
  .single__founders .founders__cont {
    flex-direction: column;
    margin-top: 5em;
    padding: 0 6.5%;
  }
  .single__founders .founders__cont .cont__fld01 {
    width: 100%;
    padding: 0 0 3.375em 0;
  }
  .single__founders .founders__cont .cont__fld02 {
    width: 100%;
    padding: 3.375em 0 0 0;
    border-top: 1px solid var(--accent-color);
    border-left: none;
  }
  .single__founders .founders__cont .cont__fld02 .relation__tit {
    font-size: 1.5rem;
  }
  .single__founders .founders__cont .cont__fld02 .relation__item a {
    font-size: 1.16rem;
  }
  .single__founders .founders__cont .cont__fld02 .relation__item {
    align-items: baseline;
  }
  .single__founders .founders__cont .cont__fld02 .fld__official {
    margin-top: 3em;
  }
  .single__founders .founders__cont .cont__fld02 .fld__back {
    margin-top: 3em;
    padding-top: 3em;
  }
  .single__founders
    .founders__cont
    .cont__fld02
    .fld__official
    .cmn__more01--bl
    span,
  .single__founders .founders__cont .cont__fld02 .fld__back .cmn__more01 span {
    font-size: 1rem;
  }
}
