.sub-visual {
  width: 100%;
	padding: 24.4025% 0;
  position: relative;
  overflow: hidden;
}
.sub-visual .bg,
.sub-visual .bg *,
.sub-visual .text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-visual .bg {
  clip-path: circle(0% at 50% 50%);
  z-index: -1;
  transition: all 1.6s linear;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.sub-visual .bg figure,
.sub-visual .bg img {
  min-width: 100%;
  min-height: 100%;
}
.sub-visual .bg figure {
  transform: translate(-50%, -50%) scale(1.1);
  transition: all 1.2s;
}
.sub-visual .bg img {
  max-width: inherit;
  max-height: inherit;
}
.sub-visual .text {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-visual .text * {
  font-family: var(--font-garamond);
}
.sub-visual .scroll {
  display: flex;
  flex-direction: column;
	row-gap: 10px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: auto;
  left: 50%;
  right: auto;
  bottom: 0;
  transform: translateX(-50%);
}
.sub-visual .scroll p {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}
.sub-visual .scroll .bar {
  width: 1px;
  height: 70px;
  background: rgba(217, 217, 217, 0.1);
  position: relative;
  overflow: hidden;
}
.sub-visual .scroll .bar span {
  display: block;
  width: 1px;
  height: 200%;
  background: #d9d9d9;
  animation: scroll 1.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
}
@keyframes scroll {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(50%);
  }
}
.sub-visual.on .bg {
  clip-path: circle(100% at 50% 50%);
}
.sub-visual.on .bg figure {
  transform: translate(-50%, -50%) scale(1);
}

.col120,
.col150 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.col120 {
	row-gap: 120px;
}

.col150 {
	row-gap: 150px;
}

.sub-page {
  padding-bottom: 20px;
}

.sub-contents .bg-gray {
  text-align: center;
  padding: 120px 0;
}
.sub-contents .bg-gray p {
  color: #111;
}
.sub-contents .sub-flex {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .sub-flex > * {
  width: 100%;
}
.sub-contents .sub-flex > *:first-child {
  max-width: 28.125%;
  flex-shrink: 0;
}
.sub-contents h4 {
  font-weight: 700;
  font-family: var(--font-garamond);
}
.sub-contents .company .img {
	flex-shrink: 0;
}
.sub-contents .company h3 {
  margin: 0 0 40px;
}
.sub-contents .company .information .item {
  display: flex;
  flex-direction: row;
	column-gap: 100px;
  align-items: center;
  justify-content: space-between;
}
.sub-contents .company .information .item h3 {
  font-weight: 700;
}
.sub-contents .company .history .top,
.sub-contents .company .history .list-box {
  width: 100%;
}
.sub-contents .company .history .top {
  text-align: center;
}
.sub-contents .company .history .top p {
  font-size: 2.6rem;
}
.sub-contents .company .history .list-box {
  position: relative;
}
.sub-contents .company .history .bar {
  width: 1px;
  height: 100%;
  background: #222;
  overflow-y: clip;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.sub-contents .company .history .bar span {
  display: block;
  width: 100%;
  height: 0;
  background: var(--color-main);
  transition: all 0.6s;
  position: absolute;
  top: 0;
  left: 0;
}
.sub-contents .company .history .list {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
	row-gap: 60px;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .company .history .list dl {
  width: calc(50% - 60px);
  display: flex;
  flex-direction: row;
	column-gap: 45px;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .company .history .list dl dt {
  font-size: 3.6rem;
  font-weight: 700;
  font-family: var(--font-garamond);
  margin: -0.25em 0 0;
  position: relative;
}
.sub-contents .company .history .list dl dt span,
.sub-contents .company .history .list dl dt span::before,
.sub-contents .company .history .list dl dt span::after {
  display: block;
  border-radius: 50%;
  transition: all 0.8s;
}
.sub-contents .company .history .list dl dt span {
  width: 7px;
  height: 7px;
  background: #222;
  left: -63.5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.sub-contents .company .history .list dl dt span::before, .sub-contents .company .history .list dl dt span::after {
  content: "";
  z-index: -1;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .company .history .list dl dt span::before {
  background: transparent;
  box-shadow: 0 0 20px rgba(128, 0, 32, 0.5);
}
.sub-contents .company .history .list dl dt span::after {
  background: rgba(128, 0, 32, 0.2);
}
.sub-contents .company .history .list dl dd {
  display: flex;
  flex-direction: column;
	row-gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .company .history .list dl p {
  line-height: 1.3;
  display: flex;
  flex-direction: row;
	column-gap: 5px;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .company .history .list dl p::before {
  content: "-";
}
.sub-contents .company .history .list dl:not(.reverse) {
  margin-left: auto;
}
.sub-contents .company .history .list dl.reverse {
  flex-direction: row-reverse;
}
.sub-contents .company .history .list dl.reverse dt span {
  left: auto;
  right: -63.5px;
}
.sub-contents .company .history .list dl.reverse dd {
  align-items: flex-end;
  text-align: right;
}
.sub-contents .company .history .list dl.reverse p {
  flex-direction: row-reverse;
}
.sub-contents .company .history .list dl.on dt span {
  background: var(--color-main);
}
.sub-contents .company .history .list dl.on dt span::before, .sub-contents .company .history .list dl.on dt span::after {
  width: 31px;
  height: 31px;
  opacity: 1;
}
.sub-contents .strategy .process {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}
.sub-contents .strategy .process .radius {
  border-radius: 10px;
}
.sub-contents .strategy .process .top {
  width: 100%;
  background: linear-gradient(90deg, #800020 0%, #1A0007 100%);
  border: 1px solid var(--color-main);
  border-radius: 10px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 40px 10px;
}
.sub-contents .strategy .process .item-box {
  display: flex;
  flex-direction: row;
	column-gap: 100px;
  align-items: flex-start;
}
.sub-contents .strategy .process .item {
  width: 100%;
}
.sub-contents .strategy .process .arrow {
  margin: -8px auto;
}
.sub-contents .strategy .process .title {
  height: 100px;
  background: linear-gradient(92deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 2.6rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-contents .strategy .process .circle-box {
  min-height: 345px;
  margin: 40px auto;
}
.sub-contents .strategy .process .circle {
  border-radius: 50%;
  position: relative;
}
.sub-contents .strategy .process .circle.bg {
  background: var(--color-main);
}
.sub-contents .strategy .process .circle.border::before {
  content: "";
  display: block;
  border: 1px solid #aaa;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .strategy .process .circle p {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .strategy .process .target .circle-box {
  max-width: 67.275%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: center;
  justify-content: center;
}
.sub-contents .strategy .process .target .circle {
  padding: calc(50% + 20px) 0;
  margin: 0 -20px;
}
.sub-contents .strategy .process .target .list-box {
	row-gap: 10px;
}
.sub-contents .strategy .process .deal .circle-box {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
.sub-contents .strategy .process .deal .circle.bg {
  width: 40%;
  padding: 20% 0;
  margin: 0 auto;
}
.sub-contents .strategy .process .deal .circle-list {
  width: 72.725%;
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: auto;
  left: auto;
  right: auto;
  bottom: 0;
}
.sub-contents .strategy .process .deal .circle-list .circle {
  width: 100%;
  padding: calc(16.6666666667% + 1.6666666667px) 0;
}
.sub-contents .strategy .process .deal .circle-list .circle:not(.center) {
  transform: translateY(-50%);
}
.sub-contents .strategy .process .deal .circle-list .center {
  margin: 0 -5px;
}
.sub-contents .strategy .process .deal .circle-list p {
  font-size: 2.1rem;
}
.sub-contents .strategy .process .deal .list-box {
	row-gap: 15px;
}
.sub-contents .strategy .process .list-box {
  background: linear-gradient(92deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sub-contents .strategy .process .list-box > div {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px 15px;
}
.sub-contents .strategy .process .list-box p {
  font-size: 2.1rem;
  font-weight: 400;
}
.sub-contents .strategy .process .list-box p.roman {
  opacity: 0.6;
}
.sub-contents .strategy .process .list-box hr {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}
.sub-contents .investment .portfolio .logo-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
	row-gap: 20px;
	column-gap: 20px;
}
.sub-contents .investment .portfolio .logo-list li,
.sub-contents .investment .portfolio .logo-list li .logo {
	position: relative;
}
.sub-contents .investment .portfolio .logo-list li {
  background: var(--color-white);
	border: 4px solid transparent;
	transition: all 0.4s;
}
.sub-contents .investment .portfolio .logo-list li .logo {
	padding: 31.17% 0;
}
.sub-contents .investment .portfolio .logo-list li .logo img {
  max-width: calc(100% - 40px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .investment .portfolio .logo-list .arrow {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-main);
	border-radius: 50%;
	position: absolute;
	top: 20px;
	right: 20px;
	transform: scale(0);
	transition: all 0.4s;
}
.sub-contents .investment .portfolio .logo-list li:hover {
	border-color: var(--color-main);
}
.sub-contents .investment .portfolio .logo-list li:hover .arrow {
	transform: scale(1);
}
.sub-contents .team .col120 > div {
  width: 100%;
}
.sub-contents .team h4 {
  font-size: 3.8rem;
  margin: 0 0 50px;
}
.sub-contents .team .item-wrap {
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  flex-direction: row;
	row-gap: 50px;
	column-gap: 50px;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .team .item-box {
  width: calc((100% - 100px) / 3);
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  cursor: pointer;
}
.sub-contents .team .item,
.sub-contents .team .img {
  position: relative;
  overflow: hidden;
}
.sub-contents .team .img {
  padding: 50% 0;
}
.sub-contents .team .img::before,
.sub-contents .team .img img {
  transition: all 0.6s;
}
.sub-contents .team .img::before {
  content: "";
  display: block;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 65%, #000 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
.sub-contents .team .img img {
  min-width: 100%;
  z-index: -1;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .team .text {
  padding: 30px;
  transition: all 0.6s;
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
.sub-contents .team .text dl dt {
  font-size: 3.2rem;
  font-weight: 600;
  margin: 0 0 5px;
}
.sub-contents .team .text dl dd {
  font-size: 2.3rem;
  font-weight: 500;
}
.sub-contents .team .text .hidden {
  padding: 30px 0 0;
  opacity: 0;
  transition: all 0.6s;
}
.sub-contents .team .text hr {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}
.sub-contents .team .text div {
  display: flex;
  flex-direction: column;
	row-gap: 5px;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .team .text div p {
  font-size: 1.9rem;
  line-height: 1.3;
  display: flex;
  flex-direction: row;
	column-gap: 5px;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .team .text div p::before {
  content: "-";
}
.sub-contents .team .detail {
  background: linear-gradient(91deg, #353535 0%, #090909 100%);
  border: 1px solid #191919;
  padding: 80px 60px;
  position: relative;
  display: none;
}
.sub-contents .team .detail p {
  font-size: 2.1rem;
}
.sub-contents .team .item-box button {
  display: block;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.sub-contents .team .item-box button::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background: var(--color-main);
  border-radius: 50%;
  transition: all 0.4s linear;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .team .item-box button span {
  display: block;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.4s linear;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .team .item-box button span:first-child {
  width: 1px;
  height: 15px;
}
.sub-contents .team .item-box button span:last-child {
  width: 15px;
  height: 1px;
}
.sub-contents .team .item-box button.plus {
  position: absolute;
  top: auto;
  left: auto;
  right: 30px;
  bottom: 30px;
}
.sub-contents .team .item-box button.close {
  transform: rotate(45deg);
  position: absolute;
  top: 30px;
  left: auto;
  right: 30px;
}
.sub-contents .team .item-box button:hover {
  border-color: transparent !important;
  transition: all 0.2s 0.4s;
}
.sub-contents .team .item-box button:hover::before {
  width: 100%;
  height: 100%;
}
.sub-contents .team .item-box button:hover span {
  background: var(--color-white);
}
.sub-contents .team .item-box.hover .img::before {
  height: 300%;
}
.sub-contents .team .item-box.hover .img img {
  transform: translate(-50%, -50%) scale(1.05);
  filter: grayscale(1);
}
.sub-contents .team .item-box.hover .text {
  bottom: 0;
}
.sub-contents .team .item-box.hover .text .hidden {
  padding: 20px 0 0;
  opacity: 1;
}
.sub-contents .responsibility .bg-gray p {
	font-size: 2.8rem;
	font-weight: 600;
}
.sub-contents .responsibility h4 {
  font-size: 3.6rem;
}
.sub-contents .responsibility ol {
  background: #090909;
  border: 1px solid #191919;
  padding: 60px;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
	row-gap: 30px;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .responsibility ol li {
  display: flex;
  flex-direction: row;
	column-gap: 20px;
  align-items: center;
  justify-content: flex-start;
}
.sub-contents .responsibility ol em {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: #222;
  border-radius: 50%;
  font-weight: 700;
  font-family: var(--font-garamond);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-contents .responsibility ol p {
  font-size: 2.1rem;
  line-height: 1.3;
}
.sub-contents .responsibility .strategies {
  position: relative;
}
.sub-contents .responsibility .strategies::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-image: url("/img/sub/bg_responsibility_02.jpg");
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .responsibility .strategies .item-box,
.sub-contents .responsibility .strategies .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-contents .responsibility .strategies .item-box {
  width: 100%;
  padding: 0 33px;
}
.sub-contents .responsibility .strategies .item {
  width: 100%;
  height: 250px;
  border-width: 1px;
  border-color: var(--color-white);
  border-radius: 500px;
  font-size: 2.6rem;
  text-align: center;
  margin: 0 -33px;
}
.sub-contents .responsibility .strategies .item.solid {
  border-style: solid;
}
.sub-contents .responsibility .strategies .item.dashed {
  border-style: dashed;
}
.sub-contents .responsibility .governance .item-box,
.sub-contents .responsibility .governance .item {
  width: 100%;
}
.sub-contents .responsibility .governance .item-box {
  display: flex;
	column-gap: 100px;
}
.sub-contents .responsibility .governance .item {
  text-align: center;
}
.sub-contents .responsibility .governance .item > .arrow {
  width: 62px;
  margin: 20px auto -20px;
  transform: rotateX(180deg);
}
.sub-contents .responsibility .governance .title {
  height: 100px;
  background: var(--color-main);
  border-radius: 100px;
  font-size: 2.3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-contents .responsibility .governance .list-box {
  background: rgba(128, 0, 32, 0.1);
  border: 1px solid rgba(128, 0, 32, 0.1);
  border-radius: 10px;
  padding: 30px;
}
.sub-contents .responsibility .governance .list-box p {
  height: 70px;
  background: var(--color-white);
  border-radius: 10px;
  font-size: 2.1rem;
  line-height: 1.3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-contents .responsibility .governance .list-box > .arrow {
  margin: 10px auto;
}
.sub-contents .responsibility .process .item-box {
  width: 100%;
  display: grid;
  grid-template-columns: 20.435% 0.9565% 20.435% 0.9565% 20.435% 0.9565% 20.435%;
  align-items: center;
  column-gap: 2.565083%;
}
.sub-contents .responsibility .process .circle {
  border-radius: 50%;
  padding: 50% 0;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-contents .responsibility .process .circle.circle1 {
  background: #a7a7a7;
}
.sub-contents .responsibility .process .circle.circle2 {
  background: #626262;
}
.sub-contents .responsibility .process .circle.circle3 {
  background: #383838;
}
.sub-contents .responsibility .process .circle.circle4 {
  background: var(--color-main);
}
.sub-contents .responsibility .process .circle p {
  color: var(--color-white);
  line-height: 1.3;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .responsibility .process .p-box {
  display: flex;
  flex-direction: column;
	row-gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .responsibility .process .p-box p {
  line-height: 1.7;
}
.sub-contents .responsibility .principles > p {
  line-height: 1.7;
  text-align: center;
}
.sub-contents .contact .item-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sub-contents .contact .text {
  display: flex;
  flex-direction: column;
	row-gap: 60px;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .contact .text dl {
  display: flex;
  flex-direction: column;
	row-gap: 30px;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .contact .text dl dt {
  font-size: 2.8rem;
  display: flex;
  flex-direction: row;
	column-gap: 15px;
  align-items: center;
  justify-content: flex-start;
}
.sub-contents .contact .text dl dd p {
  line-height: 1.3;
}
.sub-contents .contact .text .br1400 {
  display: none;
}
.sub-contents .contact .text .icon {
  width: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}