/* shared content sections */

/* Privacy Policy */
.number {
	margin-bottom: 30px;
	padding: 30px;
}

.number li {
	padding-left: 15px;
	list-style: decimal;
}

.number li ul {
	margin: 15px 0;
}

.number li ul li {
	padding-left: 15px;
	list-style: lower-roman;
}

.card-list__items {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.card-list__item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 30%;
	margin: 0 12px 30px;
	border-radius: 20px;
	color: #2b2b2b;
	background-color: #fff;
	box-shadow: 0px 20px 20px -4px rgba(0, 0, 0, 0.15);
}

.card-list__item-number {
	width: 120px;
	margin: 30px;
	padding: 0 15px;
	color: #fff;
	font-size: 12px;
	line-height: 30px;
	text-align: center;
	background-color: #2b2b2b;
}

.card-list__item-thumb {
	margin: 30px;
	height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	text-align: center;
	background-color: #b8a86f;
}

.card-list__item-thumb a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-list__item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.card-list__item-thumb i {
	padding: 0;
	color: #fff;
	font-size: 120px;
	line-height: 1.15;
}

.card-list__item-lead {
	margin-bottom: 15px;
	padding: 0 30px;
	font-size: 18px;
	font-weight: bold;
}

.card-list__item-company {
	margin-bottom: 30px;
	padding: 0 30px;
	font-size: 14px;
}

.card-list__item-button {
	padding: 0 30px 30px;
}

.card-list__item-button .button--inverse {
	display: block;
}

@media screen and (max-width: 767px) {
	.card-list__items {
		flex-direction: column;
	}

	.card-list__item {
		width: 100%;
		margin: 0 0 30px;
		background-color: #fff;
	}

	.card-list__item-number {
		margin: 30px;
	}
}

/* contact-section */
.container__inner.form-section-contact {
	max-width: var(--wp-container-reading);
}

.contact-section {
	width: 100%;
	background-image: url(../img/bg_geometric_gray.jpg);
}

.contact-section .contact__inner {
	max-width: 50%;
	margin: 0 auto;
	padding: 100px 0 80px;
}

.contact-section .button--blue {
	width: 100%;
	height: 50px;
	margin-bottom: 15px;
}

.contact-section .button--blue a {
	width: 100%;
	height: 50px;
	line-height: 50px;
}

.contact-section .phone {
	width: 100%;
	text-align: center;
}

.contact-section .phone a {
	font-size: 20px;
	font-weight: bold;
	color: #2b2b2b;
}

@media screen and (max-width: 767px) {
	.contact-section .contact__inner {
		max-width: 100%;
		padding: 100px 30px 80px;
	}
}

.event-overview {
	margin-bottom: 60px;
	text-align: center;
}

.event-overview__date {
	margin-bottom: 15px;
	font-size: 24px;
	font-weight: bold;
}

.event-overview__schedule {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: normal;
}

.event-overview__pdf {
	display: inline-block;
	border: 2px solid #2e6cff;
	border-radius: 20px;
	margin-bottom: 15px;
	padding: 0 15px;
	line-height: 30px;
	font-size: 14px;
	font-weight: bold;
}

.event-overview__venue {
	margin-bottom: 15px;
	font-size: 24px;
	font-weight: bold;
}

.event-overview__explain {
	font-size: 18px;
	font-weight: normal;
}

.announcement {
	position: relative;
	z-index: 5;
	display: flex;
	flex-direction: row;
	width: 100%;
	padding: 0 20px;
	height: 50px;
	color: #fff;
	font-weight: normal;
	background-color: #2e6cff;
	transition: all 0.2s ease 0s;
}

.announcement:hover {
	background-color: #b9a971;
}

.announcement p {
	width: 80%;
	line-height: 50px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.announcement i {
	font-size: 18px;
}

.announcement__button {
	display: block;
	width: 20%;
	height: 50px;
	line-height: 50px;
	text-align: right;
}

@media screen and (max-width: 767px) {
	.announcement {
		height: auto;
		padding: 15px 20px;
	}

	.announcement p {
		width: 100%;
		line-height: 1.5;
		text-align: left;
		white-space: normal;
	}

	.announcement__button {
		display: none;
	}
}

.mobile-only {
	display: none;
}

@media screen and (max-width: 767px) {
	.mobile-only {
		display: block;
	}
}

.header {
	position: fixed;
	opacity: 0.95;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0 30px;
	background-color: #fff;
}

.header--white {
	position: fixed;
	opacity: 0.95;
	z-index: 15;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 90px;
	padding: 0 30px;
	background-color: #fff;
}

.header--white .header__menu a {
	color: #2b2b2b;
}

.header--transparent {
	position: absolute;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 90px;
	padding: 0 30px;
}

.header__logo {
	width: 15%;
}

.header__logo img {
	width: 100%;
}

.header__menu-box {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	cursor: pointer;
	width: 70%;
}

.header__menu {
	position: relative;
	height: 90px;
	margin-right: 20px;
	text-align: center;
	font-size: 14px;
	font-weight: normal;
}

.header__menu a {
	display: block;
	overflow: hidden;
	height: 90px;
	line-height: 90px;
	color: #000;
}

.header__menu:lang(ja),
.header__menu:lang(zh-CN),
.header__menu:lang(zh-TW) {
	font-size: 13.5px;
	font-weight: bold;
}

.header__menu--trigger:hover .menu__second-level {
	display: block;
}

.header__button {
	text-align: right;
	width: 15%;
}

.header__button .button--transparent {
	width: 150px;
}

.menu__second-level {
	cursor: pointer;
	display: none;
	position: absolute;
	z-index: 15;
	left: -70px;
	width: 280px;
	text-align: left;
}

.menu__second-level li a {
	cursor: pointer;
	display: block;
	border-top: solid 1px #fff;
	width: 280px;
	height: 75px;
	padding: 0 15px;
	line-height: 75px;
	color: #fff;
	font-size: 12.5px;
	font-weight: bold;
	background: #000;
	transition: all 0.2s ease 0s;
}

.menu__second-level li a:hover {
	color: #fff;
	background: #b9a971;
}

.menu__second-level li:first-child a {
	border-top: none;
}

@media screen and (max-width: 767px) {
	.header__logo {
		width: 50%;
	}

	.header__menu-box {
		display: none;
	}

	.header__button {
		text-align: right;
		width: 50%;
		display: none;
	}
}

.team-lists {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}

.team-lists--justify-center {
	justify-content: center;
}

.team-lists__person {
	cursor: pointer;
	width: 25%;
	margin-bottom: 50px;
	padding: 5px 15px 0;
	text-align: center;
	vertical-align: top;
}

.team-lists__person img,
.team-lists__person p {
	transition: all 0.4s;
}

.team-lists__person:hover img {
	transform: scale(1.04);
	box-shadow: 5px 5px 5px 0 #cccccc;
}

.team-lists__person:hover .team-lists__person-name,
.team-lists__person:hover .team-lists__person-role {
	opacity: 0.7;
}

.team-lists__person--tbd {
	cursor: default;
}

.team-lists__person .readmore {
	cursor: pointer;
	display: block;
	text-align: center;
	font-size: 12px;
	color: #888;
}

.team-lists__person-photo {
	margin: 0;
	padding: 0;
}

.team-lists__person-photo img {
	width: 90%;
	margin-bottom: 30px;
	/* -webkit-filter: drop-shadow(0px 20px 20px rgba(0,0,0,.3));
      filter: drop-shadow(0px 20px 20px rgba(0,0,0,.3)); */
}

.team-lists__person-name {
	margin-bottom: 10px;
	line-height: 1.4;
	font-size: 16px;
	font-weight: bold;
}

.team-lists__person-name--image {
	display: inline-block;
	margin: 0;
	padding: 0;
	line-height: 1;
	height: 26px;
	width: auto;
}

.team-lists__person:hover .team-lists__person-name--image {
	transform: none;
	box-shadow: none;
}

.team-lists__person-name-2022 {
	font-size: 20px;
}

.team-lists__person-role {
	line-height: 1.4;
	color: #666;
	font-size: 14px;
	font-weight: normal;
	font-style: italic;
}

.team-lists__person-role-2022 {
	font-size: 16px;
}

.team-lists__person-description {
	overflow: hidden;
	font-size: 12px;
	font-weight: normal;
	line-height: 18px;
	text-align: left;
}

.team-lists__person-description-2022 {
	font-size: 18px;
}

@media screen and (max-width: 767px) {
	.team-lists__person {
		display: block;
		width: 50%;
		padding: 0;
	}

	.team-lists__person-name {
		margin-bottom: 10px;
		line-height: 1.4;
		font-size: 20px;
	}

	.team-lists__person-name--image {
		height: 32px;
	}

	.team-lists__person-role {
		margin-bottom: 10px;
		line-height: 1.4;
		color: #666;
		font-size: 14px;
	}

	.team-lists__person-description {
		height: auto !important;
		margin-bottom: 50px;
		font-size: 14px;
		display: inline-block;
		line-height: 1.4em;
	}

	.team-lists .readmore {
		display: none;
	}
}

/* partnerships */
.partnerships:first-child {
	padding: 10px 0;
}

.partnerships__title {
	margin-bottom: 15px;
	text-align: center;
	font-size: 32px;
	font-weight: bold;
}

.partnerships__note {
	margin-bottom: 50px;
	text-align: center;
	font-size: 14px;
	font-weight: normal;
	color: #666;
}

.partnerships__coming-soon {
	padding: 100px 0;
	text-align: center;
	font-size: 12vw;
	color: #efefef;
}

.logos {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	width: 100%;
}

.logos__logo {
	width: 25%;
	text-align: center;
	vertical-align: middle;
}

.logos__logo img {
	width: 100%;
}

.logos__logo--maximize {
	width: 25%;
	margin-bottom: 50px;
	text-align: center;
	vertical-align: middle;
}

.logos__logo--maximize img {
	width: 100%;
}

.logos__logo--minimize {
	width: 25%;
	margin-bottom: 50px;
	text-align: center;
	vertical-align: middle;
}

.logos__logo--minimize img {
	width: 35%;
}

.logos--3column {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	width: 100%;
}

.logos--3column .logos__logo,
.logos--3column .logos__logo--minimize,
.logos--3column .logos__logo--maximize {
	width: 33.33%;
}

.logos--3column .logos__logo img {
	width: 100%;
}

.logos--4column {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: left;
	width: 100%;
}

.logos--4column .logos__logo--minimize,
.logos--4column .logos__logo--maximize {
	width: 24.55%;
}

.logos--4column .logos__logo {
	width: 25%;
	padding: 3px;
}

.logos--4column .logos__logo img {
	width: 100%;
}

.logos--4columnEvent .logos__logo {
	width: 20.6%;
}

.logos--4columnEvent .logos__logo img {
	width: 85%;
}

@media screen and (max-width: 767px) {
	.logos__logo {
		display: block;
		width: 33.33%;
	}

	.logos__logo img {
		width: 100%;
	}

	.logos__logo--maximize {
		display: block;
		width: 100%;
		height: auto;
	}

	.logos__logo--maximize img {
		width: 100%;
	}

	.logos__logo--minimize {
		display: block;
		width: 33.33%;
		height: auto;
	}

	.logos__logo--minimize img {
		width: 50%;
	}

	.logos--3column,
	.logos--4column {
		display: block;
		width: 100%;
		margin-bottom: 30px;
	}

	.logos--3column .logos__logo,
	.logos--4column .logos__logo {
		width: 100%;
	}

	.logos--3column .logos__logo img,
	.logos--4column .logos__logo img {
		width: 100%;
	}

	.logos--3column .logos__logo--minimize,
	.logos--4column .logos__logo--minimize {
		width: 100%;
	}

	.logos--3column .logos__logo--minimize img,
	.logos--4column .logos__logo--minimize img {
		width: 50%;
	}

	.logos--3column .logos__logo--maximize,
	.logos--4column .logos__logo--maximize {
		width: 100%;
	}

	.logos--3column .logos__logo--maximize img,
	.logos--4column .logos__logo--maximize img {
		width: 70%;
	}

	.logos--4column {
		display: flex;
	}

	.logos--4column .logos__logo {
		width: 50%;
		padding: 3px;
	}

	.logos--4column .logos__logo img {
		width: 100%;
	}
}

/* asset-management partners' logo */
.partnership .logos--4column .logos__logo img {
	width: 60%;
}

/* service-list */
.service-list__inner {
	padding: 0 20px 100px;
}

.service-list__items {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.service-list__item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 30%;
	margin-right: 45px;
	border-radius: 20px;
	line-height: 1.6;
	background-color: #fff;
	box-shadow: 0px 20px 20px -4px rgba(0, 0, 0, 0.15);
}

.service-list__item:last-child {
	margin-right: 0;
}

.service-list__item-thumb {
	margin: 0 0 30px;
	overflow: hidden;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.service-list__item-thumb img {
	width: 100%;
}

.service-list__item-lead {
	padding: 0 30px;
	font-size: 28px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 15px;
}

.service-list__item-sub {
	margin-bottom: 15px;
	padding: 0 30px;
	font-size: 14px;
	font-weight: bold;
}

.service-list__item-description {
	margin-bottom: 30px;
	padding: 0 30px;
	font-size: 14px;
	color: #666;
}

.service-list__item-button {
	padding: 0 30px 30px;
}

.service-list__item-button .button {
	display: block;
}

@media screen and (max-width: 767px) {
	.service-list__items {
		flex-direction: column;
	}

	.service-list__item {
		width: 100%;
		margin: 0 0 30px;
		background-color: #fff;
	}
}

/* Careers */
.career-visual {
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100vh;
}

.career-visual--company {
	height: calc(100vh - 100px);
}

.career-visual::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 2;
}

.career-visual__outer {
	width: 100%;
	height: calc(100% - 70px);
	top: 70px;
	left: 0;
	overflow: hidden;
	position: absolute;
}

.career-visual__outer--company {
	height: calc(100% - 0px);
	top: 0px;
}

.career-visual__video {
	top: 0;
	left: 0;
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.career-visual__txt {
	position: absolute;
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	color: #fff;
	top: 45%;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 10;
}

.career-visual__title {
	font-size: 55px;
	font-weight: bold;
}

.career-visual__caption {
	font-size: 16px;
}

.career-visual__arrow {
	width: 40px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	margin: auto;
	z-index: 10;
}

.career-vision__title {
	font-size: 80px;
	text-align: center;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 50px;
}

.career-vision__copy {
	font-size: 22px;
	font-weight: normal;
	text-align: center;
	margin-bottom: 100px;
}

.career-vision__img img {
	width: 100%;
	height: auto;
}

.career-mission__title {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 50px;
}

.career-mission__txt {
	color: #1b1b1b;
	font-size: 18px;
	line-height: 2;
}

.career-profile__inner {
	padding-bottom: 0;
}

.career-video {
	position: relative;
	margin: 0 auto;
	background-color: #fff;
}

.career-video__wrap {
	width: var(--wp-container-default);
	max-width: 90%;
	margin: 0 auto;
}

.career-video__inner,
.career-video__inner--rev {
	position: relative;
	display: flex;
}

.career-video__inner .image,
.career-video__inner--rev .image {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	width: 48%;
	margin-left: 50px;
	margin-bottom: 100px;
}

.career-video__inner .message,
.career-video__inner--rev .message {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	width: 50%;
	padding-left: 50px;
}

.career-video__inner .message__title,
.career-video__inner--rev .message__title {
	width: 100%;
	font-size: 20px;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 15px;
}

.career-video__inner .message__txt,
.career-video__inner--rev .message__txt {
	width: 100%;
	color: #1b1b1b;
	font-size: 16px;
	margin-bottom: 100px;
}

.career-video__inner--rev {
	flex-direction: row-reverse;
}

.career-video__inner--rev .image {
	margin: 0px 50px 100px 0px;
}

.career-video__comments {
	width: 48%;
}

.career-video__youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.career-video__youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

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

	.career-video__inner,
	.career-video__inner--rev {
		flex-direction: column;
		width: 100%;
		height: auto;
		padding: 0;
	}

	.career-video__inner .image,
	.career-video__inner--rev .image {
		width: 100%;
		margin: 0px 0px 60px 0px;
	}

	.career-video__inner .message,
	.career-video__inner--rev .message {
		width: 100%;
		padding: 0 30px;
	}

	.career-video__inner .message__title,
	.career-video__inner--rev .message__title {
		text-align: center;
	}

	.career-video__inner .message__txt,
	.career-video__inner--rev .message__txt {
		font-size: 16px;
		margin-bottom: 0px;
	}

	.career-video__inner--rev {
		flex-direction: column;
		width: 100%;
		height: auto;
		padding: 0;
	}

	.career-video__inner--rev .image {
		margin: 0px 0px 150px 0px;
	}

	.career-video__comments {
		width: 100%;
		padding-bottom: 30px;
	}
}

.career-copy {
	padding: 100px 0;
}

.career-copy__pc {
	display: block;
}

.career-copy__sp {
	display: none;
}

.career-copy__inner {
	padding-bottom: 0;
}

.career-copy__title {
	text-align: center;
	font-weight: bold !important;
	margin-bottom: 100px;
}

.career-copy__txt {
	text-align: center;
	font-weight: normal;
	font-size: 18px;
	line-height: calc(36 / 20 * 100%);
}

.career-modal {
	background-color: #f5f5f5;
	padding: calc(100 / 1440 * 100%) 0;
}

.career-modal__pc {
	display: block;
}

.career-modal__sp {
	display: none;
}

.career-modal__inner {
	width: calc(90% - 65px);
	padding-bottom: 0;
}

.career-modal__teams {
	display: flex;
	flex-wrap: wrap;
}

.career-modal__team {
	width: calc(230 / 1070 * 100%);
	margin-right: calc(50 / 1070 * 100%);
}

.career-modal__team:nth-of-type(4n) {
	margin-right: 0;
}

.career-modal__team:nth-child(n + 5) {
	margin-top: calc(50 / 1070 * 100%);
}

.career-modal__team img {
	width: 100%;
	height: auto;
}

.post-summary__inner {
	margin-bottom: 100px;
	background-color: #fff;
}

.post-summary__hd {
	font-size: 20px;
	font-weight: bold;
	line-height: 25px;
	height: 80px;
	display: flex;
	align-items: center;
	padding: 0 20px;
	margin: 80px 0 0;
	border-bottom: 1px solid #eee;
}

.post-summary__item {
	font-size: 16px;
	line-height: 25px;
	font-weight: normal;
	display: flex;
	align-items: center;
	height: 80px;
	border-bottom: 1px solid #eee;
}

.post-summary__item--inner {
	display: flex;
	height: 100%;
	align-items: center;
	color: #000;
	padding: 0 3rem 0 20px;
	position: relative;
	width: 100%;
}

.post-summary__item--inner::after {
	content: '\e315';
	font-family: 'Material Icons';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 2rem;
	color: #ccc;
}

.post-summary__item--inner:hover {
	background: #f5f5f5;
}

@media screen and (max-width: 767px) {
	.post-summary__item {
		height: auto;
	}

	.post-summary__item--inner {
		padding: 10px 30px 10px 20px;
	}

	.post-summary__item--inner::after {
		right: 10px;
	}
}

.career-wantedly__teams {
	display: flex;
	flex-wrap: wrap;
}

.career-wantedly__teams li {
	width: calc(510 / 1070 * 100%);
}

.career-wantedly__teams li:nth-child(2n) {
	margin-left: calc(50 / 1070 * 100%);
}

.career-wantedly__teams li:nth-child(n + 3) {
	margin-top: calc(50 / 1070 * 100%);
}

.career-wantedly__teams li a {
	color: #2b2b2b;
}

.career-wantedly__teams li a:hover {
	opacity: 0.7;
}

.career-wantedly__teams li dl {
	display: table;
	width: 100%;
}

.career-wantedly__teams li dl dt {
	display: table-cell;
	width: 130px;
}

.career-wantedly__teams li dl dt img {
	width: 100%;
	height: auto;
}

.career-wantedly__teams li dl dd {
	display: table-cell;
	padding-left: 30px;
}

.career-wantedly__teams li dl dd h4 {
	font-weight: bold;
	font-size: 20px;
}

.career-wantedly__teams li dl dd p {
	font-size: 16px;
	font-weight: normal;
	margin-top: 20px;
}

.career-wantedly__button {
	width: 100%;
	max-width: 400px;
	margin: 80px auto 0;
	display: block;
}

.career-wantedly__button a {
	color: #2b2b2b;
	border: solid 2px #2b2b2b;
}

.career-banner__twoTeams {
	display: flex;
	justify-content: space-between;
}

.career-banner__twoTeams li {
	width: 45%;
}

.career-banner__twoTeams li a img {
	width: 100%;
	height: auto;
}

.career-banner__fourTeams {
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
}

.career-banner__fourTeams li {
	width: calc(220 / 1000 * 100%);
	margin-right: calc(20 / 1000 * 100%);
}

.career-banner__fourTeams li:nth-child(n + 5) {
	margin-top: 20px;
}

.career-banner__fourTeams li:nth-child(4n) {
	margin-right: 0;
}

.career-banner__fourTeams li:last-child {
	margin-right: 0;
}

.career-banner__fourTeams li a img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 960px) {
	.career-visual__outer {
		height: calc(100% - 60px);
		top: 60px;
	}

	.career-visual__outer--company {
		height: calc(100% - 0px);
		top: 0px;
	}

	.career-visual--company {
		height: calc(100vh - 87px);
	}
}

@media screen and (max-width: 767px) {
	.career-visual__outer {
		height: calc(100% - 54px);
		top: 54px;
	}

	.career-visual__outer--company {
		height: calc(100% - 0px);
		top: 0px;
	}

	.career-visual--company {
		height: calc(100vh - 87px);
	}

	.career-visual__title {
		font-size: 40px;
	}

	.career-vision__title {
		font-size: 40px;
		margin-bottom: 25px;
	}

	.career-vision__copy {
		font-size: 16px;
		margin-bottom: 50px;
	}

	.career-mission__title {
		font-size: 20px;
		line-height: 1.5;
		font-weight: bold;
		text-align: center;
	}

	.career-mission__txt {
		color: #1b1b1b;
		font-size: 16px;
	}

	.career-copy {
		padding: 15vw 0;
	}

	.career-copy__pc {
		display: none;
	}

	.career-copy__sp {
		display: block;
	}

	.career-copy__title {
		margin-bottom: 50px;
	}

	.career-copy__txt {
		font-size: 16px;
		line-height: calc(24 / 16 * 100%);
	}

	.career-modal {
		padding: calc(100 / 750 * 100%) 0;
	}

	.career-modal__pc {
		display: none;
	}

	.career-modal__sp {
		display: block;
	}

	.career-modal__inner {
		width: 90%;
		padding: 0;
	}

	.career-modal__team {
		width: calc(510 / 1070 * 100%);
	}

	.career-modal__team:nth-child(odd) {
		margin-right: calc(50 / 1070 * 100%);
	}

	.career-modal__team:nth-child(even) {
		margin-right: 0;
	}

	.career-modal__team:nth-child(n + 3) {
		margin-top: calc(50 / 1070 * 100%);
	}

	.career-modal__team img {
		width: 100%;
		height: auto;
	}

	.career-summary__inner {
		padding: 0;
	}

	.career-summary__article {
		line-height: 1.5;
	}

	.career-summary__article-title {
		line-height: 1.5;
		padding: 15px 30px;
	}

	.career-wantedly__inner {
		padding-bottom: 80px;
	}

	.career-wantedly__teams li {
		width: 100%;
	}

	.career-wantedly__teams li:nth-child(2n) {
		margin-left: 0;
	}

	.career-wantedly__teams li:nth-child(n + 2) {
		margin-top: calc(100 / 1070 * 100%);
	}

	.career-wantedly__teams li dl dt {
		width: 40%;
	}

	.career-wantedly__teams li dl dt img {
		width: 100%;
		height: auto;
	}

	.career-wantedly__teams li dl dd {
		margin-top: 20px;
	}

	.career-wantedly__teams li dl dd h4 {
		font-weight: bold;
		font-size: 18px;
	}

	.career-wantedly__teams li dl dd p {
		font-size: 14px;
		font-weight: normal;
		margin-top: 20px;
	}

	.career-wantedly__button {
		margin: 40px auto 0;
	}

	.career-banner__inner {
		padding-bottom: 80px;
	}

	.career-banner__twoTeams {
		flex-direction: column;
	}

	.career-banner__twoTeams li {
		width: 100%;
	}

	.career-banner__twoTeams li:last-child {
		margin-top: 20px;
	}

	.career-banner__fourTeams {
		margin-top: 25px;
		flex-wrap: wrap;
	}

	.career-banner__fourTeams li {
		width: calc(475 / 1000 * 100%);
		margin-right: calc(50 / 1000 * 100%);
	}

	.career-banner__fourTeams li:nth-child(n + 3) {
		margin-top: 20px;
	}

	.career-banner__fourTeams li:nth-child(2n) {
		margin-right: 0;
	}

	.career-banner__fourTeams li:nth-child(4n) {
		margin-right: 0;
	}

	.career-banner__fourTeams li a img {
		width: 100%;
		height: auto;
	}
}

/* video-section */
.video-section {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	color: #fff;
	overflow: hidden;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #1b1b1b;
	background-image: url(../app/img/bg_video.jpg);
}

.video-section--case {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	color: #fff;
	overflow: hidden;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #1b1b1b;
	background-image: url(../video/business/wpb_top_video_thumb_001.jpg);
}

.video-section__background {
	z-index: 1;
	position: absolute;
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

.video-section__inner {
	position: relative;
	z-index: 5;
	display: flex;
	width: 90%;
	min-height: 100vh;
	margin: 0 auto;
}

.video-section__inner .image {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	width: 50%;
}

.video-section__inner .message {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	width: 50%;
	padding-left: 50px;
}

.video-section__inner .message__tagline {
	margin-bottom: 30px;
	line-height: 1.6;
	font-weight: bold;
	text-align: justify;
	font-size: 26px;
}

.video-section__inner .message__button-box {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}

.video-section__inner .message__button-box .button--transparent,
.video-section__inner .message__button-box .button--inverse {
	width: 45%;
	height: 50px;
}

.video-section__inner .message__button-box .button--transparent a,
.video-section__inner .message__button-box .button--inverse a {
	height: 50px;
	line-height: 46px;
}

.video-section__inner .quotation__list {
	margin-bottom: 30px;
}

.video-section__inner .quotation__comment {
	display: block;
	font-style: italic;
}

.video-section__inner .quotation__name {
	position: relative;
	display: block;
	float: right;
}

.video-section__inner .quotation__name:before {
	position: absolute;
	width: 20px;
	height: 1px;
	background: #fff;
	content: '';
	top: 11px;
	left: -28px;
}

.video-section__comments {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	width: 50%;
	padding: 50px 0 50px 50px;
}

.video-section__comment {
	margin-bottom: 30px;
}

.video-section__message {
	display: block;
	margin-bottom: 15px;
	font-style: italic;
	font-size: 1.3vw;
	font-weight: bold;
	line-height: 1.8;
}

.video-section__name {
	position: relative;
	display: block;
	float: right;
}

.video-section__name:before {
	position: absolute;
	width: 20px;
	height: 1px;
	background: #fff;
	content: '';
	top: 11px;
	left: -28px;
}

.video-section__youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.video-section__youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.video-section video {
	width: 100%;
	-webkit-filter: drop-shadow(0px 20px 20px rgba(0, 0, 0, 0.3));
	filter: drop-shadow(0px 20px 20px rgba(0, 0, 0, 0.3));
}

@media screen and (max-width: 767px) {
	.video-section--case {
		height: 100%;
	}

	.video-section__background {
		display: none;
	}

	.video-section__inner {
		flex-direction: column;
		width: 100%;
		height: auto;
		padding: 0;
	}

	.video-section__inner .image {
		width: 100%;
		margin-bottom: 100px;
	}

	.video-section__inner .message {
		width: 100%;
		padding: 0 30px;
	}

	.video-section__inner .message__text {
		margin-bottom: 30px;
	}

	.video-section__inner .message__tagline {
		font-size: 18px;
	}

	.video-section__inner .message__button-box {
		padding-bottom: 50px;
	}

	.video-section__inner .quotation {
		margin-bottom: 50px;
	}

	.video-section__comments {
		width: 100%;
		padding: 0 30px;
	}

	.video-section__message {
		font-size: 3.5vw;
		font-weight: bold;
	}

	.video-section__name {
		margin: 0 0 0 30px;
	}
}

.news-summary {
	color: #fff;
	background-color: #1b1b1b;
}

.news-summary__inner {
	padding-top: 100px;
}

.news-summary a {
	color: #fff;
}

.news-summary .article-lists ul {
	margin-bottom: 50px;
}

.news-summary .article-lists__article {
	display: table;
	width: 100%;
	margin-bottom: 15px;
}

.news-summary .article-lists__article-date {
	display: table-cell;
	width: 10%;
	font-weight: normal;
}

.news-summary .article-lists__article-category {
	display: table-cell;
	width: 10%;
	font-weight: normal;
	font-style: italic;
}

.news-summary .article-lists__article-title {
	display: table-cell;
	width: 80%;
}

.news-summary .article-lists__more {
	width: 100%;
	text-align: center;
}

.news-summary--am {
	background: url(../img/news-summary_pic1.svg) no-repeat center/cover;
	border-bottom: 1px solid #fff;
}

.news-summary--am .news-summary__inner {
	padding: 150px 0 260px;
}

@media screen and (max-width: 767px) {
	.news-summary--am .news-summary__inner {
		padding: 75px 0 130px;
	}
}

@media screen and (max-width: 767px) {
	.news-summary__inner {
		padding: 50px 20px 30px;
	}

	.news-summary__inner .article-lists ul {
		margin-bottom: 30px;
	}

	.news-summary__inner .article-lists__article {
		display: block;
		border-bottom: 1px dotted #2b2b2b;
		margin-bottom: 20px;
		padding: 0 1rem 20px;
	}

	.news-summary__inner .article-lists__article:first-child {
		border-top: 1px dotted #2b2b2b;
		padding: 20px 1rem;
	}

	.news-summary__inner .article-lists__article-date {
		display: inline-block;
		width: auto;
		margin: 0 10px 10px 0;
	}

	.news-summary__inner .article-lists__article-category {
		display: inline-block;
		width: auto;
		margin: 0 10px 10px 0;
	}

	.news-summary__inner .article-lists__article-title {
		display: block;
		width: 100%;
	}
}

.wealth-park-triangle {
	background-image: none;
	background-color: #fff;
}

/* Owner App
***************************************/
.hero--app {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100vh;
}

.hero--app__outer {
	height: 100vh;
}

.hero--app__overlay_top {
	position: absolute;
	z-index: 10;
	bottom: 72%;
	width: 100%;
}

.hero--app__overlay_top img {
	width: 100%;
}

.hero--app__overlay_bottom {
	position: absolute;
	z-index: 10;
	top: 60%;
	width: 100%;
}

.hero--app__overlay_bottom img {
	width: 100%;
}

.hero--app__inner {
	position: absolute;
	z-index: 20;
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	padding: 0 50px;
}

.hero--app__message-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 50%;
	padding-top: 140px;
	text-align: center;
}

.hero--app__tagline {
	margin-bottom: 30px;
	line-height: 1.2;
	font-weight: bold;
	font-size: 5vw;
	-webkit-font-smoothing: antialiased;
}

.hero--app__caption {
	margin-bottom: 30px;
	-webkit-font-smoothing: antialiased;
}

.hero--app__downloads .badges {
	justify-content: flex-start;
}

.hero--app__video-box {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}

.hero--app__video-box video {
	width: 50%;
	margin-top: 50px;
}

.hero--app__tagline:lang(ja),
.hero--app__tagline:lang(zh-CN),
.hero--app__tagline:lang(zh-TW) {
	margin-bottom: 15px;
	line-height: 1.4;
	font-weight: bold;
	font-size: 4vw;
}

.hero--app__caption:lang(ja),
.hero--app__caption:lang(zh-CN),
.hero--app__caption:lang(zh-TW) {
	margin-bottom: 30px;
	line-height: 1.6;
	font-size: 16px;
	font-weight: bold;
}

@media screen and (max-width: 767px) {
	.hero--app__inner {
		padding: 0 30px;
	}

	.hero--app__overlay_top {
		bottom: 80%;
		width: 200%;
	}

	.hero--app__overlay_bottom {
		top: 50%;
		width: 200%;
	}

	.hero--app__message-box {
		width: 100%;
		padding-top: 0;
		text-align: center;
	}

	.hero--app__tagline {
		margin-bottom: 30px;
		font-size: 12vw;
	}

	.hero--app__caption {
		margin-bottom: 30px;
	}

	.hero--app__downloads .badges {
		justify-content: center;
	}

	.hero--app__video-box {
		display: none;
	}

	.hero--app__tagline:lang(ja),
	.hero--app__tagline:lang(zh-CN),
	.hero--app__tagline:lang(zh-TW) {
		margin-bottom: 15px;
		line-height: 1.4;
		font-weight: bold;
		font-size: 10vw;
	}

	.hero--app__caption:lang(ja),
	.hero--app__caption:lang(zh-CN),
	.hero--app__caption:lang(zh-TW) {
		font-size: 3.5vw;
	}
}

/* event-section */
.event-section {
	position: relative;
	z-index: 1;
	height: 100%;
	margin: 0 auto;
	color: #fff;
	overflow: hidden;
	background-image: url(../app/img/event_wealthpark_nyc_2019.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #000;
}

.event-section .background-video {
	z-index: 1;
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.event-section__inner {
	position: relative;
	z-index: 5;
	display: flex;
	height: auto;
	max-width: 900px;
	margin: 0 auto;
}

.event-section__inner .message {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	padding-top: 200px;
}

.event-section__inner .message .message__title:lang(en-US) {
	line-height: 1.2;
	font-weight: bold;
	font-size: 58px;
}

.event-section__inner .message .message__title:lang(ja),
.event-section__inner .message .message__title:lang(zh-CN),
.event-section__inner .message .message__title:lang(zh-TW) {
	display: block;
	text-align: left;
	line-height: 1.4;
	font-weight: bold;
	font-size: 46px;
}

.event-section__inner .message .message__text {
	margin-bottom: 30px;
}

.event-section .button--blue {
	width: 50%;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.event-section .event-section__inner .message {
		padding-top: 100px;
	}

	.event-section .event-section__inner .message .message__title:lang(ja),
	.event-section .event-section__inner .message .message__title:lang(zh-CN),
	.event-section .event-section__inner .message .message__title:lang(zh-TW) {
		font-size: 34px;
	}

	.event-section .button--blue {
		width: 100%;
	}
}

/* Event */
.event-hero-section {
	color: #fff;
	overflow: hidden;
}

.event-hero-section--cv2020 {
	color: #fff;
	overflow: hidden;
	position: relative;
	z-index: 5;
	background-image: url(../img/app/event_cv2020_kv001.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #000;
	-webkit-clip-path: polygon(50% 100%, 100% 90%, 100% 0%, 0% 0, 0% 90%);
	clip-path: polygon(50% 100%, 100% 90%, 100% 0%, 0% 0, 0% 90%);
}

.event-hero-section--cv2020 .button--blue {
	width: 40%;
	height: 50px;
	margin-bottom: 30px;
}

.event-hero-section--cv2020 .button--blue a {
	height: 50px;
	line-height: 50px;
	background: linear-gradient(45deg,
			#3bade3 0%,
			#576fe6 25%,
			#9844b7 51%,
			#ff357f 100%);
}

.event-hero-section--nyc-2022 {
	color: #fff;
	overflow: hidden;
	position: relative;
	z-index: 5;
	background: url(../img/event/hero-bg.jpg) no-repeat center/cover;
	background-color: #000;
}

.event-hero-section--nyc-2022 .button--blue {
	width: 40%;
	max-width: 350px;
	height: 50px;
	margin: 0 auto 30px;
}

.event-hero-section--nyc-2022 .button--blue a {
	height: 50px;
	line-height: 50px;
	background: linear-gradient(45deg,
			#3bade3 0%,
			#576fe6 25%,
			#9844b7 51%,
			#ff357f 100%);
}

.event-hero-section__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 110vh;
	max-width: 900px;
	padding: 90px 0 0 0;
	margin: 0 auto;
	text-align: center;
}

.event-hero-section__title {
	margin-bottom: 30px;
	line-height: 0.9;
	/* font-weight: bold; */
	font-size: 65px;
}

.event-hero-section__sub-title {
	margin-bottom: 30px;
	line-height: 1;
	font-weight: bold;
	font-size: 35px;
}

.event-hero-section__date {
	margin-bottom: 25px;
	line-height: 1.8;
	font-size: 16px;
}

.event-hero-section__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px 50px;
	margin: 0 auto 25px;
	padding: 10px;
	border-radius: 15px;
	text-align: center;
}

.event-hero-section__logo img {
	width: 100%;
	max-width: 200px;
}

.event-hero-section__description {
	margin-bottom: 30px;
	line-height: 1.8;
	font-size: 16px;
}

.event-hero-section__divider {
	display: block;
	border: none;
	width: 12%;
	height: 3px;
	margin: 0 auto 30px;
	background-color: #fff;
}

.event-hero-section__announcement {
	margin-bottom: 15px;
	font-weight: bold;
	font-size: 16px;
}

.event-feature-section {
	color: #fff;
	overflow: hidden;
}

.event-feature-section--cv2020 {
	color: #fff;
	overflow: hidden;
	position: relative;
	z-index: 4;
	margin-top: -120px;
	background-image: url(../img/bg_wp-triangle-black.png);
	background-repeat: repeat;
	background-position: 50% 10%;
	background-color: #000;
}

.event-feature-section--nyc-2022 {
	color: #fff;
	overflow: hidden;
	background-color: #0f0f0f;
}

.event-feature-section--nyc-2022__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 90%;
	padding: 80px 0 80px;
	margin: 0 auto;
	text-align: center;
}

.event-feature-section__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100vh;
	width: 90%;
	padding: 200px 0 80px;
	margin: 0 auto;
	text-align: center;
}

.event-feature-section__tagline {
	margin-bottom: 50px;
	line-height: 1.4;
	font-weight: bold;
	font-size: 2.4vw;
}

.event-feature-section__youtube-wrapper {
	width: 50%;
	margin: 0 auto 50px;
}

.event-feature-section__youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	margin-bottom: 15px;
}

.event-feature-section__youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.event-feature-section__description {
	margin-bottom: 30px;
	line-height: 1.8;
	font-weight: bold;
	font-size: 16px;
	text-align: justify;
}

.event-feature-section__announcement {
	margin-bottom: 15px;
	font-weight: bold;
	font-size: 16px;
}

.event-outline-section__inner {
	width: 80%;
	margin: 0 auto 100px;
	padding: 80px;
	box-shadow: 0px 20px 20px -4px rgba(0, 0, 0, 0.15);
	background-color: #fff;
}

.event-outline-section__title {
	margin-bottom: 15px;
	text-align: center;
	font-size: 32px;
	font-weight: bold;
}

.event-outline-section__note {
	margin-bottom: 50px;
	text-align: center;
	font-size: 14px;
	font-weight: normal;
	color: #666;
}

.event-outline-section__list {
	display: flex;
	flex-direction: row;
}

.event-outline-section__list-title {
	width: 30%;
	padding: 30px;
	border-bottom: solid 1px #eee;
	border-right: dotted 1px #eee;
	font-weight: bold;
}

.event-outline-section__list-body {
	width: 70%;
	padding: 30px;
	border-bottom: solid 1px #eee;
}

.event-outline-section__description {
	padding: 100px 0;
	line-height: 1.8;
	font-size: 16px;
	text-align: justify;
}

.event-contact-section__inner {
	width: 100%;
	margin-bottom: 80px;
}

.event-contact-section .button--blue {
	display: block;
	width: 40%;
	height: 50px;
	margin: 0 auto;
}

.event-contact-section .button--blue a {
	height: 50px;
	line-height: 50px;
	background: linear-gradient(45deg,
			#3bade3 0%,
			#576fe6 25%,
			#9844b7 51%,
			#ff357f 100%);
}

.event-content__title {
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}

.event-content__title__note {
	text-align: center;
	font-size: 16px;
	line-height: 1.8;
}

.event-content__title--wealthpark-event {
	font-size: 38px;
}

.event-content__text {
	font-size: 16px;
	line-height: 1.8;
}

.event-content__text--center {
	text-align: center;
}

.page-name__inner--event {
	padding: 80px 30px 70px;
}

.page-name__inner--event-title-video {
	padding: 80px 30px 50px;
}

.page-name__inner--event-video {
	padding: 30px 30px 50px;
}

.page-name__inner--sponsor {
	padding: 50px 30px;
}

.container__inner--event {
	padding-bottom: 0;
}

.container__inner--event-date-venue {
	text-align: center;
}

.container__inner--event-date-venue h3 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 25px;
}

.container__inner--event-date-venue p {
	font-size: 18px;
	margin-bottom: 25px;
}

.event-content__sponsor {
	padding: 50px 0;
	text-align: center;
}

.event-content__sponsor img {
	width: 100%;
	max-width: 228px;
}

.event-content__sponsor--attendees {
	padding-top: 0;
}

.event-content__photos {
	padding-bottom: 0px;
}

.event-content__timeline img,
.event-content__photos img {
	width: 100%;
}

.event-content__testimonials {
	padding-bottom: 80px;
}

.event-content__testimonial {
	display: flex;
	gap: 0 50px;
	align-items: center;
	padding-bottom: 30px;
}

.event-content__testimonial--text {
	align-items: stretch;
	flex-grow: 1;
}

.event-content__testimonial--text {
	flex-direction: column;
}

.event-content__testimonial--text p {
	width: 100%;
}

.event-content__testimonial--text-quote {
	margin-bottom: 15px;
	font-size: 16px;
}

.event-content__testimonial--text-sign {
	text-align: right;
	font-style: italic;
	font-size: 14px;
}

.event-content__testimonial--img-container {
	width: 120px;
	min-width: 120px;
}

.event-content__testimonial--img-container img {
	width: 100%;
}

.event-content__table .company-profile__title,
.event-content__table .company-profile__body {
	font-size: 16px;
	line-height: 1.8;
	padding: 25px 30px;
}

.event-content__button {
	text-align: center;
	padding: 80px 0 0;
}

.event-content__button .button--blue {
	width: 40%;
	max-width: 350px;
	height: 50px;
	margin: 0 auto;
}

.event-content__button .button--blue a,
.event-content__button .button--blue .submit {
	height: 50px;
	line-height: 50px;
	background: linear-gradient(45deg,
			#3bade3 0%,
			#576fe6 25%,
			#9844b7 51%,
			#ff357f 100%);
}

.event-contact-form-note {
	margin-bottom: 80px;
	font-size: 16px;
}

.form-block .container__inner--event {
	width: 100%;
}

.form-block.event-content.event-content__button {
	padding-top: 30px;
	margin: 0;
}

@media screen and (max-width: 767px) {
	.event-hero-section--cv2020 .button--blue {
		width: 100%;
	}

	.event-hero-section__inner {
		min-height: 100vh;
		padding: 0 30px;
	}

	.event-hero-section__title {
		margin-top: 80px;
		font-size: 10vw;
	}

	.event-hero-section__sub-title {
		font-size: 5vw;
	}

	.event-hero-section__date {
		margin-bottom: 25px;
		font-size: 3.5vw;
	}

	.event-hero-section__description {
		font-size: 3.5vw;
	}

	.event-hero-section__divider {
		width: 30%;
	}

	.event-hero-section__announcement {
		font-size: 5vw;
	}

	.event-feature-section__inner {
		width: 100%;
		padding: 150px 30px 80px;
	}

	.event-feature-section__tagline {
		font-size: 6vw;
	}

	.event-feature-section__youtube-wrapper {
		width: 100%;
		margin: 0 auto 30px;
	}

	.event-feature-section__description {
		font-size: 3.5vw;
	}

	.event-outline-section__inner {
		width: 100%;
		margin: 0 auto 50px;
		padding: 0 0 80px;
	}

	.event-outline-section__list-title {
		font-size: 3.5vw;
	}

	.event-outline-section__list-body {
		font-size: 3.5vw;
	}

	.event-outline-section__description {
		padding: 30px;
		font-size: 3.5vw;
	}

	.event-contact-section__inner {
		padding: 0 30px;
	}

	.event-contact-section .button--blue {
		width: 100%;
	}

	.event-hero-section__logo {
		flex-direction: column;
		gap: 30px 30px;
	}

	.event-content__testimonial {
		display: block;
	}

	.event-content__testimonial--img-container {
		width: 100px;
		margin: 0 auto 15px;
	}

	.company-profile__inner--event,
	.container__inner--event-covid {
		padding-left: 0;
		padding-right: 0;
	}
}

/* WealthPark Business
***************************************/
/* hero area 2020 */
.pickup-partners {
	position: relative;
	width: 100%;
	background-color: #fff;
}

.pickup-partners__inner {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
}

.pickup-partners__tagline {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	border-radius: 10px;
	width: 30%;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	color: #666;
	background-color: #efefef;
}

.pickup-partners__logos {
	width: 100%;
}

.pickup-partners__logo--small {
	width: 170px;
	text-align: center;
}

.pickup-partners__logo--small img {
	width: 100%;
	height: auto;
}

.pickup-partners__logo--middle {
	width: 185px;
	text-align: center;
}

.pickup-partners__logo--middle img {
	width: 100%;
	height: auto;
}

.pickup-partners__logo--large {
	width: 240px;
	text-align: center;
}

.pickup-partners__logo--large img {
	width: 100%;
	height: auto;
}

.pickup-partners__logo--extra-large {
	width: 270px;
	text-align: center;
}

.pickup-partners__logo--extra-large img {
	width: 100%;
	height: auto;
}

.pickup-partners .slick-slide.pickup-partners__logo--normal {
	padding: 0;
}

.pickup-partners__logo--normal img {
	width: auto;
	height: 100px;
}

.pickup-partners .slick-track {
	display: flex;
	align-items: center;
}

.pickup-partners .slick-slide {
	padding: 0 45px;
}

@media screen and (max-width: 767px) {
	.pickup-partners {
		width: 100%;
		background-color: #fff;
		padding: 0;
	}

	.pickup-partners__inner {
		width: 100%;
		display: flex;
		flex-direction: row;
	}

	.pickup-partners__tagline {
		display: none;
	}

	.pickup-partners__logos {
		width: 100%;
	}

	.pickup-partners__logo--small {
		width: 85px;
	}

	.pickup-partners__logo--small img {
		width: 100%;
		height: auto;
	}

	.pickup-partners__logo--middle {
		width: 95px;
	}

	.pickup-partners__logo--middle img {
		width: 100%;
		height: auto;
	}

	.pickup-partners__logo--large {
		width: 120px;
	}

	.pickup-partners__logo--large img {
		width: 100%;
		height: auto;
	}

	.pickup-partners__logo--extra-large {
		width: 135px;
	}

	.pickup-partners__logo--extra-large img {
		width: 100%;
		height: auto;
	}

	.pickup-partners__logo--normal img {
		width: auto;
		height: 66px;
	}
}

/* introduction */
.introduction-section {
	color: #2b2b2b;
	overflow: hidden;
}

.introduction__inner {
	position: relative;
	z-index: 5;
	margin: 0 auto;
	padding: 0 0 100px;
}

.introduction__inner .introduction__items {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	max-width: var(--wp-container-default);
	margin: 0 auto;
	padding-bottom: 50px;
}

.introduction__inner .introduction__items .introduction__item {
	position: relative;
	max-width: 320px;
	margin: 0 auto;
	padding: 0 30px;
	text-align: center;
	background-color: #ffffff;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.08);
	border-radius: 20px;
}

.introduction__inner .introduction__items .introduction__item .item-number {
	position: absolute;
	top: -56px;
	right: 15px;
	color: #2386e6;
	font-size: 75px;
	font-weight: bold;
	text-align: right;
}

.introduction__inner .introduction__items .introduction__item .item-title {
	margin-bottom: 30px;
	padding-top: 30px;
	font-size: 30px;
	font-weight: bold;
	color: #2e6cff;
}

.introduction__inner .introduction__items .introduction__item .item-sub-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 30px;
}

.introduction__inner .introduction__items .introduction__item .item-thumb {
	margin-bottom: 30px;
}

.introduction__inner .introduction__items .introduction__item .item-thumb img {
	width: 100%;
}

.introduction__inner .introduction__items .introduction__item .item-body {
	margin-bottom: 30px;
	text-align: left;
}

.introduction__inner .introduction__items .introduction__item .item-body i {
	font-weight: bold;
	color: #2386e6;
}

@media screen and (max-width: 767px) {
	.introduction-section .container__inner {
		padding: 60px 1rem 20px;
	}

	.introduction-section .title-box__title,
	.introduction-section .title-box .title {
		margin-bottom: 30px;
	}

	.introduction-section .container__inner .body {
		margin-bottom: 60px;
	}

	.introduction__inner .introduction__items {
		flex-direction: column;
		padding-bottom: 0;
	}

	.introduction__inner .introduction__items .introduction__item {
		max-width: none;
		width: 100%;
		margin: 0 auto 30px;
	}

	.introduction__inner .introduction__items .introduction__item:nth-child(1) {
		top: 0;
	}

	.introduction__inner .introduction__items .introduction__item:nth-child(2) {
		top: 0;
	}
}

/* case */
.case-hero {
	width: 100%;
	height: 100vh;
	color: #fff;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #1b1b1b;
}

.case-hero--922 {
	background-image: url(../business/img/case_mainvisual_922.jpg);
}

.case-hero--clearth-life {
	background-image: url(../business/img/case_mainvisual_clearth-life.jpg);
}

.case-hero--clearth-life .case-hero__caption {
	padding-top: 350px;
	padding-left: 20px;
}

.case-hero--ezo {
	background-image: url(../business/img/case_mainvisual_ezo.jpg);
	background-position: center center;
}

.case-hero--forland {
	background-image: url(../business/img/case_mainvisual_forland.jpg);
	background-position: left center;
}

.case-hero--fronthousing {
	background-image: url(../business/img/case_mainvisual_fronthousing.jpg);
}

.case-hero--fronthousing .case-hero__caption {
	padding-top: 360px;
}

.case-hero--kirameki {
	background-image: url(../business/img/case_mainvisual_kirameki.jpg);
}

.case-hero--kirameki .case-hero__caption {
	padding-top: 380px;
	padding-left: 20px;
}

.case-hero--mjhn {
	background-image: url(../business/img/case_mainvisual_mjhn.jpg);
}

.case-hero--mjhn .case-hero__caption {
	padding-left: 20px;
}

.case-hero--stasia {
	background-image: url(../business/img/case_mainvisual_stasia.jpg);
}

.case-hero--stasia .case-hero__caption {
	padding-top: 50px;
	padding-left: 20px;
}

.case-hero--winwin {
	background-image: url(../business/img/case_mainvisual_winwin.jpg);
}

.case-hero--winwin .case-hero__caption {
	padding-top: 350px;
	padding-left: 20px;
}

.case-hero--owner {
	background-image: url(../business/img/case_mainvisual_owner001.jpg);
}

.case-hero--owner__inner {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0;
}

.case-hero--owner__caption {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0.85;
	width: 50%;
	height: 100%;
	margin: 0 auto;
	padding: 0 20px;
	text-align: left;
}

.case-hero--owner__caption-title {
	width: 80%;
	margin-bottom: 30px;
	font-size: 55px;
	font-weight: bold;
	line-height: 1.2;
}

.case-hero--owner__name {
	width: 80%;
	margin-bottom: 30px;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.8;
}

.case-hero--owner__message {
	width: 80%;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.8;
}

.case-hero--owner__space {
	width: 50%;
	height: 100%;
}

.case-hero--owner-001 {
	margin-bottom: 80px;
	background-image: url(../business/img/case_mainvisual_owner001.jpg);
}

.case-hero--owner-002 {
	margin-bottom: 80px;
	background-image: url(../business/img/case_mainvisual_owner002.jpg);
	background-position: left center;
}

.case-hero--owner-002 .case-hero--owner__caption {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 50%;
	height: 100%;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.case-hero--owner-003 {
	margin-bottom: 80px;
	background-image: url(../business/img/case_mainvisual_owner003.jpg);
}

.case-hero__inner {
	display: flex;
	flex-direction: row;
	max-width: 1440px;
	height: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.case-hero__inner--reverse {
	display: flex;
	flex-direction: row-reverse;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
}

.case-hero__caption {
	display: flex;
	flex-direction: column;
	width: 50%;
	padding-top: 160px;
	color: #fff;
}

.case-hero__caption-number {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: normal;
}

.case-hero__caption-company {
	margin-bottom: 15px;
	line-height: 1.3;
	font-size: 60px;
	font-weight: bold;
}

.case-hero__caption-name {
	font-size: 16px;
	font-weight: normal;
	line-height: 1.8;
}

.case-hero__message-box {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	align-content: center;
	width: 50%;
	margin-bottom: -50px;
}

.case-hero__message {
	z-index: 4;
	max-width: 400px;
	padding: 50px;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.8;
	text-align: justify;
	background-color: #9e936b;
}

.case-hero__caption-company {
	margin-bottom: 15px;
	line-height: 1.3;
	font-size: 60px;
	font-weight: bold;
}

.case-summary-section {
	margin-bottom: 80px;
	padding: 80px 0 80px;
	font-size: 18px;
	font-weight: bold;
	background-image: url(../business/img/bg_geometric_gray.jpg);
}

.case-summary__inner {
	display: block;
	width: 90%;
	margin: 0 auto;
}

.case-summary__box {
	display: flex;
	flex-direction: row;
	align-items: baseline;
}

.case-summary__box:first-child {
	margin-bottom: 30px;
}

.case-summary__caption {
	width: 15%;
	text-align: center;
	line-height: 40px;
	color: #fff;
	background-color: #1b1b1b;
}

.case-summary__lists {
	width: 80%;
	padding-left: 30px;
	line-height: 2.5;
}

.case-interview__picture {
	display: flex;
	align-items: center;
	width: var(--wp-container-reading);
	margin: 0 auto 80px;
}

.case-interview__picture--reverse {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	width: var(--wp-container-reading);
	margin: 0 auto 80px;
}

.case-interview__quotation {
	padding: 75px 50px;
	font-size: 22px;
	font-weight: bold;
	text-align: justify;
	line-height: 1.8;
	background-image: url(../business/img/case_quotation_left.png),
		url(../business/img/case_quotation_right.png);
	background-repeat: no-repeat, no-repeat;
	background-position: 13% 0%, 87% 96%;
	background-size: 50px;
}

.case-interview__image {
	font-size: 22px;
	font-weight: bold;
}

.case-interview__text {
	max-width: var(--wp-container-default);
	margin: 0 auto 80px;
	font-size: 16px;
	line-height: 2.2;
	text-align: justify;
}

.case-interview__text--highlight {
	background: linear-gradient(transparent 40%, #ffff00 40%);
}

.case-interview__text p {
	margin-bottom: 30px;
}

.case-interview__emphasis {
	font-weight: bold;
}

.case__items {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.case__item {
	display: flex;
	flex-direction: column;
	width: 30%;
	margin: 0 15px 30px;
	box-shadow: 0px 20px 20px -4px rgba(0, 0, 0, 0.15);
}

.case__item .case__item-thumb {
	margin-bottom: 30px;
	overflow: hidden;
}

.case__item .case__item-thumb img {
	width: 100%;
}

.case__item .case__item-number {
	width: 130px;
	margin: 0 0 30px 30px;
	padding: 0 10px;
	color: #fff;
	font-size: 12px;
	line-height: 30px;
	text-align: center;
	background-color: #1b1b1b;
}

.case__item .case__item-lead {
	height: 8em;
	padding: 0 30px;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: justify;
}

.case__item .case__item-company {
	height: 2em;
	margin-bottom: 30px;
	padding: 0 30px;
	color: #666;
	font-size: 14px;
}

.case__item .case__item-button {
	padding: 0 30px 30px;
}

.case__item .case__item-button .button {
	display: block;
}

.case-video-section .case-video__inner {
	max-width: var(--wp-container-default);
}

.case-video-section .case-video__inner video {
	width: 100%;
	margin: 0 auto;
}

.case-video-section .case-video__youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.case-video-section .case-video__youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

@media screen and (max-width: 767px) {
	.case-hero {
		height: 60vh;
	}

	.case-hero--clearth-life {
		height: 50vh;
	}

	.case-hero__inner {
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: flex-end;
	}

	.case-hero__caption {
		width: 100%;
		padding-top: 0;
		margin-bottom: 20px;
	}

	.case-hero--clearth-life .case-hero__caption {
		padding: 0;
	}

	.case-hero--fronthousing .case-hero__caption {
		padding-top: 0;
	}

	.case-hero--kirameki .case-hero__caption {
		padding-top: 0;
	}

	.case-hero--stasia .case-hero__caption {
		padding: 0;
	}

	.case-hero--winwin .case-hero__caption {
		padding: 0;
	}

	.case-hero__caption-number {
		margin-bottom: 15px;
		font-size: 12px;
	}

	.case-hero__caption-company {
		font-size: 30px;
	}

	.case-hero__caption-name {
		font-size: 12px;
	}

	.case-hero__message-box {
		width: 100%;
		margin-bottom: 20px;
	}

	.case-hero__message {
		padding: 20px;
		font-size: 14px;
	}

	.case-hero--owner__inner {
		flex-direction: column;
	}

	.case-hero--owner__caption {
		width: 100%;
		height: 100%;
		background-color: #9e936b;
	}

	.case-hero--owner-002 .case-hero--owner__caption {
		width: 100%;
		height: 100%;
		background-color: #9e936b;
	}

	.case-hero--owner__caption-title {
		font-size: 40px;
	}

	.case-hero--owner__name {
		font-size: 18px;
	}

	.case-hero--owner__info {
		margin-bottom: 50px;
		font-size: 12px;
	}

	.case-hero--owner__message {
		font-size: 18px;
	}

	.case-hero--owner__space {
		width: 0%;
		height: 0%;
	}

	.case-summary-section {
		padding: 30px 0 30px;
		font-size: 14px;
	}

	.case-summary__box {
		flex-direction: column;
	}

	.case-summary__caption {
		width: 100%;
		margin: 0 auto 30px;
	}

	.case-summary__lists {
		width: 100%;
		padding-left: 0;
	}

	.case-interview__quotation {
		padding: 75px 32px;
		font-size: 20px;
	}

	.case-interview__picture {
		width: 100%;
		flex-direction: column-reverse;
		margin: 0 auto 50px;
	}

	.case-interview__picture--reverse {
		width: 100%;
		flex-direction: column-reverse;
		margin: 0 auto 50px;
	}

	.case-interview__image {
		margin-bottom: 60px;
	}

	.case-interview__image img {
		width: 100%;
	}

	.case-interview__text {
		font-size: 14px;
	}

	.case__items {
		flex-direction: column;
	}

	.case__item {
		width: 100%;
		margin: 0 0 30px;
	}

	.case-video-section {
		margin-bottom: 50px;
	}

	.case-video-section .case-video__inner {
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.case-video-section .case-video__inner video {
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}
}

/* FAQ */
.faq__title {
	margin-bottom: 50px;
	font-size: 24px;
	font-weight: bold;
}

.faq__list {
	margin-bottom: 30px;
}

.faq__q {
	margin-bottom: 15px;
	font-weight: bold;
}

.carousel-banner {
	overflow: hidden;
	width: 100%;
	padding: 30px;
	background-color: #efefef;
}

.carousel-banner__box {
	margin: 0;
	padding: 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
}

.carousel-banner__box.slick-initialized {
	opacity: 1;
	visibility: visible;
}

.carousel-banner__box:not(.slick-initialized) {
	height: 0;
	overflow: hidden;
}

.carousel-banner__banner-wrap {
	display: flex;
	flex-direction: row;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 767px) {
	.carousel-banner__banner-wrap {
		padding: 30px 0 0;
	}
}

.carousel-banner__banner-image {
	display: block;
	width: 30%;
}

.carousel-banner__banner-image img {
	width: 100%;
}

.carousel-banner__banner-message {
	display: block;
	width: 70%;
	padding: 0 30px 0 15px;
}

.carousel-banner__banner-message:hover {
	text-decoration: underline;
	text-decoration-color: #1b1b1b;
}

.carousel-banner__banner-caption {
	font-size: 0.8vw;
	color: #aaa;
	margin-bottom: 5px;
}

.carousel-banner__banner-title {
	margin-bottom: 5px;
	color: #1b1b1b;
	font-weight: bold;
	line-height: 1.3;
}

.carousel-banner__banner-title span {
	font-weight: normal;
	font-size: 12px;
}

.carousel-banner__banner-body {
	color: #1b1b1b;
	font-size: 14px;
	line-height: 1.5;
}

@media (min-width: 1024px) {
	.carousel-banner .slick-prev {
		top: 50%;
		left: -78px;
	}

	.carousel-banner .slick-next {
		top: 50%;
		right: -78px;
	}

	.carousel-banner .slick-prev,
	.carousel-banner .slick-next {
		width: 44px;
		height: 104px;
	}

	.carousel-banner .slick-prev:before,
	.carousel-banner .slick-prev:after {
		top: -4px;
		left: 20px;
	}

	.carousel-banner .slick-prev:after {
		top: 45px;
	}

	.carousel-banner .slick-next:before,
	.carousel-banner .slick-next:after {
		top: 44px;
		right: 20px;
	}

	.carousel-banner .slick-next:after {
		top: -4px;
	}
}

@media screen and (max-width: 767px) {
	.carousel-banner {
		padding: 0;
	}

	.carousel-banner__banner-image {
		width: 50%;
	}

	.carousel-banner__banner-message {
		width: 50%;
		padding: 0 0 0 15px;
		display: flex;
		flex-direction: column;
	}

	.carousel-banner__banner-caption {
		font-size: 3vw;
		line-height: 1.5;
		color: #aaa;
		margin-bottom: 5px;
	}

	.carousel-banner__banner-body {
		font-size: 14px;
	}
}

/* company */
.company-section__inner {
	position: relative;
	z-index: 5;
	display: block;
	margin: 0 auto;
	padding: 0 1rem;
}

.company-section {
	background-color: #fbfbfc;
	padding: 100px 0;
}

.company-section__inner .title-box {
	margin-bottom: 60px;
}

.company-section__teams {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin: 40px auto 0;
	max-width: 1040px;
}

.company-section__card {
	background: #ffffff;
	border-radius: 24px;
	padding: 60px 40px;
	border: 1px solid #ebedef;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
	text-align: center;
	flex: 1 1 0;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	overflow: hidden;
}

.company-section__card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #b8a86f 0%, #d4c89e 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.company-section__card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
	border-color: #b8a86f;
}

.company-section__card:hover::after {
	opacity: 1;
}

.company-section__label {
	font-size: 18px;
	color: #6c757d;
	margin-bottom: 24px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.company-section__number {
	font-size: 64px;
	font-weight: 800;
	color: #1b1b1b;
	line-height: 1;
	display: flex;
	align-items: baseline;
	justify-content: center;
}

.company-section__number .unit {
	font-size: 22px;
	margin-left: 8px;
}

.company-section__number .note-mark {
	font-size: 14px;
	font-weight: normal;
	color: #adb5bd;
	align-self: flex-start;
	margin-left: 4px;
}


@media screen and (max-width: 1280px) {
	.company-section__teams {
		gap: 20px;
	}

	.company-section__card {
		padding: 40px 20px;
	}

	.company-section__number {
		font-size: 48px;
	}
}

@media screen and (max-width: 767px) {
	.company-section {
		padding: 40px 0;
	}

	.company-section__teams {
		flex-direction: column;
		gap: 20px;
		padding: 0;
		margin-top: 20px;
	}

	.company-section__card {
		padding: 40px 20px;
		flex: none;
		width: 100%;
		border-radius: 16px;
	}

	.company-section__label {
		font-size: 16px;
		margin-bottom: 16px;
	}

	.company-section__number {
		font-size: 44px;
	}

	.company-section__number .unit {
		font-size: 22px;
		margin-left: 4px;
	}
}

/* about */

.about-section .body {
	margin-bottom: 30px;
}

.about-section__inner {
	width: 90%;
	margin: 0 auto;
	padding: 100px 0 50px;
}

.about-section__img {
	margin-bottom: 80px;
}

.about-section__img img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

.about-section__movie {
	width: 70%;
	margin: 0 auto;
}

.about-section__movieInner {
	position: relative;
	width: 100%;
	margin-bottom: 30px;
	padding-top: 56.25%;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.about-section__movieInner iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.about-section__movieTxt {
	font-size: 18px;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.about-section__inner .title-box__title,
	.about-section__inner .title-box .title {
		margin-bottom: 30px;
		display: block;
		white-space: normal;
		overflow-wrap: anywhere;
	}

	.about-section__inner .title-box__title::after,
	.about-section__inner .title-box .title::after {
		display: none;
	}

	.about-section .body {
		margin-bottom: 50px;
	}

	.about-section__inner {
		width: 100%;
		padding: 50px 1rem 0;
	}

	.about-section__img {
		margin-bottom: 70px;
	}

	.about-section__img img {
		width: 100%;
		height: auto;
	}

	.about-section__movie {
		width: 100%;
	}

	.about-section__movieInner {
		width: 100%;
		margin-bottom: 20px;
	}

	.about-section__movieTxt {
		font-size: 16px;
	}
}

/* variation */
.variation-section.topic__variation {
	padding: 0;
}

@media screen and (max-width: 767px) {
	.variation-section__inner {
		flex-direction: column;
	}

	.variation-section .title {
		margin-bottom: 30px;
	}

	.variation-section .topic__variationTeam {
		width: 100% !important;
	}

	.variation-section .topic__variationTeam .topic__variationList {
		width: 100% !important;
		text-align: center;
	}

	.variation-section .topic__variationTeam .topic__variationList .topic__variationLink {
		text-align: center !important;
	}

	.variation-section .topic__variationTeam--feature {
		width: 100% !important;
	}

	.variation-section .topic__variationTeam--feature .topic__variationList {
		width: 100% !important;
		text-align: center;
	}

	.variation-section .topic__variationTeam--feature .topic__variationList .topic__variationLink {
		text-align: center !important;
	}

	.variation-section .topic__variationTeam--help {
		width: 100% !important;
	}

	.variation-section .topic__variationTeam--help .topic__variationList {
		width: 100% !important;
		text-align: center;
	}

	.variation-section .topic__variationTeam--help .topic__variationList .topic__variationLink {
		text-align: center !important;
	}
}

***************************************/

.interviewer {
	font-weight: bold;
	font-size: 20px;
	line-height: 1.8;
	margin-bottom: 30px;
}

.interviewer::before {
	content: '――';
}

.toc {
	margin-bottom: 50px;
	padding: 30px;
	border: 2px solid #2b2b2b;
	width: 100%;
	box-sizing: border-box;
}

.toc__title {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	text-align: center;
	font-weight: bold;
	font-size: 1.1rem;
}

.toc__list {
	margin: 0 !important;
}

.toc__list--child {
	margin: 0.5rem 0 0 4rem;
}

.toc__item {
	counter-increment: toc;
	margin-bottom: 1rem;
	list-style: none !important;
}

.toc__item--child {
	font-size: 0.9rem;
}

.toc__item::before {
	content: counter(toc);
	background-color: #1b1b1b;
	width: 1.5rem;
	height: 1.5rem;
	display: inline-flex;
	margin-right: 0.3rem;
	border-radius: 50%;
	color: #fff;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 0.9rem;
}

.toc__link,
.toc__link--child {
	color: #2b2b2b;
	font-weight: bold;
}

.modal-movie {
	width: 100%;
	height: 100%;
}

.modal-movie iframe {
	border: none;
	width: 100%;
	height: 100%;
}

#popup-banner {
	width: 250px;
	height: 275px;
	/* height: 250px; */
	/* 画面の1/3の幅 */
	position: fixed;
	/* 固定表示 */
	bottom: 16px;
	/* 画面下から16px */
	right: 16px;
	/* 画面の右から16px */
	z-index: 990;
	/* 常に前面に出す */
	transition: 0.3s;
	/* ホバー時ゆっくり透過 */
	cursor: pointer;
	/* ホバー時カーソルがポインターに */
}

#popup-banner:hover {
	opacity: 0.8;
	/* ホバーで透過させる */
}

.popup-banner_img {
	/* 画像をpopup-bannerの幅に合わせる */
	width: 100%;
	border-radius: 5px;
	border: 1px solid #efefef;
}

.popup-banner_img--sp {
	display: none;
}

#popup-banner_delete {
	position: absolute;
	top: -12px;
	right: -10px;
	width: 24px;
	height: 24px;
	color: #999999;
	background-image: url('../img/popup-banner_delete-btn.png');
	background-size: 24px 24px;
	cursor: pointer;
	z-index: 9999;
}

@media screen and (max-width: 767px) {
	#popup-banner {
		width: calc(100% - 30px);
		margin: auto 15px;
		height: auto;
		bottom: 10px;
		right: 0;
	}

	.popup-banner_img {
		display: none;
	}

	.popup-banner_img--sp {
		display: block;
		width: 100%;
		border-radius: 5px 0 0 5px;
		border: 1px solid #efefef;
	}

	#popup-banner_delete {
		position: absolute;
		top: 0px;
		right: 0px;
		width: 20px;
		height: 20px;
		background-image: url('../img/popup-banner_delete-btn--sp.jpg');
		background-size: 20px 20px;
		cursor: pointer;
		z-index: 9999;
	}
}

.message-video {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	color: #fff;
	overflow: hidden;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: none;
	position: relative;
	margin: 0 auto;
	background-color: #1a1a1a;
	display: flex;
	justify-content: center;
	min-height: 100vh;
	isolation: isolate;
}

.message-video::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1;
}

.message-video__background {
	z-index: 0;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.message-video__units {
	position: relative;
	z-index: 2;
	width: 100%;
}

.message-video__inner,
.message-video__inner--rev {
	position: relative;
	display: flex;
	width: var(--wp-container-default);
	margin: 50px auto;
}

.message-video__inner .image,
.message-video__inner--rev .image {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	width: 48%;
	margin-left: 50px;
	margin-bottom: 100px;
}

.message-video__inner .message,
.message-video__inner--rev .message {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	width: 50%;
	padding-left: 50px;
}

.message-video__inner .message__title,
.message-video__inner--rev .message__title {
	width: 100%;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 50px;
}

.message-video__inner .message__txt,
.message-video__inner--rev .message__txt {
	width: 100%;
	color: #fff;
	font-weight: bold;
}

.message-video__inner .message__ref,
.message-video__inner--rev .message__ref {
	width: 100%;
	color: #fff;
	font-size: 12px;
	line-height: 2;
	margin-bottom: 20px;
}

.message-video__inner .message__ref--end,
.message-video__inner--rev .message__ref--end {
	width: 100%;
	color: #fff;
	font-size: 12px;
	line-height: 2;
	margin-bottom: 0px;
}

.message-video__inner--rev {
	flex-direction: row-reverse;
}

.message-video__inner--rev .image {
	margin: 0px 50px 100px 0px;
}

.message-video__comments {
	width: 48%;
}

.message-video__youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.message-video__youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.more-case__btn {
	margin: 15px 0 0;
	text-align: right;
}

.divider--hr {
	margin: 40px auto;
	width: calc(100% - 2rem);
	border: none;
	border-top: 1px solid #cccccc;
}

.divider--hr-full {
	width: 100%;
}

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

	.message-video__inner,
	.message-video__inner--rev {
		width: 750px;
	}
}

@media screen and (max-width: 767px) {
	.message-video__units {
		width: 100%;
	}

	.message-video {
		height: unset;
	}

	.message-video__background {
		height: 100%;
	}

	.message-video__inner {
		margin-bottom: 70px;
	}

	.message-video__inner,
	.message-video__inner--rev {
		flex-direction: column;
		width: 100%;
		height: auto;
		padding: 0 1rem;
	}

	.message-video__inner .image,
	.message-video__inner--rev .image {
		width: 100%;
		margin: 0px;
	}

	.message-video__inner .message,
	.message-video__inner--rev .message {
		width: 100%;
		padding: 0 30px;
	}

	.message-video__inner .message__txt,
	.message-video__inner--rev .message__txt {
		font-size: 16px;
		margin-bottom: 0px;
	}

	.message-video__inner--rev .image {
		margin: 0px;
	}

	.message-video__comments {
		width: 100%;
		padding-bottom: 30px;
	}

	.more-case__btn {
		margin: 15px 20px 30px;
	}
}
