@charset "UTF-8";
@import url("define.css");
@import url("reset.css");
@import url("menu.css");

a {
  color: var(--color-text-link);
}
img {
  max-width: 100%;
  height: auto;
}

.wrapper {
  --webkit-text-size-adjust: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #0d0f1d;
  letter-spacing: 0.04em;
  background-image: url("/en/common/img/bg-deco.png"),
    url("/en/common/img/bg-body.png");
  background-repeat: no-repeat, repeat;
  background-position: right top, left top;
  text-size-adjust: 100%;
}

@media screen and (max-width: 768px) {
  .wrapper {
    background-image: url("/en/common/img/bg-deco-sp.png"),
      url("/en/common/img/bg-body.png");
    background-size: 79.4871vw 55.641vw, contain;
  }
}

/* Header */
header {
  z-index: 2;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 32px;
  margin: 0;
}

header .logo {
  width: 161px;
}

@media screen and (max-width: 768px) {
  header {
    z-index: 100;
    padding: calc((12 / var(--sp-best-view)) * var(--vw-base));
  }
  header .logo {
    width: 122px;
  }
}

.hamburger {
  position: fixed;
  top: calc((40 / 1440) * 100vw);
  right: calc((32 / 1440) * 100vw);
}
@media screen and (max-width: 768px) {
  .hamburger {
    top: calc((22 / 388) * 100vw);
    right: calc((10 / 388) * 100vw);
  }
}

.hamburger {
  width: 64px;
  height: 17px;
}
.hamburger > *::before {
  top: -8px;
}
.hamburger > *::after {
  bottom: -8px;
}
@media screen and (max-width: 1920px) {
  .hamburger {
    width: 56px;
    height: 15px;
  }
  .hamburger > *::before {
    top: -7px;
  }
  .hamburger > *::after {
    bottom: -7px;
  }
}
@media screen and (max-width: 1680px) {
  .hamburger {
    width: 48px;
    height: 13px;
  }
  .hamburger > *::before {
    top: -6px;
  }
  .hamburger > *::after {
    bottom: -6px;
  }
}
@media screen and (max-width: 1200px) {
  .hamburger {
    width: 40px;
    height: 11px;
  }
  .hamburger > *::before {
    top: -5px;
  }
  .hamburger > *::after {
    bottom: -5px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 60px;
    height: 19px;
  }
  .hamburger > *::before {
    top: -9px;
  }
  .hamburger > *::after {
    bottom: -9px;
  }
}
@media screen and (max-width: 582px) {
  .hamburger {
    width: 50px;
    height: 15px;
  }
  .hamburger > *::before {
    top: -7px;
  }
  .hamburger > *::after {
    bottom: -7px;
  }
}
@media screen and (max-width: 485px) {
  .hamburger {
    width: 40px;
    height: 13px;
  }
  .hamburger > *::before {
    top: -6px;
  }
  .hamburger > *::after {
    bottom: -6px;
  }
}

.nav-contents {
  padding-top: min(calc((16 / 1440) * 100vw), calc((16 / 1440) * 1920px));
  padding-right: min(calc((48 / 1440) * 100vw), calc((48 / 1440) * 1920px));
  padding-left: min(calc((48 / 1440) * 100vw), calc((48 / 1440) * 1920px));
  font-weight: 300;
  color: var(--color-white);
  background-color: #283244;

  a {
    color: inherit;
  }
}
@media screen and (max-width: 768px) {
  .nav-contents {
    padding-top: calc((120 / 388) * 100vw);
    padding-right: calc((32 / 388) * 100vw);
    padding-left: calc((32 / 388) * 100vw);
  }
}

header nav h1 {
  display: none;
}

header nav .links {
  display: block;
  margin-top: min(calc((60 / 1440) * 100vw), calc((60 / 1440) * 1920px));
  font-size: clamp(16px, calc((30 / 1440) * 100vw), 40px);
  line-height: 1;
}
header nav .links li + li {
  margin-top: min(calc((32 / 1440) * 100vw), calc((32 / 1440) * 1920px));
}
@media screen and (max-width: 768px) {
  header nav .links {
    display: block;
    margin-top: 0;
    font-size: clamp(16px, calc((26 / 388) * 100vw), 40px);
  }
  header nav .links li + li {
    margin-top: calc((24 / 388) * 100vw);
  }
}

header nav .langlist {
  display: flex;
  font-size: clamp(12px, calc((16 / 1440) * 100vw), 21px);
  font-weight: 600;
}
header nav .langlist li {
  display: grid;
  place-items: center;
  width: min(calc((64 / 1440) * 100vw), calc((64 / 1440) * 1920px));
  height: min(calc((64 / 1440) * 100vw), calc((64 / 1440) * 1920px));
}
header nav .langlist .current {
  background: url("/en/common/img/icon-nav-language.svg") center center
    no-repeat;
  background-size: 100%;
}
header nav .langlist a {
  display: block;
  width: 100%;
  font-weight: 400;
  line-height: min(calc((64 / 1440) * 100vw), calc((64 / 1440) * 1920px));
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 768px) {
  header nav .langlist {
    position: absolute;
    top: 0;
    left: 0;
  }
  header nav .langlist {
    display: flex;
    font-size: clamp(10px, calc((14 / 388) * 100vw), 18px);
    font-weight: 600;
  }
  header nav .langlist li {
    display: grid;
    place-items: center;
    width: calc((64 / 388) * 100vw);
    height: calc((64 / 388) * 100vw);
  }
  header nav .langlist a {
    line-height: calc((64 / 388) * 100vw);
  }
}

main {
  flex: 1;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 17.9897vw;
    overflow: hidden;
  }
}

/* Footer */
footer {
  position: relative;
  padding: clamp(0px, 82 / 1440 * 100vw, 82px) 0
    clamp(0px, 40 / 1440 * 100vw, 40px);
  font-size: clamp(10px, 12 / 1440 * 100vw, 16px);
  font-weight: 250;
  color: #ffffff;
  background: #010a14;
}
footer > * {
  display: flex;
  /* grid-template-columns: repeat(3, 1fr); */
  gap: 0 min(calc((112 / 1440) * 100vw), calc((112 / 1440) * 1920px));
  width: min(calc((1296 / 1440) * 100vw), calc((1296 / 1440) * 1920px));
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  footer {
    padding: calc(64 / 388 * 100vw) calc(1 / 15 * 100vw) calc(20 / 388 * 100vw);
    font-size: clamp(10px, 12 / 388 * 100vw, 16px);
  }
  footer > * {
    width: auto;
    margin: 0;
  }
}

footer a {
  color: #ffffff;
}

.page_top_button {
  position: absolute;
  top: calc((-43 / 1440) * 1920px);
  right: calc((100vw - 1728px) / 2);
  display: block;
  width: 56px;
}

@media screen and (max-width: 1920px) {
  footer > .page_top_button {
    right: calc((72 / 1440) * 100vw);
  }
}
@media screen and (max-width: 768px) {
  footer > .page_top_button {
    right: 6.66vw;
    width: calc((40 / 388) * 100vw);
  }
}

footer > .page_top_button img {
  width: 100%;
  height: 100%;
}
.footer-contact-link {
  display: flex;
  place-content: center;
  align-items: center;
  justify-content: center;
  width: min(calc((224 / 1440) * 100vw), calc((224 / 1440) * 1920px));
  height: min(calc((40 / 1440) * 100vw), calc((40 / 1440) * 1920px));
  font-size: clamp(10px, calc((14 / 1440) * 100vw), 18px);
  font-weight: 400;
  line-height: 1;
  background: #b6af99;
  border-radius: 10vh;
}

.footer-contact-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #3f3414;
}

@media screen and (max-width: 768px) {
  .footer-contact-link {
    width: calc((193 / 388) * 100vw);
    height: calc((32 / 388) * 100vw);
    font-size: clamp(10px, calc((14 / 388) * 100vw), 18px);
  }
}

.footer-misc-contents-lists {
  display: flex;
  gap: clamp(0px, 112 / 1440 * 100vw, 112px);
  font-size: clamp(12px, 16 / 1440 * 100vw, 21px);
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .footer-misc-contents-lists {
    gap: clamp(0px, 127 / 388 * 100vw, 127px);
    justify-content: space-between;
    margin-top: clamp(0px, 40 / 388 * 100vw, 40px);
    font-size: clamp(0px, 16 / 388 * 100vw, 16px);
  }
}

@media screen and (max-width: 768px) {
  footer > .contact-links {
    grid-template-columns: 1fr 50vw;
    padding-bottom: 12.3vw;
  }
  footer > .contact-links .link {
    text-align: right;
  }
  footer > .contact-links .link a {
    width: 100%;
    height: calc(32 / 388 * 100vw);
    font-size: clamp(10px, calc(14 / 388 * 100vw), 18px);
    font-weight: 400;
  }
}

footer > .other-links {
  position: relative;
}

footer > .other-links .contents-list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-template-columns: repeat(
    1,
    min(calc((112 / 1440) * 100vw), calc((112 / 1440) * 1920px))
  );
  grid-auto-flow: column;
  gap: min(calc((22 / 1440) * 100vw), calc((22 / 1440) * 1920px)) 0;
}

footer > .other-links .misc-list li + li {
  margin-top: min(calc((12 / 1440) * 100vw), calc((12 / 1440) * 1920px));
  font-size: clamp(12px, 16 / 1440 * 100vw, 21px);
}
footer > .other-links .sns-list {
  position: absolute;
  right: 0;
  justify-self: right;
}

@media screen and (max-width: 768px) {
  footer > .other-links {
    display: block;
    margin-top: 0;
  }
  footer > .other-links .contents-list {
    display: block;
  }
  footer > .other-links .contents-list li + li {
    margin-top: calc((28 / 388) * 100vw);
  }
  footer > .other-links .misc-list {
    justify-self: right;
  }

  footer > .other-links .misc-list li + li {
    margin-top: calc((20 / 388) * 100vw);
  }
  footer > .other-links .sns-list {
    bottom: 0;
    gap: calc((24 / 388) * 100vw);
  }
}

footer > .credits {
  /* display: flex; */
  align-items: end;
  justify-content: space-between;
  margin-top: min(calc((160 / 1440) * 100vw), calc((160 / 1440) * 1920px));
}
footer > .credits .logo {
  justify-self: right;
}
footer > .credits .logo img {
  width: min(calc((224 / 1440) * 100vw), calc((224 / 1440) * 1920px));
  height: min(calc((57 / 1440) * 100vw), calc((57 / 1440) * 1920px));
}

.copyright {
  margin-left: clamp(0px, 83 / 1440 * 100vw, 83px);
}

@media screen and (max-width: 768px) {
  footer > .credits {
    flex-direction: column;
    align-items: center;
    margin-top: 20vw;
    margin-left: 0;
  }
  footer > .credits .address {
    grid-row: 2 / 3;
    padding-top: calc(32 / 388 * 100vw);
    padding-bottom: calc(48 / 388 * 100vw);
    text-align: center;
  }
  footer > .credits .copyright {
    grid-row: 3 / 4;
    font-size: calc(10 / 388 * 100vw);
    text-align: center;
  }
  footer > .credits .logo {
    justify-self: center;
    order: -1;
  }
  footer > .credits .logo img {
    width: calc(138 / 388 * 100vw);
    height: calc(35 / 388 * 100vw);
  }
}

/* SNS icon */
.sns-list {
  display: flex;
  gap: min(calc((20 / 1440) * 100vw), calc((20 / 1440) * 1920px));
}
header nav .sns-list {
  margin-top: min(calc((72 / 1440) * 100vw), calc((72 / 1440) * 1920px));
}
header nav .sns-list li {
  width: min(calc((24 / 1440) * 100vw), calc((24 / 1440) * 1920px));
  height: min(calc((24 / 1440) * 100vw), calc((24 / 1440) * 1920px));
}
footer .sns-list li {
  width: clamp(16px, calc((22 / 1440) * 100vw), calc((22 / 1440) * 1920px));
  height: clamp(16px, calc((22 / 1440) * 100vw), calc((22 / 1440) * 1920px));
}
.white img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(0%)
    hue-rotate(310deg) brightness(101%) contrast(101%);
}
@media screen and (max-width: 768px) {
  .sns-list {
    gap: clamp(20px, 24 / 388 * 100vw, 24px);
  }
  header nav .sns-list {
    margin-top: calc((64 / 388) * 100vw);
  }
  header nav .sns-list li {
    width: calc((24 / 388) * 100vw);
    height: calc((24 / 388) * 100vw);
  }
  footer .sns-list li {
    width: calc((24 / 388) * 100vw);
    height: calc((24 / 388) * 100vw);
  }
}

/* breadcrumbs */
.breadcrumbs-area {
  padding-top: min(
    calc((120 / var(--pc-best-view)) * var(--vw-base)),
    calc((120 / var(--pc-best-view)) * var(--max-width))
  );
  padding-bottom: min(
    calc((12 / var(--pc-best-view)) * var(--vw-base)),
    calc((12 / var(--pc-best-view)) * var(--max-width))
  );
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  font-size: var(--font-size-xs);
  line-height: 1;
}

.breadcrumbs-list li {
  position: relative;
  line-height: 1.6;
  white-space: nowrap;
  &:last-child {
    flex-shrink: 1;
    white-space: normal;
  }
}

.breadcrumbs-list li {
  padding-right: calc((16 / var(--pc-best-view)) * var(--vw-base));
}

.breadcrumbs-list a {
  position: relative;
  display: block;
  padding-right: calc((7 / var(--pc-best-view)) * var(--vw-base));
  font-family: var(--font-family-bold);
  font-weight: bold;
  color: var(--color-blue);
}

.breadcrumbs-list a::after {
  position: absolute;
  top: 0;
  right: calc((-7 / var(--pc-best-view)) * var(--vw-base));
  bottom: 0;
  width: calc((5 / var(--pc-best-view)) * var(--vw-base));
  height: calc((8.333 / var(--pc-best-view)) * var(--vw-base));
  margin: auto;
  content: "";
  background-image: url("/en/common/img/icon-arrow.svg");
}

@media screen and (max-width: 768px) {
  .breadcrumbs-area {
    padding-top: calc((100 / var(--sp-best-view)) * var(--vw-base));
    padding-bottom: calc((17 / var(--sp-best-view)) * var(--vw-base));
  }

  .breadcrumbs-list {
    font-size: calc((12 / var(--sp-best-view)) * var(--vw-base));
  }

  .breadcrumbs-list li {
    padding-right: calc((16 / var(--sp-best-view)) * var(--vw-base));
  }
  .breadcrumbs-list a {
    padding-right: calc((7 / var(--sp-best-view)) * var(--vw-base));
  }

  .breadcrumbs-list a::after {
    right: calc((-7 / var(--sp-best-view)) * var(--vw-base));
    width: calc((5 / var(--sp-best-view)) * var(--vw-base));
    height: calc((8.333 / var(--sp-best-view)) * var(--vw-base));
  }
}

/* common parts */
.icon-blue01 {
  /* background-color: #0866FF; */
  filter: invert(25%) sepia(61%) saturate(4429%) hue-rotate(215deg)
    brightness(102%) contrast(102%);
}
.icon-blue02 {
  /* background-color: #0A66C1 */
  filter: invert(23%) sepia(77%) saturate(2615%) hue-rotate(197deg)
    brightness(93%) contrast(92%);
}

.content-box {
  width: 100%;
  max-width: 1920px;
  padding: 0
    min(
      calc((72 / var(--pc-best-view)) * var(--vw-base)),
      calc((72 / var(--pc-best-view)) * var(--max-width))
    );
  margin: 0 auto;
}
.content-box.type02 {
  padding: 0 5% 0 0;
}

@media screen and (max-width: 1024px) {
  .content-box {
    min-width: inherit;
    max-width: inherit;
  }
}
@media screen and (max-width: 768px) {
  .content-box {
    padding: 0 calc((26 / var(--sp-best-view)) * var(--vw-base));
  }
  .content-box.type02 {
    padding: 0 clamp(0px, 26 / var(--sp-best-view) * var(--vw-base), 26px) 0;
  }
  .content-box.type03 {
    padding: 0 clamp(0px, 26 / var(--sp-best-view) * var(--vw-base), 26px);
  }
  .content-box.sp-w100 {
    padding: 0;
  }
}

@media screen and (min-width: 769px) {
  .rotate {
    display: inline-block;
    text-decoration: none;
    perspective: 300px;
  }

  .rotate > span {
    display: block;
    height: 18px;
    transition: transform 0.6s;
    backface-visibility: hidden;
  }

  .rotate > span:first-child {
    transform: translateY(10px) rotateX(0deg);
  }

  .rotate > span:last-child {
    transform: rotateX(-90deg);
  }

  .rotate:hover > span:first-child {
    transform: rotateX(90deg);
  }

  .rotate:hover > span:last-child {
    transform: translateY(-10px) rotateX(0deg);
  }

  .top-slider-ph-img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease-in;
  }

  .zoom {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
  }

  .zoom img {
    height: auto;
    transition: all 0.5s ease-in;
  }

  .zoom:hover img {
    transform: scale(1.05);
  }
}

@media screen and (max-width: 769px) {
  .rotate > span:nth-child(2) {
    display: none;
  }
}

/* content-ttl */
.content-ttl-area {
  padding-bottom: 121px;
}
.content-ttl {
  display: inline-block;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.08em;
}
.content-ttl::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  vertical-align: bottom;
  content: "";
  background: url("/en/common/img/icon-title-common.svg") 0 0 no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .content-ttl-area {
    padding-bottom: clamp(0px, 60/388 * 100vw, 60px);
  }
  .content-ttl {
    font-size: 4.6153vw;
  }
  .content-ttl::before {
    width: 6.1538vw;
    height: 6.1538vw;
    margin-right: 2vw;
    vertical-align: text-bottom;
  }
}

/* founders & Team */

/* slider */
.top-slider-wrap {
  max-width: 1920px;
  margin: min(
      calc((8 / var(--pc-best-view)) * var(--vw-base)),
      calc((8 / var(--pc-best-view)) * var(--max-width))
    )
    auto;
}

.top-slider-list .slick-list {
  padding-bottom: min(
    calc((48 / var(--pc-best-view)) * var(--vw-base)),
    calc((48 / var(--pc-best-view)) * var(--max-width))
  );

  margin: 0 0
    min(
      calc((19 / var(--pc-best-view)) * var(--vw-base)),
      calc((19 / var(--pc-best-view)) * var(--max-width))
    );

  &::-webkit-scrollbar {
    display: none;
  }
}

.top-slider-list {
  margin: 0 auto 38px;
}

.top-slider-list-item > .top-slider-list-item-center {
  margin: 0 clamp(0px, 24/1440 * 100vw, 24px);
}

@media screen and (min-width: 1920px) {
  .top-slider-list-item > .top-slider-list-item-center {
    margin: 0;
  }
}

.top-slider-ph {
  position: relative;
  margin: 0 auto;
}

.top-slider-ph a {
  position: relative;
  display: block;
  overflow: hidden;
}
.top-slider-info {
  position: relative;
  width: 100%;
}

.top-slider-info span {
  position: relative;
}

.top-slider-info .member-name {
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}

.top-slider-info .member-position {
  display: block;
  font-size: 12px;
}

/* ベースとなるicnクラスのスタイルを定義 */
.top-founder .top-slider-info .icn-founder::before {
  position: absolute;
  top: -32px;
  left: calc(50% - 15px);
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  content: "";
  background-size: contain;
}

/* nth-childを使って順番にアイコンを割り当て */
.top-slider-list-item:nth-child(3n + 1) .icn-founder::before {
  background: url("/en/img/top/top_icon01.svg") 0 0 no-repeat;
}

.top-slider-list-item:nth-child(3n + 2) .icn-founder::before {
  background: url("/en/img/top/top_icon02.svg") 0 0 no-repeat;
}

.top-slider-list-item:nth-child(3n + 3) .icn-founder::before {
  background: url("/en/img/top/top_icon03.svg") 0 0 no-repeat;
}

.top-team .top-slider-info .icn-team::before {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-top: -4px;
  margin-right: 10px;
  vertical-align: middle;
  content: "";
  background-size: contain;
}

.top-slider-list-item:nth-child(3n + 1) .icn-team::before {
  background: url("/en/img/top/top_icon04.svg") 0 0 no-repeat;
}

.top-slider-list-item:nth-child(3n + 2) .icn-team::before {
  background: url("/en/img/top/top_icon05.svg") 0 0 no-repeat;
}

.top-slider-list-item:nth-child(3n + 3) .icn-team::before {
  background: url("/en/img/top/top_icon06.svg") 0 0 no-repeat;
}

@media screen and (max-width: 768px) {
  .slick-track {
    width: calc(114% * 4) !important;
  }
  .top-founder,
  .top-team {
    .top-slider-list .slick-list {
      overflow: visible !important;
    }
  }
  .top-founder .top-slider-info .icn-founder.icn::before {
    position: relative;
    top: inherit;
    left: inherit;
    display: inline-block;
    width: clamp(0px, 30/388 * 100vw, 30px);
    height: clamp(0px, 30/388 * 100vw, 30px);
    margin-top: -1vw;
    margin-right: 1.5384vw;
    vertical-align: middle;
  }
}

/* founders & Team */
.top-founder {
  padding: 138px 0;
  text-align: center;
}
.top-team {
  position: relative;
  padding: 138px 0;
  overflow: hidden;
  text-align: center;
}

.shapes-background {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-rows: repeat(auto-fill, 118px);
  grid-template-columns: repeat(auto-fill, 118px);
  gap: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape-item {
  width: 118px;
  height: 118px;
}

.top-founder .founder-cate {
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: 1;
  font-size: 20px;
  font-style: italic;
  color: #fff;
}

.top-founder .top-slider-info {
  padding-top: 50px;
}

.top-team .top-slider-info {
  padding-top: 8px;
}

@media screen and (min-width: 769px) {
  .top-slider-ph .founder-info {
    position: absolute;
    bottom: -1px;
    left: 0;
    display: block;
    width: 100%;
    min-height: 160px;
    padding: 70px clamp(0px, 20/1440 * 100vw, 20px)
      clamp(0px, 20/1440 * 100vw, 20px) clamp(0px, 30/1440 * 100vw, 30px);
    clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
    font-size: clamp(0px, 18/1440 * 100vw, 18px);
    color: #000;
    text-align: left;
    background: rgba(185, 202, 213, 0.9);
    transition: all 0.5s ease-in;
  }

  .top-slider-ph-mouse {
    position: fixed;
    top: calc((-67 / 1440) * 100vw);
    left: calc((-26 / 1440) * 100vw);
    z-index: 1;
    float: left;
    width: min(calc((88 / 1440) * 100vw), calc((88 / 1440) * 1920px));
    pointer-events: none;
    mix-blend-mode: difference;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.14, 1, 0.34, 1),
      opacity 0.6s cubic-bezier(0.14, 1, 0.34, 1);
  }

  .top-slider-ph-mouse .slider-cursor {
    width: 100%;
  }
}

@media screen and (min-width: 1920px) {
  .top-slider-ph .founder-info {
    padding: 70px clamp(0px, 12/1920 * 100vw, 12px)
      clamp(0px, 20/1920 * 100vw, 20px) clamp(0px, 12/1920 * 100vw, 12px);
    font-size: clamp(0px, 16/1920 * 100vw, 16px);
  }
}

@media screen and (max-width: 768px) {
  .top-slider-wrap {
    min-width: 99%;
    max-width: 99%;
    margin: 6.1538vw 0 0 3.0769vw;
  }

  .top-slider-list {
    max-width: 100%;
    margin: 0 auto;
  }

  .top-slider-list-item {
    margin-right: 3.846vw;
  }
  .top-slider-list-item .top-slider-list-item-center {
    margin: 0 3.846vw 0 0;
  }

  .top-slider-ph a {
    overflow: visible;
    color: #000;
  }

  .top-slider-info .member-name {
    width: clamp(0px, 280 / 388 * 100vw, 280px);
    font-size: clamp(0px, 18 / 388 * 100vw, 18px);
    text-align: left;
  }

  .top-slider-info .member-position {
    font-size: clamp(0px, 12 / 388 * 100vw, 12px);
  }
  .top-founder .top-slider-list .member-position {
    width: clamp(0px, 164 / 388 * 100vw, 164px);
    text-align: right;
  }
  .top-team .top-slider-list .member-position {
    text-align: center;
  }

  /* founders & Team */
  .top-founder,
  .top-team {
    padding: 19.4871vw 0 19.4871vw 0;
  }
  .top-team {
    background-size: 22.8205vw;
  }

  .top-founder .top-slider-info,
  .top-team .top-slider-info {
    top: 0;
    left: 0;
    padding-top: 3.0769vw;
  }

  .top-founder .top-slider-info {
    display: flex;
    gap: clamp(0px, 5 / 388 * 100vw, 5px);
    align-items: center;
    justify-content: space-between;
    line-height: 1.2;
  }
  .top-founder .top-slider-list-item {
    padding-bottom: clamp(0px, 240 / 388 * 100vw, 240px);
  }

  .top-team .top-slider-list-item {
    padding-bottom: clamp(0px, 0 / 388 * 100vw, 120px);
  }

  .top-slider-ph .founder-info {
    position: absolute;
    top: 114%;
    left: 0;
    padding: 0;
    font-size: clamp(0px, 18 / 388 * 100vw, 18px);
    line-height: 1.3;
    text-align: left;
  }

  .top-slider-ph-mouse {
    display: none;
  }
}

/* insights */
a.toptxtlink {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-bottom: 4px;
  margin-top: 48px;
  color: #0d0f1d;
  border-bottom: 1px solid #0d0f1d;
}

.top-insights {
  padding: 160px 0 0;
  text-align: center;
}

.top-insights-list {
  display: flex;
  gap: 0 48px;
  justify-content: space-around;
  width: 100%;

  a {
    color: var(--color-dark-blue);
  }
}

.top-insights-list-item {
  width: 33%;
}

.top-insights-list-item .txt {
  margin-top: 10px;
}
.top-insights > a.toptxtlink {
  margin-top: 48px;
  color: #292218;
}
@media screen and (max-width: 768px) {
  .top-insights {
    padding: 30.7692vw 0 0;
  }

  .top-insights-list {
    flex-direction: column;
    gap: 12.769vw;
    width: 100%;
  }

  .top-insights-list-item {
    width: 100%;
  }
  .top-insights-list-item .txt {
    margin-top: 2.5641vw;
    font-size: 4.1025vw;
  }
  .top-insights > a.toptxtlink {
    margin-top: 10.2564vw;
  }
}

/* next */
.next-area {
  display: none;
}

.next-box {
  display: flex;
  align-items: center;
}

.next-box .txtarea {
  width: 51.6666%;
}
.next-box a.linkarea {
  width: 48.3333%;
}
.next-box .txtarea {
  padding-right: 48px;
}

.next-box .txtarea .txt {
  position: relative;
  width: 400px;
  margin: 0 0 0 auto;
  font-size: 26px;
  font-weight: 200;
  line-height: 1.3;
  text-align: left;
}

.next-box .txtarea .txt::before {
  position: absolute;
  top: -34px;
  left: 0;
  font-size: 14px;
  font-weight: 200;
  content: "Next";
}

@media screen and (max-width: 768px) {
  .next-box .txtarea .txt::before {
    top: -19px;
  }
}

.next-box a.linkarea {
  position: relative;
  display: grid;
  align-items: center;
  height: 272px;
}

.next-box a.linkarea::before {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: polygon(175px 0, 100% 0, 100% 100%, 0 100%);
  content: "";
  background: #b9cad530 url("/en/common/img/linkarea-deco-tra.png") 0 0 /
    auto 100% no-repeat;
  transition: all 0.5s ease-in-out;
}

.next-box a.linkarea::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 175px 100%);
  content: "";
  background: #b9cad530;
  transition: all 0.5s ease-in-out;
}

.next-box a.linkarea .linktxt {
  position: relative;
  z-index: 1;
  padding-left: 224px;
  font-size: 30px;
  font-weight: 200;
}

.next-box a.linkarea .linkline {
  position: absolute;
  top: 136px;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 176px;
  border-top: 1px solid #3a4479;
  transition: all 0.5s ease-in-out;
}

@media screen and (min-width: 768px) {
  .next-box a.linkarea:hover::after {
    background: #b9cad570;
  }

  .next-box a.linkarea:hover::before {
    background: rgba(154, 187, 208, 0.5)
      url("/en/common/img/linkarea-deco.png") 0 0 / auto 100% no-repeat;
  }

  .next-box a.linkarea:hover .linkline {
    left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .next-box {
    flex-direction: column;
  }

  .next-box .txtarea,
  .next-box a.linkarea {
    width: 100%;
  }

  .next-box .txtarea {
    padding: 0 7.1794vw;
    text-align: left;
  }

  .next-box a.linkarea {
    position: relative;
    display: block;
    height: auto;
    padding-top: 22.0512vw;
    padding-bottom: 12.3076vw;
    text-align: center;
  }

  .next-box .txtarea .txt {
    width: 100%;
    margin: auto;
    font-size: 5.1282vw;
  }

  .next-box a.linkarea .linkline {
    top: 12vw;
    left: calc(50% - 7.17945vw);
    width: 14.3589vw;
    transform: rotate(90deg);
  }

  .next-box a.linkarea .linktxt {
    padding-top: 18vw;
    padding-left: 0;
    font-size: 6.6666vw;
  }

  .next-box a.linkarea::before {
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
    background: rgba(185, 202, 213, 0.3);
  }

  .next-box a.linkarea::after {
    clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
    background: rgba(185, 202, 213, 0.3);
  }
}

/* common */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.ttl-01 {
  font-size: 56px;
  letter-spacing: 0;
}

.ttl-02 {
  font-size: 48px;
  letter-spacing: 0;
}

.ttl-03 {
  font-size: 40px;
  letter-spacing: 0;
}

.ttl-04 {
  font-size: 32px;
  letter-spacing: 0.04em;
}

.lh-s {
  line-height: 1.2;
}

.lh-m {
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .ttl-01 {
    font-size: 10.2564vw;
  }

  .ttl-02 {
    font-size: 9.2307vw;
  }

  .ttl-03 {
    font-size: 8.2051vw;
  }

  .ttl-04 {
    font-size: 6.6666vw;
    line-height: 1.4;
  }
}

.mt-l {
  margin-top: 50px;
}

.mt-m {
  margin-top: 25px;
}

.mt-s {
  margin-top: 10px;
}

.mb-l {
  margin-bottom: 50px;
}

.mb-m {
  margin-bottom: 25px;
}

.mb-s {
  margin-bottom: 10px;
}

.pt-l {
  padding-top: 50px;
}

.pt-m {
  padding-top: 25px;
}

.pt-s {
  padding-top: 10px;
}

.pb-l {
  padding-bottom: 50px;
}

.pb-m {
  padding-bottom: 25px;
}

.pb-s {
  padding-bottom: 10px;
}

.bold-1 {
  font-weight: 400;
}

.bold-2 {
  font-weight: 600;
}

.bold-3 {
  font-weight: 800;
}

.underline {
  text-decoration: underline;
}

.w100 {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .mt-l {
    margin-top: 12.8205vw;
  }

  .mt-m {
    margin-top: 6.4102vw;
  }

  .mt-s {
    margin-top: 2.5641;
  }

  .mb-l {
    margin-bottom: 12.8205vw;
  }

  .mb-m {
    margin-bottom: 6.4102vw;
  }

  .mb-s {
    margin-bottom: 2.5641;
  }

  .pt-l {
    padding-top: 12.8205vw;
  }

  .pt-m {
    padding-top: 6.4102vw;
  }

  .pt-s {
    padding-top: 2.5641;
  }

  .pb-l {
    padding-bottom: 12.8205vw;
  }

  .pb-m {
    padding-bottom: 6.4102vw;
  }

  .pb-s {
    padding-bottom: 2.5641vw;
  }
}

.h2-ttl {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 40px;
  letter-spacing: 0;
}

.h3-ttl {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 30px;
}

.h4-ttl {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .h2-ttl {
    margin-bottom: 5.641vw;
    font-size: 7.6923vw;
  }

  .h3-ttl {
    margin-bottom: 5.641vw;
    font-size: 7.1794vw;
  }

  .h4-ttl {
    margin-bottom: 5.641vw;
    font-size: 6.1538vw;
  }
}
