@charset "UTF-8";
/*--------------------------------------------------
**************************************************
  ヘッダー
**************************************************
--------------------------------------------------*/
header {
	min-height: 100vh;
}

/*
header .logo {
	opacity: 0;
	animation: fadeIn 3s ease-out forwards;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}
*/

header .logo {
	opacity: 0;
	transition: opacity 1.5s ease;
}

header .logo.display {
	opacity: 1;
}


/*--------------------------------------------------
**************************************************
  ページ内 汎用
**************************************************
--------------------------------------------------*/
.heading_01 {
	position: relative;
}

.heading_01::after {
	content: '';
	display: block;
	width: 30px;
	height: 5px;
}


/*--------------------------------------------------
**************************************************
  プロフィール
**************************************************
--------------------------------------------------*/
.profile {
	position: relative;
	/* min-height: 918px; */
	padding: 97px 0 113px;
	background: var(--gray-1) url(../imgs/top/profile_bg.png) no-repeat left -10px top / auto 100%;
	color: var(--white-1);
	overflow: hidden;
}

.profile .inner {
	margin-inline: auto;
}

.profile .inner .box {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	gap: 50px;
	margin-right: calc(50% - 50vw - 40px);
}

.profile .heading_01::after {
	background: var(--white-1);
}

.profile .text_box {
	position: relative;
	width: 100%;
	margin: auto;
}

.profile .name_box {
	margin-top: 50px;
}

.profile .name_box .ja {
	display: flex;
	gap: 20px;
	line-height: 2;
}

.profile .name_box .ja span {
	font-size: 2.4rem;
	letter-spacing: 0.3em;
}

.profile .name_box .en {
	font-size: 1.8rem;
	letter-spacing: 0.1em;
}

.profile .introduction {
	margin-top: 50px;
	/* font-family: "Noto Sans JP", sans-serif; */
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 2.1;
}

.profile .image_box {
	position: relative;
	right: -20px;
	flex-shrink: 0;
	max-width: 795px;
	width: 50vw;
}

/* SP */
@media screen and (max-width: 767px) {
	.profile {
		background-size: 100%;
		background-position: left bottom;
	}
	
	.profile .inner .box {
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		gap: 50px;
		margin-right: 0;
	}
	
	.profile .image_box {
		inset: 0;
		max-width: none;
		width: 100%;
	}
}


/*--------------------------------------------------
**************************************************
  ※装飾
**************************************************
--------------------------------------------------*/
.decoration_01 {
	position: relative;
	/* overflow: hidden; */
}

.decoration_01::after {
	content: '';
	position: absolute;
	top: 0;
	right: -150px;
	display: block;
	width: 882px;
	height: 1883px;
	background: url(../imgs/top/decoration_01.svg) no-repeat left top / cover;
}

/* SP */
@media screen and (max-width: 767px) {
	.decoration_01::after {
		inset: 0;
		width: 100%;
		height: 100%;
	}
}


/*--------------------------------------------------
**************************************************
  メッセージ
**************************************************
--------------------------------------------------*/
.message {
	padding: 97px 0 113px;
	background: #BCB7A8 url(../imgs/top/message_01.svg) no-repeat center top 30px / auto 218px;
}

.message .heading_01::after {
	background: var(--black-4);
}

.message .text_box {
	margin-top: 60px;
	/* font-family: "Noto Sans JP", sans-serif; */
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 2.1;
}

.message .text_box p:not(:nth-of-type(1)) {
	margin-top: 25px;
}

/* SP */
@media screen and (max-width: 767px) {
	.message {
		background-position: center top 50px;
		background-size: 90%;
	}
}


/*--------------------------------------------------
**************************************************
  事業内容
**************************************************
--------------------------------------------------*/
.service {
	padding: 80px 0;
	background: var(--blue-1);
	color: var(--white-1);
}

.service .heading_01::after {
	background: var(--white-1);
}

.service .text_box {
	margin-top: 60px;
}

.service .text_box h3 {
	font-size: 2.4rem;
}

.service .text_box p {
	margin-top: 25px;
	/* font-family: "Noto Sans JP", sans-serif; */
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 2.1;
}

.service .list {
	counter-reset: service_counter;
	display: flex;
	margin-top: 80px;
}

.service .list .item {
	counter-increment: service_counter;
	position: relative;
	max-width: calc( var(--content-width) / 3 );
	width: 100%;
	padding: 70px 22px 15px;
	border-right: var(--white-1) 1px solid;
}

.service .list .item:first-child {
	padding-left: 0;
}

.service .list .item:last-child {
	padding-right: 0;
	border-right: none;
}

.service .list .item::before {
	content: counter(service_counter, decimal-leading-zero) ". ";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	padding-bottom: 5px;
	border-bottom: var(--white-1) 1px solid;
	font-family: "Rounded Mplus 1c", sans-serif;
	font-size: 2.0rem;
}

.service .list .item:first-child::before {
	left: calc(50% - 22px);
}

.service .list .item h4 {
	text-align: center;
	font-size: 2.4rem;
	color: var(--blue-3);
}

.service .list .item .icon {
	display: flex;
	align-items: flex-end;
	width: 140px;
	height: 120px;
	margin: 30px auto 0;
}

.service .list .item p {
	margin-top: 30px;
	/* font-family: "Noto Sans JP", sans-serif; */
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 2.1;
}

/* SP */
@media screen and (max-width: 767px) {
	.service .list {
		flex-direction: column;
		gap: 50px;
		margin-top: 50px;
	}
	
	.service .list .item {
		max-width: none;
		padding: 50px 0;
		border-right: none;
		border-bottom: var(--white-1) 1px solid;
	}
	
	.service .list .item:last-child {
		border-bottom: none;
	}
	
	.service .list .item:first-child::before {
		left: 50%;
	}
	
	.service .list .item .icon {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 20%;
		height: auto;
	}
}


/*--------------------------------------------------
**************************************************
  HISTORY & AUTHORITY
**************************************************
--------------------------------------------------*/
.works {
	background: url(../imgs/top/works_bg.png) repeat left top / cover;
}

.works .heading_01::after {
	background: var(--black-3);
}

.works_content_1 {
	position: relative;
	padding: 100px 0;
}

.works_content_1 .heading_01,
.works_content_1__text {
	position: relative;
	z-index: 2;
}

.works_content_1__text p {
	max-width: 894px;
	margin-top: 73px;
	font-size: 2.4rem;
	line-height: 2.5;
	color: var(--black-3);
}

.works_content_1__image {
	position: absolute;
	top: 0;
	right: calc(50% - 50vw);
	bottom: 0;
	z-index: 1;
	width: min(34vw, 640px);
	overflow: hidden;
	clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
}

.works_content_1__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* object-position: 46% 56%; */
	transform: translate(21%, 10%) scale(1.5);
	/* transform-origin: 46% 56%; */
}

/* SP */
@media screen and (max-width: 767px) {
	.works_content_1 {
		padding: 80px 0 0;
	}

	.works_content_1__text p {
		margin-top: 45px;
		/* font-size: 1.8rem; */
		font-size: 1.4rem;
		line-height: 2.1;
	}

	.works_content_1__image {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		width: 100%;
		height: clamp(280px, 72vw, 420px);
		margin-top: 40px;
		clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
	}
	
	.works_content_1__image img {
		transform: translate(15%, 10%) scale(1.5);
	}
}



/*--------------------------------------------------
**************************************************
  マイルストーン
**************************************************
--------------------------------------------------*/
.milestone {
	padding-block: 84px 90px;
	background: var(--blue-4);
}

.milestone .inner {
	max-width: 100%;
}

.heading_02 {
	position: relative;
}

.heading_02::after {
	content: '';
	display: block;
	width: 30px;
	height: 5px;
	margin: 25px auto 0;
}

.milestone .heading_02 .main,
.milestone .heading_02 .sub {
	color: var(--white-1);
}

.milestone .heading_02::after {
	background: var(--white-1);
}

.milestone__scroll {
	width: 100%;
	margin-top: 73px;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 12px;
	-webkit-overflow-scrolling: touch;
	scrollbar-gutter: stable both-edges;
}

/*
.milestone__scroll {
	scrollbar-color: #c9ab2f rgba(255, 255, 255, 0.18);
}

.milestone__scroll::-webkit-scrollbar {
	height: 10px;
}

.milestone__scroll::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.18);
	border-radius: 999px;
}

.milestone__scroll::-webkit-scrollbar-thumb {
	background: linear-gradient(90deg, #ffe066 0%, #c9ab2f 100%);
	border: 1px solid rgba(8, 24, 79, 0.45);
	border-radius: 999px;
}

.milestone__scroll::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(90deg, #ffeb8a 0%, #d8bc4a 100%);
}
*/

.milestone__indicator {
	display: none;
}

@media screen and (min-width: 768px) {
	.milestone__scroll {
		padding-bottom: 0;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.milestone__scroll::-webkit-scrollbar {
		display: none;
		width: 0;
		height: 0;
	}

	.milestone__indicator {
		position: relative;
		display: none;
		width: min(360px, calc(100% - 80px));
		height: 20px;
		margin: 34px auto 0;
	}

	.milestone__indicator.is-active {
		display: block;
	}

	.milestone__indicator::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		height: 2px;
		background: #363530;
		transform: translateY(-50%);
	}

	.milestone__indicator-dot {
		position: absolute;
		top: 50%;
		left: 0;
		width: 18px;
		height: 18px;
		border-radius: 50%;
		background: #c9ab2f;
		box-shadow: 0 0 0 4px rgba(201, 171, 47, 0.18);
		cursor: grab;
		touch-action: none;
		transform: translateY(-50%);
	}

	.milestone__indicator-dot.is-dragging {
		cursor: grabbing;
	}
}

.milestone__list {
	position: relative;
	display: flex;
	gap: 60px;
	width: 1526px;
	min-width: 1526px;
	margin: 0 auto;
	padding: 0 52px;
}

.milestone__list::before {
	content: '';
	position: absolute;
	top: 14px;
	left: 0;
	right: 24px;
	height: 1px;
	background: #FFDD00;
}

.milestone__list::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 24px;
	height: 28px;
	background: #ffd600;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.milestone__item {
	flex: 1 1 0;
	position: relative;
	padding-top: 46px;
	text-align: center;
}

.milestone__item::before {
	content: '';
	position: absolute;
	top: 6px;
	left: 50%;
	width: 18px;
	height: 18px;
	border: 2px solid #FFDD00;
	border-radius: 50%;
	background: var(--white-1);
	transform: translateX(-50%);
	z-index: 1;
}

.milestone__year {
	font-size: 1.8rem;
	line-height: 1.6;
	color: var(--white-1);
}

.milestone__text {
	margin-top: 10px;
	font-size: 1.4rem;
	line-height: 1.71;
	color: var(--white-1);
}

/* SP */
@media screen and (max-width: 767px) {
	.milestone {
		padding-block: 80px;
	}

	.heading_02::after {
		margin-top: 20px;
	}

	.milestone__scroll {
		margin-top: 50px;
		overflow: visible;
		padding-bottom: 0;
	}

	.milestone__list {
		display: flex;
		flex-direction: column;
		gap: 32px;
		width: 100%;
		min-width: 0;
		padding: 30px 0 50px 34px;
	}

	.milestone__list::before {
		top: 0;
		bottom: 18px;
		left: 9px;
		right: auto;
		width: 1px;
		height: auto;
	}

	.milestone__list::after {
		top: auto;
		bottom: 0;
		left: 0;
		right: auto;
		width: 20px;
		height: 24px;
		clip-path: polygon(50% 100%, 0 0, 100% 0);
	}

	.milestone__item {
		padding-top: 0;
		padding-left: 30px;
		text-align: left;
	}

	.milestone__item::before {
		top: 6px;
		left: -1px;
		transform: none;
	}

	.milestone__item::after {
		content: '';
		position: absolute;
		top: 14px;
		left: -24px;
		width: 24px;
		height: 1px;
		background: #ffd600;
	}

	.milestone__year,
	.milestone__text {
		text-align: left;
	}
}


/*--------------------------------------------------
**************************************************
  主な実績
**************************************************
--------------------------------------------------*/
.bg_ivory {
	background-color: var(--ivory-1);
}

.achievements {
	/* max-width: 1400px; */
	max-width: 1280px;
	padding-block: 70px 50px;
}

.achievements .heading_02::after {
	background: var(--black-3);
}

.achievements__list {
	display: flex;
	justify-content: center;
	margin-top: 58px;
}

.achievements__item {
	display: flex;
	flex: 1 1 25%;
	flex-direction: column;
	align-items: center;
	padding-inline: 45px;
	text-align: center;
}

.achievements__item + .achievements__item {
	border-left: 1px solid #6C6848;
}

.achievements__icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 90px;
}

.achievements__icon {
	display: block;
	width: auto;
	object-fit: contain;
}

.achievements__icon--business {
	width: 71px;
	height: 71px;
}

.achievements__icon--media {
	width: 61px;
	height: 61px;
	border-radius: 34px;
}

.achievements__icon--social {
	width: 90px;
	height: 90px;
}

.achievements__icon--brand {
	width: 61px;
	height: 61px;
}

.achievements__title {
	margin-top: 20px;
	font-size: 2.4rem;
	line-height: 1.3;
	color: var(--black-3);
}

.achievements__subtitle {
	margin-top: 10px;
	min-height: 5.4rem;
	font-size: 1.8rem;
	line-height: 1.5;
	color: var(--black-3);
}

.achievements__value {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	margin-top: 20px;
	min-height: 4rem;
	color: var(--black-3);
}

.achievements__number {
	font-family: "Century", serif;
	font-size: 4rem;
	line-height: 1;
}

.achievements__unit {
	font-size: 1.6rem;
	line-height: 1.4;
}

.achievements__value--text {
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.1em;
}

.achievements__text {
	margin-top: 20px;
	min-height: 5.6rem;
	font-size: 1.4rem;
	line-height: 2;
	color: var(--black-3);
}

/* SP */
@media screen and (max-width: 767px) {
	.achievements {
		padding-block: 70px;
	}

	.achievements .heading_02 .main {
		font-size: 3rem;
	}

	.achievements__list {
		flex-wrap: wrap;
		margin-top: 50px;
	}

	.achievements__item {
		flex-basis: 50%;
		/* padding: 32px 24px; */
		padding: 20px 10px;
	}

	.achievements__item + .achievements__item {
		border-left: none;
	}

	.achievements__item:nth-child(even) {
		border-left: 1px solid #6C6848;
	}

	.achievements__item:nth-child(n + 3) {
		border-top: 1px solid #6C6848;
	}

	.achievements__title {
		font-size: 2rem;
	}

	.achievements__subtitle {
		min-height: 7.2rem;
		font-size: 1.6rem;
	}

	.achievements__value {
		min-height: 3.4rem;
	}

	.achievements__number {
		font-size: 3.4rem;
	}
	
	.achievements__unit {
		font-size: 1.0rem;
		line-height: 1.4;
	}

	.achievements__value--text {
		font-size: 3rem;
	}

	.achievements__text {
		min-height: 10.2rem;
		line-height: 1.8;
	}

	.achievements__subtitle--sp-auto,
	.achievements__value--sp-auto,
	.achievements__text--sp-auto {
		min-height: auto;
	}
}


/*--------------------------------------------------
**************************************************
  主な活動領域
**************************************************
--------------------------------------------------*/
.area_of_impact {
	max-width: 1400px;
	padding-block: 70px 50px;
}

.area_of_impact .heading_02::after {
	background: var(--black-3);
}

.area_of_impact__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
	margin-top: 60px;
}
/*
.area_of_impact__item {
	padding-inline: 50px;
}
*/
.area_of_impact__icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	margin-inline: auto;
}

.area_of_impact__icon {
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
}

.area_of_impact__icon--strategy {
	width: 71px;
	height: 71px;
}

.area_of_impact__icon--marketing {
	width: 64px;
	height: 64px;
}

.area_of_impact__icon--hr {
	width: 90px;
	height: 90px;
}

.area_of_impact__icon--finance {
	width: 65px;
	height: 65px;
}

.area_of_impact__icon--product {
	width: 64px;
	height: 64px;
}

.area_of_impact__icon--branding {
	width: 57px;
	height: 57px;
}

.area_of_impact__icon--store {
	width: 59px;
	height: 59px;
}

.area_of_impact__text {
	margin-top: 10px;
	font-size: 1.8rem;
	line-height: 1.6;
	text-align: center;
	color: var(--black-3);
}

/* SP */
@media screen and (max-width: 767px) {
	.area_of_impact {
		padding-block: 0 70px;
	}

	.area_of_impact__list {
		column-gap: 16px;
		row-gap: 28px;
		margin-top: 50px;
	}

	.area_of_impact__item {
		flex: 0 0 calc((100% - 16px) / 2);
		padding-inline: 20px;
	}

	.area_of_impact__text {
		font-size: 1.6rem;
		line-height: 1.5;
	}
}


/*--------------------------------------------------
**************************************************
  メディア実績
**************************************************
--------------------------------------------------*/
.media {
	padding-block: 50px 90px;
	background-color: var(--white-1);
}

.media .heading_02::after {
	background: var(--black-3);
}

.media__slider {
	width: 100%;
	margin-top: 100px;
	pointer-events: none;
}

.media__slider + .media__slider {
	margin-top: 25px;
}

.media__slider .swiper-wrapper {
	transition-timing-function: linear;
}

.media__slide {
	width: 238px;
	border: #333 1px solid;
}

.media__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
}

.media__logo img {
	display: block;
	width: 100%;
	height: auto;
}

/* SP */
@media screen and (max-width: 767px) {
	.media {
		padding-block: 70px 80px;
	}

	.media__slider {
		margin-top: 50px;
	}

	.media__slider + .media__slider {
		margin-top: 20px;
	}

	.media__slide {
		width: 190px;
	}

	.media__logo {
		height: 78px;
		padding-inline: 14px;
	}
}


/*--------------------------------------------------
**************************************************
  メディア・活動実績紹介
**************************************************
--------------------------------------------------*/
.featured_achievements {
	padding-block: 57px 87px;
	background-color: #F8F8F5;
}

.featured_achievements .heading_02::after {
	background: var(--black-3);
}

.featured_achievements .archive_box {
	margin-top: 120px;
}



.featured_achievements .view_more {
	display: flex;
	justify-content: center;
	margin-top: 100px;
}

.featured_achievements .view_more a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 320px;
	width: 100%;
	height: 60px;
	background: var(--black-4);
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--white-1);
}

.featured_achievements .view_more a::after {
	content: '→';
	position: absolute;
	inset: unset;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	transform-origin: unset;
	width: auto;
	height: auto;
	background-color: unset;
}

/* SP */
@media screen and (max-width: 767px) {
	
	.featured_achievements .view_more {
		margin-top: 50px;
	}
	
	.featured_achievements .view_more a {
		max-width: none;
		width: 90%;
	}
}

.featured_achievements__slider {
	position: relative;
	padding-inline: 96px;
}

.featured_achievements__modals.activities_box {
	display: block;
}

.featured_achievements__list.activities_box.swiper-wrapper {
	display: flex;
	align-items: stretch;
}

.featured_achievements__item.activities_item {
	max-width: none;
	height: auto;
}

/* PC: 4枚表示を基準にしつつ、大画面ではカード幅を広げすぎない。 */
@media screen and (min-width: 768px) {
	.featured_achievements__item.activities_item {
		width: min(392px, calc((100% - 132px) / 4));
	}
}

.featured_achievements__item .post_card {
	height: 100%;
}

.featured_achievements__item .post_card .thumb {
	aspect-ratio: 392 / 262;
	overflow: hidden;
}
/*
.featured_achievements__item .post_card .post_title {
	min-height: 3.04em;
}
*/
.featured_achievements__item .post_card .post_text {
	max-width: 23em;
	margin-inline: auto;
}

.featured_achievements__nav {
	position: absolute;
	top: 128px;
	z-index: 5;
	width: 60px;
	height: 60px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.featured_achievements__nav.swiper-button-disabled {
	opacity: 0.45;
	cursor: default;
}

/* 全件が収まる場合も、矢印は薄く残して操作不可にする。 */
.featured_achievements__nav.swiper-button-lock {
	display: block;
	opacity: 0.45;
	cursor: default;
	pointer-events: none;
}

.featured_achievements__nav--prev {
	left: 1rem;
}

.featured_achievements__nav--next {
	right: 1rem;
}

.featured_achievements__nav img {
	display: block;
	width: 100%;
	height: 100%;
}

/* SP */
@media screen and (max-width: 767px) {
	.featured_achievements {
		padding-block: 57px 70px;
	}
	
	.featured_achievements .heading_02 .main {
		font-size: 3.0rem;
	}

	.featured_achievements .archive_box {
		margin-top: 70px;
	}

	.featured_achievements__slider {
		padding-inline: 42px;
	}

	.featured_achievements__item .post_card .post_title {
		min-height: 0;
	}

	.featured_achievements__item .post_card .post_text {
		max-width: none;
	}

	.featured_achievements__nav {
		top: 95px;
		width: 38px;
		height: 38px;
	}
}
