@charset "utf-8";

.main::after{
	background: var(--blackcolor);
}



/*-------------------------------
	共通
-------------------------------*/

.Philosophy{
	background: var(--blackcolor);
}
.Philosophy-wrap__image{
	width: 100%;
	position: relative;
	z-index: 5000;
}
.Philosophy-wrap__image::before{
	background: var(--blackcolor);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 6000;
	transition: clip-path 1.5s cubic-bezier(.85, 0, .15, 1);
	clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0% 100%);
}
.Philosophy-wrap__image img{
	width: 100%;
}
.Philosophy-wrap__image.on::before{
	clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
}

.Philosophy__inner{
	margin-bottom: 4.5rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	z-index: 6000;
}
.Philosophy__title{
	width: 20rem;
	margin-bottom: 0;
	color: #fff;
}
.Philosophy-block{
	width: calc(100% - 20rem);
	padding-left: 7rem;
}
.Philosophy-block__title{
	font-size: 4rem;
	margin-bottom: 3rem;
	letter-spacing: .01em;
	font-weight: 700;
	color: #fff;
}
.Philosophy-block__title-inner{
	line-height: 1;
	display: block;
}
.Philosophy-block__title-inner:not(:last-child){
	margin-bottom: 2.6rem;
}
.Philosophy-block__text{
	font-size: 2rem;
	letter-spacing: .05em;
	color: #fff;
}
.Philosophy-image{
	position: relative;
	z-index: 4000;
}
.Philosophy-image::before{
	width: calc(50% - 48.3rem);
	top: -20rem;
}
.Philosophy-image__inner{
	display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.Philosophy-image__inner img{
	width: calc(100% - 27rem);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

	.Philosophy-image::before{
		width: calc(var(--padding-leftright) + 15rem);
	}

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	.Philosophy-block{
		padding-left: 2.5rem;
	}
	.Philosophy-image__inner img{
		width: calc(100% - 22.5rem);
	}

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

	.Philosophy__inner{
		margin-bottom: 7.5rem;
		flex-direction: column;
	}
	.Philosophy__title{
		width: 100%;
		margin-bottom: 9rem;
		letter-spacing: .01em;
		font-size: 4.8rem;
	}
	.Philosophy-block{
		width: 100%;
		padding-left: 8rem;
	}
	.Philosophy-block__title{
		font-size: 5rem;
		margin-bottom: 3.5rem;
		line-height: calc(8 / 5);
	}
	.Philosophy-block__text{
		font-size: 2.8rem;
	}
	.Philosophy-image::before{
		width: calc(var(--padding-leftright) + 7.5rem);
		top: -5rem;
	}
	.Philosophy-image__inner img{
		width: calc(100% - 8rem);
	}

	/* アニメーション対策（PC版のアニメーションを無効にする） */
	.Philosophy-wrap{
		transform: translate3d(0,0,0) !important;
	}

}



/*-------------------------------
	キャッチコピー
-------------------------------*/

.Catchcopy__inner{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.Catchcopy__title{
	font-size: 8rem;
	font-weight: 700;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.Catchcopy__title-inner{
	letter-spacing: -.05em;
	line-height: calc(15 / 8);
	display: block;
	font-feature-settings: "palt";
	clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
	transition: clip-path 1s cubic-bezier(.85, 0, .15, 1);
}
.Catchcopy__title-inner:nth-of-type(2){
	transition-delay: .5s;
}
.Catchcopy__text{
	transition: all .5s ease-in-out;
	font-size: 2rem;
	letter-spacing: .05em;
	transform: translateY(1.5rem);
	opacity: 0;
	transition-delay: 1.5s;
}

.Catchcopy.on .Catchcopy__title-inner{
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.Catchcopy.on .Catchcopy__text{
	transform: translateY(0);
	opacity: 1;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	#Catchcopy{
		padding-top: 14.5rem;
		padding-bottom: 17.5rem;
	}
	.Catchcopy__title{
		margin-bottom: 2rem;
	}
	.Catchcopy__text{
		width: 100%;
		font-size: 3.4rem;
		line-height: calc(6.4 / 3.4);
	}

}



/*-------------------------------
	ミッション
-------------------------------*/

.Mission{
	padding-bottom: 0;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.Mission{
		padding-top: 8.8rem;
		margin-top: -1px;
	}

}



/*-------------------------------
	ビジョン
-------------------------------*/

.Vision{
	padding-bottom: 0;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.Vision{
		margin-top: -1px;
	}

}



/*-------------------------------
	バリュー
-------------------------------*/

.Values__inner{
	margin-bottom: 5rem;
}
.Values-list{
	width: 100%;
	max-width: 74.6rem;
}
.Values-list__item{
	width: 100%;
	padding-bottom: 1.8rem;
	border-bottom: 1px solid #fff;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Values-list__item:not(:first-child){
	padding-top: 2rem;
}
.Values-list__item-title{
	width: 20rem;
	font-size: 4rem;
	padding-left: 4rem;
	letter-spacing: .05em;
	line-height: 1;
	color: #fff;
}
.Values-list__item-text{
	width: calc(100% - 20rem);
	font-size: 2rem;
	line-height: calc(3.6 / 2);
	letter-spacing: .05em;
	color: #fff;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	.Values-list__item-title{
		width: 15rem;
		padding-left: 0;
		text-align: center;
	}
	.Values-list__item-text{
		width: calc(100% - 15rem);
	}
	
}
@media screen and (max-width:768px){

	.Values{
		margin-top: -1px;
	}

	.Values__inner{
		margin-bottom: 10rem;
	}
	.Values-list{
		max-width: 100%;
	}
	.Values-list__item{
		width: 100%;
		padding-bottom: 3.6rem;
		flex-direction: column;
		align-items: flex-start;
	}
	.Values-list__item:not(:first-child){
		padding-top: 4.5rem;
	}
	.Values-list__item-title{
		width: 100%;
		font-size: 5rem;
		margin-bottom: 3.8rem;
		padding-left: 0;
	}
	.Values-list__item-text{
		width: 100%;
		font-size: 2.8rem;
		line-height: calc(5.6 / 2.8);
		letter-spacing: .05em;
	}

}



/*-------------------------------
	メッセージ
-------------------------------*/

.Message{
	padding-top: 0;
	padding-bottom: calc(var(--padding-topbottom) * 2.5);
	display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
	background: #fff;
	position: relative;
	z-index: 4000;
}
.Message__mask{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.5);
	z-index: 6000;
	opacity: 0;
}
.Message-image{
	width: 100%;
}
.Message-image img{
	width: 100%;
	max-height: 100svh;
	object-fit: cover;
}

.Message__inner{
	width: calc(50% + 21.7rem);
	margin-top: -20rem;
	padding-top: 10rem;
	padding-left: 5rem;
	padding-right: 5rem;
	transform: translateY(1px);
	position: relative;
	z-index: 4000;
	background: #fff;
}
.Message-block{
	width: 100%;
	max-width: 75rem;
}
.Message-block__text{
	margin-bottom: 2.8rem;
}
.Message-block__name{
	width: 100%;
	padding-right: .6rem;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}
.Message-block__name-text{
	margin-right: 2.6rem;
	letter-spacing: .05em;
	line-height: 1;
	display: block;
}
.Message-block__name img{
	width: 12.4rem;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.Message{
		padding-bottom: 20rem;
		transform: translate3d(0,0,0) !important;
	}
	.Message__mask{
		display: none;
	}

	.Message__inner{
		width: 100%;
		margin-top: 0;
		padding-top: 9rem;
		padding-left: 0;
		padding-right: 0;
		transform: translateY(0);
	}
	.Message-block{
		width: 100%;
		max-width: 75rem;
	}
	.Message-block__body{
		padding-left: 8rem;
	}
	.Message-block__text{
		margin-bottom: 8rem;
	}
	.Message-block__name{
		padding-right: 0;
		flex-direction: column;
	}
	.Message-block__name-text{
		font-size: 3.2rem;
		margin-bottom: 3rem;
		margin-right: 0;
		display: block;
	}
	.Message-block__name img{
		width: 24.4rem;
	}

}



/*-------------------------------
	動画
-------------------------------*/

.Movie{
	background: var(--blackcolor);
	padding-top: 0;
	position: relative;
	z-index: 6000;
}
.Movie__inner{
	position: relative;
	cursor: pointer;
}
.Movie__body{
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 6000;
}
.Movie-header{
	width: fit-content;
	text-align: center;
	position: relative;
}
.Movie-header::before{
	content: "";
    display: block;
    width: 15rem;
    height: 15rem;
	margin-bottom: 3.5rem;
    border-radius: 50%;
    border: 1px solid #fff;
    z-index: 4000;
    background-image: url(../images/common/icon_movie-button.svg);
    background-size: 4rem;
    background-repeat: no-repeat;
    background-position: calc(50% + .5rem) center;
	margin-left: auto;
	margin-right: auto;
}
.Movie-header__title{
	font-family: var(--en);
	font-size: 5rem;
	margin-bottom: 2.6rem;
	padding-bottom: .2rem;
	line-height: .7;
	font-weight: 600;
	color: #fff;
	clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
	transition: clip-path 1s cubic-bezier(.85, 0, .15, 1);
}
.Movie-header__text{
	width: fit-content;
	padding-left: 1.8rem;
	padding-right: 1.8rem;
	line-height: 1;
	letter-spacing: .05em;
	color: #fff;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
	transition: clip-path 1s cubic-bezier(.85, 0, .15, 1);
	transition-delay: .4s;
}
.Movie-header__text::before,
.Movie-header__text::after{
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	background: #fff;
}
.Movie-header__text::before{
	left: 0;
}
.Movie-header__text::after{
	right: 0;
}
.Movie-video{
	position: relative;
}
.Movie-video__image{
	width: 100%;
	height: 100svh;
	overflow: hidden;
}
.Movie-video__image img{
	transition: var(--transition);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.Movie-pop{
	transition: .5s all cubic-bezier(.85, 0, .15, 1);
	width: 100%;
	height: 100%;
	padding: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	background: rgba(0,0,0,.75);
	z-index: -1;
}
.Movie-pop video{
	transition: .5s all cubic-bezier(.85, 0, .15, 1);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(.5);
}
.Movie__inner:hover .Movie-video__image img{
	transform: scale(1.1);
}
.Movie-pop.on{
	opacity: 1;
	z-index: 9991;
}
.Movie-pop.on video{
	transform: scale(1);
}

.Movie-header.on .Movie-header__title,
.Movie-header.on .Movie-header__text{
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.Movie-pop__close{
	background: var(--blackcolor);
	width: 7rem;
	height: 7rem;
	padding: 2.5rem;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	z-index: 9000;
}
.Movie-pop__close::before{
	transition: transform .3s cubic-bezier(.85,0,.15,1);
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	transform: scaleX(0);
	transform-origin: right;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.Movie-pop__close:hover::before{
	transform: scaleX(1);
	transform-origin: left;
}
.Movie-pop__close-inner{
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}
.Movie-pop__close-inner::before,
.Movie-pop__close-inner::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
}
.Movie-pop__close-inner::before{
	transform: rotate(-45deg);
}
.Movie-pop__close-inner::after{
	transform: rotate(45deg);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	#Movie{
		padding-bottom: 0;
	}
	.Movie{
		height: 42rem;
	}
	.Movie__body{
		width: 100%;
	}
	.Movie-header::before{
		margin-bottom: 2.8rem;
	}
	.Movie-header__title{
		font-size: 6rem;
		margin-bottom: 3rem;
	}
	.Movie-header__text{
		padding-left: 3.2rem;
		padding-right: 3.2rem;
	}
	.Movie-video__image{
		height: 100%;
	}
	.Movie-pop{
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
	}
	.Movie-pop video{
		height: 40rem;
	}
	.Movie-pop__close{
		width: 10rem;
		height: 10rem;
		padding: 3.5rem;
	}

}