@charset "utf-8";

/*-------------------------------
	基本設定
-------------------------------*/

*,
*::before,
*::after{
	box-sizing: border-box;
	line-height: var(--line-height);
	word-wrap: break-word;
	/* font-feature-settings: "palt"; */
	/* text-align: justify; */
}
html{
	font-size: var(--root-font-size);
}
body{
	opacity: 0;
	width: 100%;
	font-size: var(--font-size);
	letter-spacing: 0;
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
	color: var(--blackcolor);
	/* font-family: '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif; */
	font-family: var(--jp);
}

/*----- 画像関連 */
img{
	height: auto;
	vertical-align: bottom;
}

/* SVG表示されないとき */
.svg{
	line-height: 1;
	display: block;
}
.svg img{
	display: block;
	width: 100%;
	height: auto;
	line-height: 1;
}

/*----- ホバー系 */
a,
.a{
	transition: var(--transition);
}
*:not(.not-a) > a:hover,
*:not(.not-a) > .a:hover{
	opacity: var(--opacity);
}

/*----- コンテンツ */
.sec{
	padding-top: var(--padding-topbottom);
	padding-bottom: var(--padding-topbottom);
	position: relative;
}
.sec:first-child{
	padding-top: var(--padding-topbottom);
}
.sec:last-child{
	padding-bottom: var(--padding-topbottom);
}
.sec.-white{
	background: #fff;
}
.sec.-gray{
	background: #e5e5e5;
}
html{
	margin-top: 0 !important;
}
body{
	overflow-x: hidden;
}
.main{
	display: block;
	position: relative;
}
.main::after{
	content: "";
	display: block;
    width: 100%;
    height: calc(10rem + (56.8rem / 2));
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    transform: translateY(100%);
	background: #e5e5e5;
}
.main:has(.sec.-white:last-child)::after,
.main:has(.C-Layout-block.-white:last-child)::after,
.Keyvisual:not(:has( > .Keyvisual-image:first-child)) + .main:not(:has(.sec.-gray:last-child))::after{
	background: #fff;
}
/* .main:has(.sec.-gray:last-child)::after{
	background: #e5e5e5;
} */

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

	a[href^="tel:"]{
		pointer-events: none;
	}

	/*----- コンテンツ */
	.fullwidth{
		width: 100%;
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}
	.maxwidth{
		width: 100%;
		max-width: var(--maxwidth);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}
	.smallwidth{
		width: 100%;
		max-width: var(--smallwidth);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}
	.microwidth{
		width: 100%;
		max-width: var(--microwidth);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}

}
@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){

	html{
		font-size: var(--root-font-size);
	}
	body{
		min-width: 100%;
		font-size: var(--font-size);
	}

	/*----- コンテンツ */
	.fullwidth{
		width: 100%;
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
	}
	.sp_maxwidth{
		max-width: var(--maxwidth);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
	}

	.sec{
		padding-top: var(--padding-topbottom);
		padding-bottom: var(--padding-topbottom);
	}
	.sec:first-child,
	.sec:first-of-type{
		padding-top: 10rem;
	}
	.sec:last-child{
		padding-bottom: 13.5rem;
	}

	.main::after{
		height: calc(10rem + (90rem / 2) + 2px);
		transform: translateY(calc(100% - 1px));
	}

}



/*-------------------------------
	パーツ
-------------------------------*/

*.-en{
	font-family: var(--en);
}

/*----- 見出し */
/* 大見出し */
.C-Title__jp{
	width: fit-content;
	margin-bottom: 4.5rem;
	height: 3rem;
	padding-left: 3.5rem;
	padding-right: 3.5rem;
	font-size: 2.2rem;
	line-height: 1;
	letter-spacing: .1em;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-left: auto;
	margin-right: auto;
    clip-path: inset(100% 0% 0% 0%);
    transition: clip-path 1s cubic-bezier(.85, 0, .15, 1);
}
.C-Title__jp::before,
.C-Title__jp::after{
	content: "";
	display: block;
	width: .6rem;
	height: 3rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.C-Title__jp::before{
	background-image: url(../images/common/icon_c-title-before-black.svg);
	left: 0;
	background-position: center right;
}
.C-Title__jp::after{
	background-image: url(../images/common/icon_c-title-after-black.svg);
	right: 0;
	background-position: center left;
}
.C-Title__enWrap{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
}
.C-Title__en{
	width: 100%;
	display: block;
	overflow: hidden;
    transform: translateY(30%);
    transition: transform 1.5s cubic-bezier(.85, 0, .15, 1);
}
.C-Title__en-inner{
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.C-Title__en-inner > span{
	font-family: var(--en);
	font-size: 12rem;
	line-height: .7;
	font-weight: 600;
	padding-bottom: .4rem;
	display: block;
    transform: translateY(110%);
    transition: transform 1s cubic-bezier(.85, 0, .15, 1);
}
.C-Title__en:not(:last-of-type){
	margin-bottom: 3.8rem;
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(1){
	transition-delay: .05s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(2){
	transition-delay: .1s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(3){
	transition-delay: .15s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(4){
	transition-delay: .2s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(5){
	transition-delay: .25s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(6){
	transition-delay: .3s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(7){
	transition-delay: .35s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(8){
	transition-delay: .4s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(9){
	transition-delay: .45s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(10){
	transition-delay: .5s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(11){
	transition-delay: .55s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(12){
	transition-delay: .6s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(13){
	transition-delay: .65s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(14){
	transition-delay: .7s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(15){
	transition-delay: .75s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(16){
	transition-delay: .8s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(17){
	transition-delay: .85s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(18){
	transition-delay: .9s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(19){
	transition-delay: .95s
}
.C-Title__en:nth-of-type(1) .C-Title__en-inner > span:nth-of-type(20){
	transition-delay: 1s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(1){
	transition-delay: .5s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(1){
	transition-delay: .55s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(2){
	transition-delay: .6s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(3){
	transition-delay: .65s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(4){
	transition-delay: .7s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(5){
	transition-delay: .75s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(6){
	transition-delay: .8s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(7){
	transition-delay: .85s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(8){
	transition-delay: .9s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(9){
	transition-delay: .95s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(10){
	transition-delay: 1s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(11){
	transition-delay: 1.05s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(12){
	transition-delay: 1.1s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(13){
	transition-delay: 1.15s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(14){
	transition-delay: 1.2s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(15){
	transition-delay: 1.25s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(16){
	transition-delay: 1.3s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(17){
	transition-delay: 1.35s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(18){
	transition-delay: 1.4s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(19){
	transition-delay: 1.45s
}
.C-Title__en:nth-of-type(2) .C-Title__en-inner > span:nth-of-type(20){
	transition-delay: 1.5s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(1){
	transition-delay: 1.05s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(2){
	transition-delay: 1.1s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(3){
	transition-delay: 1.15s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(4){
	transition-delay: 1.2s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(5){
	transition-delay: 1.25s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(6){
	transition-delay: 1.3s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(7){
	transition-delay: 1.35s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(8){
	transition-delay: 1.4s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(9){
	transition-delay: 1.45s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(10){
	transition-delay: 1.5s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(11){
	transition-delay: 1.55s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(12){
	transition-delay: 1.6s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(13){
	transition-delay: 1.65s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(14){
	transition-delay: 1.7s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(15){
	transition-delay: 1.75s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(16){
	transition-delay: 1.8s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(17){
	transition-delay: 1.85s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(18){
	transition-delay: 1.9s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(19){
	transition-delay: 1.95s
}
.C-Title__en:nth-of-type(3) .C-Title__en-inner > span:nth-of-type(20){
	transition-delay: 2s
}
.C-Title__en-break{
	margin-right: .2em;
}
.C-Title.on .C-Title__en,
.C-Title.on .C-Title__en-inner > span{
	transform: translateY(0);
}
.C-Title.on .C-Title__jp{
    clip-path: inset(0% 0% 0% 0%);
    transition-delay: .5s;
}
/* 白色 */
.C-Title.-white{
	color: #fff;
}
.C-Title.-white .C-Title__jp::before{
	background-image: url(../images/common/icon_c-title-before-white.svg);
}
.C-Title.-white .C-Title__jp::after{
	background-image: url(../images/common/icon_c-title-after-white.svg);
}
/* サブページ用 */
.C-Title.-sub{
	width: 100%;
	margin-bottom: 20rem;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}
.C-Title.-sub .C-Title__en-inner > span{
	font-size: 10rem;
}
.C-Title.-sub .C-Title__jp{
	margin-left: 2.8rem;
	margin-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	font-weight: 700;
}
.C-Title.-sub .C-Title__jp::before,
.C-Title.-sub .C-Title__jp::after{
	display: none;
}

/* 中見出し */
.C-SubTitle{
	width: 100%;
	margin-bottom: 4.8rem;
	padding-left: 3rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	position: relative;
}
.C-SubTitle::before{
	background: var(--maincolor);
	content: "";
	display: block;
	width: .5rem;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
}
.C-SubTitle__title{
	font-size: 4rem;
	letter-spacing: .01em;
	line-height: 1;
	font-weight: 700;
}
.C-SubTitle__body{
	margin-top: 2.2rem;
}
.C-SubTitle__subtitle{
	font-size: 1.8rem;
}
.C-SubTitle__text{
	font-size: 1.6rem;
	font-weight: 400;
}
.C-SubTitle__subtitle + .C-SubTitle__text{
	margin-top: 1em;
}

/*----- 小タイトル */
.C-Small-title{
	width: 100%;
	margin-bottom: 4rem;
	font-size: 3.2rem;
	padding-left: 5rem;
	font-weight: 700;
	line-height: 1.35;
	position: relative;
}
.C-Small-title::before{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 3rem;
	height: .5rem;
	position: absolute;
	left: 0;
	top: calc(.5em * 1.35);
}
/* .C-Small-title[data-jp]::before{
	transform: translateY(calc(-50% - (.8rem + .8rem)));
} */
.C-Small-title[data-jp]::after{
	content: attr(data-jp);
	line-height: 1;
	font-weight: 400;
	letter-spacing: .05em;
	font-size: 1.6rem;
	margin-top: 1.6rem;
	display: block;
}

/*----- ボタン */
.C-Button-wrap{
	width: 100%;
	display: flex;
	gap: 2.5rem 12rem;
	align-items: center;
	justify-content: flex-start;
	/* flex-wrap: wrap; */
}
.C-Button{
	width: 100%;
	max-width: 35rem;
	height: 7rem;
	position: relative;
}
.C-Button::after{
	background: var(--blackcolor);
	content: "";
	display: block;
	width: 5rem;
	height: 1px;
	position: absolute;
	right: 0;
	top: 50%;
	z-index: 6000;
	transform: translateX(50%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.C-Button a,
.C-Button .a{
	border: 1px solid var(--blackcolor);
	width: 100%;
	height: 100%;
	letter-spacing: .2em;
	border-radius: 3.5rem;
	padding: .5rem 3.5rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	position: relative;
	z-index: 5000;
	opacity: 1 !important;
}
.C-Button span{
	transform: var(--transition);
	line-height: 1;
    width: fit-content;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.C-Button a[target=_blank] span::after{
	transform: var(--transition);
	content: "";
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	margin-left: 1rem;
	background-image: url(../images/common/icon_blank-black.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.C-Button span::before{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform .3s ease-in-out;
}
.C-Button:hover::after{
	animation: c-button__arrow .3s ease-in-out forwards;
}
.C-Button a:hover span,
.C-Button .a:hover span{
	color: #fff;
}
.C-Button a:hover span::before,
.C-Button .a:hover span::before{
	transform-origin: left;
	transform: scaleX(1);
}
.C-Button a[target=_blank]:hover span::after{
	background-image: url(../images/common/icon_blank-white.svg);
}

@keyframes c-button__arrow{
	0%{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	}
	30%{
		clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
	}
	60%{
		clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
	}
	100%{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
}
/* 英語版 */
.C-Button.-en span{
	font-family: var(--en);
    font-weight: 600;
    font-size: 1.2rem;
}
/* 白版 */
.C-Button.-white a,
.C-Button.-white .a{
	border-color: #fff;
	color: #fff;
}
.C-Button.-white::after{
	background: #fff;
}
.C-Button.-white span::before{
	background: #fff;
}
.C-Button.-white a:hover span,
.C-Button.-white .a:hover span{
	color: var(--blackcolor);
}

/*----- 矢印 */
.C-Arrow{
	background: var(--blackcolor);
	width: 5rem;
	height: 5rem;
	display: flex;
	align-items: center;
	justify-items: center;
	position: relative;
}
.C-Arrow::before{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 4000;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform .3s ease-in-out;
}
.C-Arrow::after{
	content: "";
	display: block;
	width: 1.7rem;
	height: .7rem;
	/* border-bottom: 1px solid #fff;
	border-right: 1px solid #fff; */
	background-image: url(../images/common/icon_button-arrow-white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 6000;
	/* transform: skew(45deg) translateX(-.3rem); */
}
a:hover .C-Arrow::before,
.a:hover .C-Arrow::before{
	transform-origin: left;
	transform: scaleX(1);
}
a:has(.C-Arrow),
.a:has(.C-Arrow){
	opacity: 1 !important;
	cursor: pointer;
}

.C-Arrow.-back{
	transform: scale(-1,1);
}

/*----- テキストアニメーション */
.g-view{
	transform: translateY(2rem);
	opacity: 0;
	transition: 1s opacity ease-in-out, 1s transform ease-in-out;
}
.g-view.on{
	opacity: 1;
	transform: translateY(0);
}

/*----- 画像オブジェクトマスクアニメーション */
.g-imageobj{
	position: relative;
    z-index: 5000;
}
.g-imageobj::before{
    background: var(--maincolor);
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    transform: scaleY(0);
    transition: transform 1s cubic-bezier(.85, 0, .15, 1);
    transition-delay: .5s;
    transform-origin: top;
}
.g-imageobj.on::before{
	transform: scaleY(1);
}

/*----- カテゴリ */
.main:has(.C-Category:first-child){
	padding-top: 4.5rem;
}
.C-Category{
	font-size: 1.8rem;
	display: flex;
	gap: 2rem 3.8rem;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	position: relative;
    z-index: 6000;
}
.C-Category__item a{
	font-size: 1.8rem;
	padding-left: 2.4rem;
	line-height: 1;
	display: block;
	position: relative;
	opacity: 1 !important;
}
.C-Category__item a::before{
	border: 1px solid var(--blackcolor);
	transition: var(--transition);
	content: "";
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	position: absolute;
	left: 0;
    top: 50%;
    transform: translateY(-50%);
	background: #fff;
}
.C-Category__item.-current a::before,
.C-Category__item a:hover::before{
	background: var(--maincolor);
}

/*----- ページナビ */
/* 一覧用 */
.wp-pagenavi{
	width: 100%;
	margin-top: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wp-pagenavi > *{
	font-family: var(--en);
	font-size: 2.4rem;
	margin-left: 1.9rem;
	margin-right: 1.9rem;
	line-height: 1;
	display: block;
	opacity: 1 !important;
}
.wp-pagenavi > .current,
.wp-pagenavi > .page:hover{
	color: var(--maincolor);
}
.wp-pagenavi > *:first-child{
	margin-left: 0;
}
.wp-pagenavi > *:last-child{
	margin-right: 0;
}
.wp-pagenavi > .previouspostslink{
	margin-right: 1.1rem;
}
.wp-pagenavi > .nextpostslink{
	margin-left: 1.1rem;
}
.wp-pagenavi .C-Arrow{
	width: 3rem;
	height: 3rem;
}
.wp-pagenavi .C-Arrow::after{
	width: 1rem;
	height: .4rem;
}
/* 詳細用 */
.C-Detail-nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.C-Detail-nav__button{
    width: 16rem;
}
.C-Detail-nav__button a{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.C-Detail-nav__button-text{
    font-family: var(--en);
    font-size: 3rem;
    line-height: 1;
    font-weight: 500;
    letter-spacing: .05em;
}
.C-Detail-nav__back{
    order: 2;
}
.C-Detail-nav:not(:has(.C-Detail-nav__button.-prev))::before,
.C-Detail-nav:not(:has(.C-Detail-nav__button.-next))::after{
    content: "";
    display: block;
    width: 16rem;
    height: 0;
}
.C-Detail-nav:not(:has(.C-Detail-nav__button.-prev))::before{
    order: 1;
}
.C-Detail-nav:not(:has(.C-Detail-nav__button.-next))::after{
    order: 3;
}
.C-Detail-nav__button.-prev{
    order: 1;
}
.C-Detail-nav__button.-prev a{
    flex-direction: row-reverse;
}
.C-Detail-nav__button.-next{
    order: 3;
}

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

	/*----- スクロールバーカスタマイズ */
	.mCSB_container{
		width: 100% !important;
	}

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

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

	.C-Title__en-inner > span{
		font-size: 11rem;
	}

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

	.C-Title__en-inner > span{
		font-size: 9.5rem;
	}
	.C-Title.-sub .C-Title__en-inner > span{
		font-size: 9.5rem;
	}

	/*----- ボタン */
	.C-Button-wrap{
		gap: 2.5rem 6rem;
	}

	/*----- スクロールバーカスタマイズ */
	.js-table .mCSB_scrollTools .mCSB_draggerContainer{
		border-radius: .5rem;
		background: #808080;
	}
	.js-table .mCSB_scrollTools.mCSB_scrollTools_horizontal{
		width: calc(100% - var(--padding-leftright));
		height: .5rem;
	}
	.js-table .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		background: var(--maincolor);
		margin-top: 0;
		margin-bottom: 0;
		height: 100%;
		border-radius: .5rem;
	}

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

	/*----- 見出し */
	/* 大見出し */
	.C-Title__en-inner > span{
		font-size: 8.5rem;
	}
	/* サブページ用 */
	.C-Title.-sub{
		flex-direction: column;
		align-items: flex-start;
	}
	.C-Title.-sub .C-Title__en-inner > span{
		font-size: 7.5rem;
		line-height: .75;
        padding-bottom: 0;
	}
	.C-Title.-sub .C-Title__jp{
		margin-left: .5rem;
		margin-top: 1rem;
	}
	
	/*----- ボタン */
	.C-Button-wrap{
		flex-direction: column;
	}

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

	/*----- 見出し */
	/* 大見出し */
	.C-Title__jp{
		height: 4rem;
		padding-left: 3.5rem;
		padding-right: 3.5rem;
		font-size: 3rem;
	}
	.C-Title__jp::before,
	.C-Title__jp::after{
		width: .9rem;
		height: 4rem;
	}
	.C-Title__en-inner > span{
		font-size: 9.7rem;
		line-height: .75;
		padding-bottom: .4rem;
	}
	.C-Title__en:not(:last-of-type){
		margin-bottom: 3rem;
	}
	/* サブページ用 */
	.C-Title.-sub{
		margin-bottom: 7.5rem;
		align-items: flex-start;
		flex-direction: column;
	}
	.C-Title.-sub .C-Title__en-inner > span{
		font-size: 8rem;
	}
	.C-Title.-sub .C-Title__jp{
        margin-left: 0;
        margin-top: 1.5rem;
	}
	.C-Title.-sub .C-Title__jp::before,
	.C-Title.-sub .C-Title__jp::after{
		display: none;
	}

	/* 中見出し */
	.C-SubTitle{
		margin-bottom: 8.5rem;
		padding-left: 5rem;
	}
	.C-SubTitle__title{
		font-size: 5rem;
		letter-spacing: .01em;
		line-height: 1;
		font-weight: 700;
	}
	.C-SubTitle__body{
		margin-top: 2.5rem;
	}
	.C-SubTitle__subtitle{
		font-size: 3rem;
	}
	.C-SubTitle__text{
		font-size: 2.8rem;
	}
	.C-SubTitle__subtitle + .C-SubTitle__text{
		border-top: 1px solid var(--blackcolor);
		margin-top: 3.2rem;
        padding-top: 3.2rem;
	}

	/*----- 小タイトル */
	.C-Small-title{
		margin-bottom: 4rem;
		font-size: 4rem;
		padding-left: 8rem;
		line-height: calc(6 / 4);
	}
	.C-Small-title::before{
		width: 5rem;
		height: 1rem;
		top: calc(.5em * (6 / 4));
		transform: translateY(0);
	}
	/* .C-Small-title[data-jp]::before{
		top: 1.1em;
	} */
	.C-Small-title[data-jp]::after{
		font-size: 2.4rem;
		margin-top: 1.5rem;
	}

	/*----- ボタン */
	.C-Button-wrap{
		gap: 4.8rem 0;
		flex-direction: column;
		align-items: flex-start;
	}
	.C-Button{
		width: calc(100% - 4.4rem);
		max-width: 100%;
		height: 12rem;
	}
	.C-Button::after{
		width: 8.8rem;
	}
	.C-Button a,
	.C-Button .a{
		border-radius: 6rem;
		padding: .5rem 6rem;
	}
	.C-Button a[target=_blank] span::after{
		width: 2.1rem;
		height: 2.1rem;
		margin-left: 1rem;
	}

	/* 英語版 */
	.C-Button.-en span{
		font-size: 2.8rem;
	}

	/*----- 矢印 */
	.C-Arrow{
		width: 7rem;
		height: 7rem;
	}
	.C-Arrow::after{
		width: 2.8rem;
		height: .9rem;
		/* transform: skew(45deg) translateX(-.6rem);
		border-bottom-width: 2px;
		border-right-width: 2px; */
	}

	/*----- カテゴリ */
	.main:has(.C-Category:first-child){
		/* padding-top: var(--padding-topbottom); */
		padding-top: 10rem;
	}
	.C-Category{
		font-size: 3rem;
		gap: 3rem 6rem;
	}
	.C-Category__item a{
		font-size: 3rem;
		padding-left: 4rem;
	}
	.C-Category__item a::before{
		width: 2.4rem;
		height: 2.4rem;
	}

	/*----- ページナビ */
	/* 一覧用 */
	.wp-pagenavi{
		margin-top: 10rem;
	}
	.wp-pagenavi > *{
		font-size: 4rem;
		margin-left: 3.2rem;
		margin-right: 3.2rem;
	}
	.wp-pagenavi > .previouspostslink{
		margin-right: 1rem;
	}
	.wp-pagenavi > .nextpostslink{
		margin-left: 1rem;
	}
	.wp-pagenavi .C-Arrow{
		width: 5rem;
		height: 5rem;
	}
	.wp-pagenavi .C-Arrow::after{
		width: 1.7rem;
		height: .7rem;
	}
	/* 詳細用 */
	.C-Detail-nav{
		flex-wrap: wrap;
	}
	.C-Detail-nav__button{
		width: 19rem;
		margin-bottom: 5rem;
	}
	.C-Detail-nav__button-text{
		font-size: 3.6rem;
	}
	.C-Detail-nav__back{
		order: 3;
	}
	.C-Detail-nav:not(:has(.C-Detail-nav__button.-prev))::before,
	.C-Detail-nav:not(:has(.C-Detail-nav__button.-next))::after{
		width: 19rem;
	}
	.C-Detail-nav:not(:has(.C-Detail-nav__button.-prev))::before{
		order: 1;
	}
	.C-Detail-nav:not(:has(.C-Detail-nav__button.-next))::after{
		order: 2;
	}
	.C-Detail-nav__button.-prev{
		order: 1;
	}
	.C-Detail-nav__button.-next{
		order: 2;
	}

	/*----- スクロールバーカスタマイズ */
	.js-table .mCustomScrollBox > .mCSB_container{
		margin-bottom: 10.8rem;
	}
	.js-table .mCSB_scrollTools .mCSB_draggerContainer{
		border-radius: .5rem;
		background: #808080;
	}
	.js-table .mCSB_scrollTools.mCSB_scrollTools_horizontal{
		width: calc(100% - var(--padding-leftright));
		height: 1rem;
	}
	.js-table .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		background: var(--maincolor);
		margin-top: 0;
		margin-bottom: 0;
		height: 100%;
		border-radius: .5rem;
	}

}



/*-------------------------------
	ヘッダー
-------------------------------*/

.header{
	height: var(--header-height);
	width: 100%;
	padding-top: 5rem;
	padding-bottom: 5rem;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 9000;
}
.header__inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo{
	width: 16rem;
	height: 4.8rem;
}
.header-logo a{
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}
.header-logo img{
	transition: var(--transition);
	width: 100%;
	height: 100%;
	object-fit: contain;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
	opacity: 0;
}
.header-logo img:nth-of-type(1){
	opacity: 1;
}
.header-nav{
	width: calc(100% - 16rem);
	padding-left: 5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-nav__inner{
	width: calc(100% - 18rem);
	padding-right: 1.8rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header-nav__item{
	position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-nav__item > a{
	padding-left: 1.8rem;
	padding-right: 1.8rem;
	overflow: hidden;
	position: relative;
	z-index: 6000;
	display: block;
	opacity: 1 !important;
}
.header-nav__item:has(a[target="_blank"]){
	padding-right: 1.8rem;
}
.header-nav__item:has(a[target="_blank"]) > a::after{
	transition: var(--transition);
	content: "";
	display: block;
	width: 1.1rem;
	height: 1.1rem;
	background-image: url(../images/common/icon_blank-black.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.header-nav__item-en{
	transition: var(--transition);
	font-family: var(--en);
	height: 2em;
	font-size: 1.4rem;
	letter-spacing: .2em;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.header-nav__item-en br{
	display: none;
}
.header-nav__item-jp{
	transition: var(--transition);
	height: 2em;
	font-size: 1.4rem;
	letter-spacing: .2em;
	line-height: 1;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 2em;
	white-space: nowrap;
	transform: translateX(-50%);
}
.header-nav__item-jp br{
	display: none;
}
.header-nav__item:hover .header-nav__item-en{
	transform: translateY(-2em);
}
.header-nav__item:hover .header-nav__item-jp{
	transform: translate(-50%,-2em);
}
.header-nav__itemButton{
	width: fit-content;
	display: block;
	transform: translateX(-1em);
}
.header-nav__itemButton::after{
	transition: var(--transition);
	font-family: var(--en);
	content: "＋";
	display: block;
	line-height: 1;
}

.header-nav-child{
	transition: var(--transition);
	width: 20rem;
	padding-top: 1em;
	position: absolute;
	left: 50%;
	top: 0;
	z-index: 4000;
	transform: translate(-50%,0);
	visibility: hidden;
	opacity: 0;
}
.header-nav__item:hover .header-nav-child{
	padding-top: 4rem;
	opacity: 1;
	visibility: visible;
}
.header-nav-child__item-wrap{
	transition: var(--transition);
	background: var(--blackcolor);
	width: 100%;
	padding: 3rem 2rem 2.8rem;
	border-radius: .5rem;
	position: relative;
}
.header-nav-child__item-wrap::before{
	transition: var(--transition);
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 1rem solid transparent;
	border-left: 1rem solid transparent;
	border-bottom: 1rem solid var(--blackcolor);
	border-top: 0;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,-100%);
}
.header-nav-child__item:not(:last-child){
	margin-bottom: 1.8rem;
}
.header-nav-child__item a{
	font-size: 1.2rem;
	padding-left: .2em;
	letter-spacing: .2em;
	line-height: 1;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
	color: #fff;
	display: block;
	text-align: center;
	position: relative;
	opacity: 1 !important;
}
.header-nav-child__item a::before{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: -.5rem;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .3s ease-in-out;
}
.header-nav-child__item a:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}
.header-nav__right{
	width: 18rem;
}
.header-contact{
	width: 100%;
	height: 4rem;
	border-radius: 2rem;
	overflow: hidden;
}
.header-contact a{
	border: 1px solid var(--blackcolor);
	background: var(--blackcolor);
	width: 100%;
	height: 100%;
	border-radius: 2rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1 !important;
}
.header-contact a:hover{
	color: var(--blackcolor);
	background: #fff;
}

.header-nav__item.-current > a,
.header-nav__item.-current .header-nav__itemButton::after,
.header-nav-child__item.-current > a{
	color: var(--maincolor) !important;
}

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

	.header-nav{
		display: flex !important;
	}

	/*----- 白ver */
	.header.-white.on .header-logo img:nth-of-type(1){
		opacity: 0;
	}
	.header.-white.on .header-logo img:nth-of-type(2){
		opacity: 1;
	}

	.header.-white .header-nav__item > a{
		color: #fff;
	}
	.header.-white .header-nav-child__item-wrap{
		background: #fff;
	}
	.header.-white .header-nav-child__item-wrap::before{
		border-bottom-color: #fff;
	}
	.header.-white .header-nav-child__item a{
		color: var(--blackcolor);
	}
	.header.-white .header-contact a{
		color: var(--blackcolor);
		border-color: #fff;
		background: #fff;
	}
	.header.-white .header-contact a::before{
		background-image: url(../images/common/icon_mail-black.svg);
	}
	.header.-white .header-contact a:hover{
		background: var(--blackcolor);
		color: #fff;
	}
	.header.-white .header-contact a:hover::before{
		background-image: url(../images/common/icon_mail-white.svg);
	}
	.header.-white .header-nav__itemButton::after{
		color: #fff;
	}
	.header.-white .header-nav__item:has(a[target="_blank"]) > a::after{
		background-image: url(../images/common/icon_blank-white.svg);
	}

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

	.header-nav__item-en{
		letter-spacing: .05em;
	}
	.header-nav__item-jp{
		letter-spacing: .05em;
	}

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

	.header-nav__inner{
		width: calc(100% - 15rem);
	}
	.header-nav__item-en br{
		display: block;
	}
	.header-nav__item-jp br{
		display: block;
	}
	.header-nav__right{
		width: 15rem;
	}

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

	.header__inner{
		padding-left: calc(var(--padding-leftright) / 2);
		padding-right: calc(var(--padding-leftright) / 2);
	}
	.header-nav{
		padding-left: 2.5rem;
	}
	.header-nav__inner{
		width: calc(100% - 4rem);
	}
	.header-nav__item > a{
		letter-spacing: 0;
	}
	.header-nav__item-en{
		letter-spacing: 0;
	}
	.header-nav__item-jp{
		letter-spacing: 0;
	}
	.header-nav__right{
		width: 4rem;
	}
	.header-contact a{
		text-indent: -999rem;
		font-size: 0;
	}
	.header-contact a::before{
		transition: var(--transition);
		content: "";
		display: block;
		width: 2rem;
		height: 2rem;
		background-image: url(../images/common/icon_mail-white.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}
	.header-contact a:hover::before{
		background-image: url(../images/common/icon_mail-black.svg);
	}

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

	.header-logo{
		width: 12rem;
	}
	.header-nav__item > a{
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.header-nav__itemButton{
		transform: translateX(-.5em);
	}

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

	.header{
		padding-top: 0;
		padding-bottom: 0;
	}
	.header__inner{
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.header-logo{
		width: 30.2rem;
		height: 9rem;
		transform: translateX(calc(var(--padding-leftright) / 2 * -1));
		position: relative;
		z-index: 9901;
	}

	.header-nav{
		padding-top: var(--header-height);
		background: var(--blackcolor);
		width: 100%;
		height: 100%;
		padding-bottom: 30.8rem;
		/* padding-bottom: 5rem; */
		padding-left: 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 990;
		color: #fff;
		overflow: auto;
	}
	.header-nav__inner{
		padding-right: var(--padding-leftright);
		width: 100%;
		height: calc(12rem * 6);
		flex-direction: column;
		justify-content: flex-start;
		overflow: auto;
		position: relative;
		top: 50%;
        transform: translateY(-50%);
	}
	.header-nav__item{
		width: 100%;
		position: relative;
		flex-direction: column;
		position: relative;
	}
	.header-nav__item::after{
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		background: #808080;
		position: absolute;
		left: 0;
		bottom: 0;
		right: 0;
	}
	.header-nav__item:last-child{
		border-bottom: none;
	}
	.header-nav__item > a{
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		height: 12rem;
		padding-top: 2.8rem;
		padding-bottom: 2.8rem;
	}
	.header-nav__item:has(a[target="_blank"]){
		padding-right: 0;
	}
	.header-nav__item:has(a[target="_blank"]) > a::after{
		width: 2.6rem;
		height: 2.6rem;
		background-image: url(../images/common/icon_blank-white.svg);
	}
	.header-nav__item-en{
		display: none;
	}
	.header-nav__item-jp{
		height: 100%;
		font-size: 3.4rem;
		letter-spacing: .2em;
		width: 100%;
		text-align: left;
		position: static;
		justify-content: flex-start;
		transform: translate(0,0);
	}
	.header-nav__item:hover .header-nav__item-jp{
		transform: translate(0,0);
	}
	
	.header-nav__item.-strengths{
		order: 1;
	}
	.header-nav__item.-steel{
		order: 2;
	}
	.header-nav__item.-works{
		order: 3;
	}
	.header-nav__item.-company{
		order: 4;
	}
	.header-nav__item.-recruit{
		order: 6;
	}
	.header-nav__item.-news{
		order: 5;
	}
	
	.header-nav__item.-news::after{
		display: none !important;
	}
	.header-nav__item.-recruit::after{
		display: none !important;
	}
	.header-nav__item.-recruit a{
		border: 1px solid #808080;
	}
	.header-nav__item.-recruit a::after{
		right: calc(50% - 4em) !important;
		transform: translate(50%,-50%) !important;
	}
	.header-nav__item.-recruit .header-nav__item-jp{
		justify-content: center;
	}

	.header-nav__itemArrow{
		transition: var(--transition);
		background: #9fa0a0;
		width: 6rem;
		height: 6rem;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		right: 0;
		top: 2.8rem;
		z-index: 4000;
	}
	.header-nav__itemArrow::after{
		background-image: url(../images/common/icon_button-arrow-black.svg);
	}
	.header-nav__item > a:hover + .header-nav__itemArrow{
		background: var(--subcolor);
	}
	.header-nav__item > a:hover + .header-nav__itemArrow::after{
		background-image: url(../images/common/icon_button-arrow-white.svg);
	}
	.header-nav__itemButton{
		background: #9fa0a0;
		width: 6rem;
		height: 6rem;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		right: 0;
		top: 2.8rem;
		z-index: 6000;
		transform: translateX(0);
	}
	.header-nav__itemButton::before,
	.header-nav__itemButton::after{
		background: var(--blackcolor);
		transition: var(--transition);
		content: "";
		display: block;
		width: 2.5rem;
		height: 1px;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.header-nav__itemButton::after{
		transform: translate(-50%,-50%) rotate(90deg);
	}
	.header-nav__itemButton.on::after{
		transform: translate(-50%,-50%) rotate(0deg);
	}
	.header-nav-child{
		transition: none;
		width: 100%;
		padding-top: .8rem !important;
		padding-bottom: 5.5rem;
		position: static;
		transform: translate(0,0);
		visibility: visible;
		opacity: 1;
		display: none;
	}
	.header-nav-child__item-wrap{
		width: 100%;
		padding: 0;
		border-radius: 0;
		position: relative;
	}
	.header-nav-child__item-wrap::before{
		display: none;
	}
	.header-nav-child__item:not(:last-child){
		margin-bottom: 4.5rem;
	}
	.header-nav-child__item a{
		width: 100%;
		font-size: 2.8rem;
		padding-left: 5.5rem;
		letter-spacing: 0;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	.header-nav-child__item a::before{
		transition: var(--transition);
		width: 2.1rem;
		height: 2.1rem;
		border-radius: 50%;
		background: #fff;
		left: 0;
		top: 50%;
		bottom: unset;
		transform: translate(0,-50%) !important;
	}
	.header-nav-child__item a:hover::before{
		background: var(--subcolor);
	}

	.header-nav__right{
		width: 100%;
		position: absolute;
		left: 0;
		bottom: 0;
		right: 0;
		z-index: 6000;
	}
	.header-button{
		width: 100%;
		margin-bottom: 9.2rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.header-button__item{
		width: 50%;
		/* height: 12rem; */
	}
	.header-button__item a{
		font-family: var(--en);
		width: 100%;
		height: 100%;
		letter-spacing: .1em;
		/* border: 1px solid #808080; */
		display: flex;
		align-items: center;
		justify-content: flex-start;
		position: relative;
		z-index: 5000;
		opacity: 1 !important;
	}
	.header-button__item a::before{
		content: "";
		display: block;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
	}
	/* .header-button__item a::after{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: -1;
		background: #595959;
		transform: scaleX(0);
		transform-origin: right;
		transition: transform .3s ease-in-out;
	}
	.header-button__item a:hover::after{
		transform: scaleX(100%);
		transform-origin: left;
	} */
	.header-button__item span{
		font-size: 3.2rem;
		line-height: 1;
		display: block;
	}
	.header-button__item.-instagram a::before{
		width: 4.2rem;
		height: 4.2rem;
		background-image: url(../images/common/icon_instagram-white.svg);
	}
	.header-button__item.-instagram span{
		padding-left: 2rem;
	}
	.header-button__item.-youtube a::before{
		width: 4.5rem;
		height: 3.2rem;
		background-image: url(../images/common/icon_youtube-white.svg);
	}
	.header-button__item.-youtube span{
		padding-left: 2rem;
	}
	/* .header-button__item.-recruit a{
		letter-spacing: .2em;
		border-left: none;
		flex-direction: row-reverse;
	}
	.header-button__item.-recruit a::before{
		width: 2.6rem;
		height: 2.6rem;
		background-image: url(../images/common/icon_blank-white.svg);
	}
	.header-button__item.-recruit span{
		padding-right: 2rem;
	} */
	.header-contact{
		width: 100%;
		height: 14rem;
		border-radius: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.header-contact a{
		width: calc(100% + (var(--padding-leftright) * 2));
		color: var(--blackcolor);
		font-family: var(--en);
		height: 100%;
		font-size: 4.7rem;
		border-radius: 0;
		border: none;
		font-weight: 700;
		background: #9fa0a0;
		flex-shrink: 0;
	}
	/* .header-contact a::before{
		transition: var(--transition);
		content: "";
		display: block;
		width: 4.8rem;
		height: 3.2rem;
		margin-right: 2.8rem;
		background-image: url(../images/common/icon_mail-black.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	} */
	.header-contact a:hover{
		background: var(--subcolor);
		color: #fff;
	}
	.header-contact a:hover::before{
		background-image: url(../images/common/icon_mail-white.svg);
	}
	/* .header-contact a{
		background: var(--blackcolor);
		border-radius: .5rem;
		font-size: 0;
		text-indent: -999rem;
		border: none;
	}
	.header-contact a::before{
		transition: var(--transition);
		content: "";
		display: block;
		width: 3rem;
		height: 2rem;
		background-image: url(../images/common/icon_mail-white.svg);
		background-size: 3rem;
		mix-blend-mode: difference;
	}
	.header-contact a:hover{
		background: #fff;
	} */
	/* .header-contact a:hover::before{
		background-image: url(../images/common/icon_mail-black.svg);
	} */

	/*----- ハンバーガー */
	.menu-button {
		transition: var(--transition);
		background: var(--blackcolor);
		width: 8rem;
		height: 8rem;
		padding: 2rem;
		border-radius: .5rem;
		box-sizing: border-box;
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		flex-direction: column;
		z-index: 9990;
		cursor: pointer;
		position: fixed;
		right: 2.5rem;
		top: 2.5rem;
		text-align: center;
	}
	.menu-button::after{
		transition: var(--transition);
		color: #fff;
		font-family: var(--en);
		content: "MENU";
		display: block;
		line-height: .7;
		font-size: 1.4rem;
		letter-spacing: .05em;
	}
	.menu-button i{
		display: block;
		width: 100%;
		height: 1.6rem;
		background: transparent;
		-webkit-transition: var(--transition);
		transition: var(--transition);
		position: relative;
		left: 0px;
		top: 0;
	}
	.menu-button i:before,
	.menu-button i:after{
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		background: #fff;
		position: absolute;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: all 0.3s !important;
		transition: all 0.3s !important;
	}
	.menu-button i:before{
		-webkit-transform: translateY(1.6rem);
		-ms-transform: translateY(1.6rem);
		transform: translateY(1.6rem);
	}
	.menu-button i:after{
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	.is_open i{
		background: transparent;
	}
	.is_open i:after{
		transform:translateY(1rem) rotate(-20deg);
	}
	.is_open i:before{
		transform:translateY(1rem) rotate(20deg);
	}

	.header-youtube{
		width: 8rem;
		height: 8rem;
		position: fixed;
		right: 12rem;
		top: 2.5rem;
		z-index: 9990;
	}
	.header-youtube a{
		background: var(--subcolor);
		font-family: var(--en);
		width: 100%;
		height: 100%;
		border-radius: .5rem;
		font-size: 1.4rem;
		letter-spacing: .05em;
		line-height: .7;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		color: #fff;
	}
	.header-youtube a::before{
		content: "";
		display: block;
		width: 3.4rem;
		height: 1.9rem;
		margin-bottom: .8rem;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
	}

	/*----- 白バージョン */
	.header.-white.on .header-logo img:nth-of-type(1){
		opacity: 0;
	}
	.header.-white.on .header-logo img:nth-of-type(2){
		opacity: 1;
	}
	/* .header.-white.on .header-contact a{
		background: #fff;
	} */
	/* .header.-white.on .header-contact a::before{
		background-image: url(../images/common/icon_mail-black.svg);
	} */
	/* .header.-white.on .header-contact a:hover{
		background: var(--blackcolor);
	} */
	/* .header.-white.on .header-contact a:hover::before{
		background-image: url(../images/common/icon_mail-white.svg);
	} */
	.header.-white.on .menu-button{
		background: #fff;
	}
	.header.-white.on .menu-button::after{
		color: var(--blackcolor);
	}
	.header.-white.on .menu-button i::before,
	.header.-white.on .menu-button i::after{
		background: var(--blackcolor);
	}

	/*----- ナビオープンバージョン */
	.header.is_open .header-logo img:nth-of-type(1){
		opacity: 0 !important;
	}
	.header.is_open .header-logo img:nth-of-type(2){
		opacity: 1 !important;
	}
	/* .header.is_open .header-contact a{
		background: #fff !important;
	} */
	/* .header.is_open .header-contact a::before{
		background-image: url(../images/common/icon_mail-black.svg)
	} */
	.header.is_open .menu-button{
		background: #fff !important;
	}
	.header.is_open .menu-button::after{
		color: var(--blackcolor) !important;
	}
	.header.is_open .menu-button i::before,
	.header.is_open .menu-button i::after{
		background: var(--blackcolor) !important;
	}

}



/*-------------------------------
	お問い合わせ（共通）
-------------------------------*/

.C-Contact{
	padding-top: 0;
	padding-bottom: 0;
	position: relative;
	z-index: 6000;
	clip-path: inset(10rem calc((100% - 116.6rem) / 2) 10rem calc((100% - 116.6rem) / 2));
	transition: clip-path .6s cubic-bezier(.85, 0, .15, 1);
	overflow: hidden;
}
.C-Contact__timing{
	width: 100%;
	height: 10rem;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.C-Contact a{
	background: var(--blackcolor);
	width: 100%;
	padding-top: 10rem;
	padding-bottom: 10rem;
	height: 76.8rem;
	display: block;
	opacity: 1 !important;
}
.C-Contact__inner{
	position: relative;
	z-index: 6000;
}
.C-Contact__body{
	width: 100%;
	height: 100%;
}
.C-Contact a::before{
	content: "";
	display: block;
	background-image: url(../images/common/bg_c-contact.jpg);
	background-image: image-set(url(../images/common/bg_c-contact.jpg) 1x, url(../images/common/bg_c-contact@2x.jpg) 2x);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 4000;
	opacity: .5;
	transform: scale(1.1);
	transition: transform .6s cubic-bezier(.85, 0, .15, 1);
}
.C-Contact__content{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 6000;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.C-Contact__title{
	margin-bottom: 4.5rem;
	color: #fff;
}
.C-Contact__titleJp{
	width: fit-content;
	margin-bottom: 4.5rem;
	height: 3rem;
	padding-left: 3.5rem;
	padding-right: 3.5rem;
	font-size: 2.2rem;
	line-height: 1;
	letter-spacing: .1em;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-left: auto;
	margin-right: auto;
    clip-path: inset(100% 0% 0% 0%);
    transition: clip-path 1s cubic-bezier(.85, 0, .15, 1);
}
.C-Contact__titleJp::before,
.C-Contact__titleJp::after{
	content: "";
	display: block;
	width: .6rem;
	height: 3rem;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.C-Contact__titleJp::before{
	background-image: url(../images/common/icon_c-title-before-white.svg);
	left: 0;
	background-position: center right;
}
.C-Contact__titleJp::after{
	background-image: url(../images/common/icon_c-title-after-white.svg);
	right: 0;
	background-position: center left;
}
.C-Contact__titleEnWrap{
	align-items: center;
    justify-content: center;
    flex-direction: column;
}
.C-Contact__titleEn{
	width: 100%;
	display: block;
	overflow: hidden;
    transform: translateY(30%);
    transition: transform 1.5s cubic-bezier(.85, 0, .15, 1);
}
.C-Contact__titleEnInner{
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.C-Contact__titleEnInner > span{
	font-family: var(--en);
	font-size: 12rem;
	line-height: .7;
	font-weight: 600;
	padding-bottom: .4rem;
	display: block;
    transform: translateY(110%);
    transition: transform 1s cubic-bezier(.85, 0, .15, 1);
}
.C-Contact__titleEn:not(:last-of-type){
	margin-bottom: 3.8rem;
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(1){
	transition-delay: .05s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(2){
	transition-delay: .1s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(3){
	transition-delay: .15s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(4){
	transition-delay: .2s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(5){
	transition-delay: .25s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(6){
	transition-delay: .3s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(7){
	transition-delay: .35s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(8){
	transition-delay: .4s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(9){
	transition-delay: .45s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(10){
	transition-delay: .5s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(11){
	transition-delay: .55s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(12){
	transition-delay: .6s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(13){
	transition-delay: .65s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(14){
	transition-delay: .7s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(15){
	transition-delay: .75s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(16){
	transition-delay: .8s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(17){
	transition-delay: .85s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(18){
	transition-delay: .9s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(19){
	transition-delay: .95s
}
.C-Contact__titleEn:nth-of-type(1) .C-Contact__titleEnInner > span:nth-of-type(20){
	transition-delay: 1s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(1){
	transition-delay: .5s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(1){
	transition-delay: .55s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(2){
	transition-delay: .6s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(3){
	transition-delay: .65s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(4){
	transition-delay: .7s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(5){
	transition-delay: .75s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(6){
	transition-delay: .8s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(7){
	transition-delay: .85s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(8){
	transition-delay: .9s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(9){
	transition-delay: .95s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(10){
	transition-delay: 1s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(11){
	transition-delay: 1.05s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(12){
	transition-delay: 1.1s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(13){
	transition-delay: 1.15s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(14){
	transition-delay: 1.2s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(15){
	transition-delay: 1.25s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(16){
	transition-delay: 1.3s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(17){
	transition-delay: 1.35s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(18){
	transition-delay: 1.4s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(19){
	transition-delay: 1.45s
}
.C-Contact__titleEn:nth-of-type(2) .C-Contact__titleEnInner > span:nth-of-type(20){
	transition-delay: 1.5s
}
.C-Contact__titleEn-break{
	margin-right: .2em;
}
.C-Contact__title.on .C-Contact__titleEn,
.C-Contact__title.on .C-Contact__titleEnInner > span{
	transform: translateY(0);
}
.C-Contact__title.on .C-Contact__titleJp{
    clip-path: inset(0% 0% 0% 0%);
    transition-delay: .5s;
}

.C-Contact__button{
	font-family: var(--en);
	width: 15rem;
	height: 15rem;
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: .2em;
	line-height: 1;
	margin-left: auto;
	margin-right: auto;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	opacity: 1 !important;
}
.C-Contact__button::before{
	transition: var(--transition);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #fff;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
}

.C-Contact.full{
	clip-path: inset(0 0 0 0);
}
.C-Contact.full a::before{
	transform: scale(1);
}
/* .C-Contact:has(a:hover){
	clip-path: inset(0 0 0 0);
}
.C-Contact:has(a:hover)::before{
	transform: scale(1);
} */
.C-Contact a:hover .C-Contact__button::before{
	transform: scale(1.2);
}

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

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

	.C-Contact{
		clip-path: inset(10rem var(--padding-leftright) 10rem var(--padding-leftright));
	}

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

	.C-Contact__titleEnInner > span{
		font-size: 9.5rem;
	}

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

	.C-Contact__titleEnInner > span{
		font-size: 7.5rem;
		line-height: .75;
        padding-bottom: 0;
	}

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

	.C-Contact{
		padding-top: 0;
		padding-bottom: 0;
		clip-path: inset(5rem 5rem 5rem 5rem);
	}
	#C-Contact{
		padding-top: 0;
	}
	.C-Contact__timing{
		height: 5rem;
	}
	.C-Contact a{
		height: 100rem;
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	.C-Contact__title{
		margin-bottom: 6.5rem;
	}
	.C-Contact__titleJp{
		margin-bottom: 4.5rem;
		height: 3rem;
		font-size: 3rem;
	}
	.C-Contact__titleJp::before,
	.C-Contact__titleJp::after{
		width: .9rem;
		height: 4rem;
	}
	.C-Contact__titleEn{
		display: block;
		overflow: hidden;
		transform: translateY(30%);
		transition: transform 1.5s cubic-bezier(.85, 0, .15, 1);
	}
	.C-Contact__titleEnInner > span{
		font-size: 9.7rem;
		line-height: .75;
		padding-bottom: .4rem;
	}
	.C-Contact__titleEn:not(:last-of-type){
		margin-bottom: 3rem;
	}
	.C-Contact__button{
		width: 20rem;
		height: 20rem;
		font-size: 1.9rem;
	}

}



/*-------------------------------
	フッター
-------------------------------*/

.footer{
	background: var(--blackcolor);
	padding-top: 7.5rem;
	color: #fff;
	position: relative;
	z-index: 4000;
}
.footer::before{
	background: var(--blackcolor);
	content: "";
	display: block;
	width: 100%;
	height: calc(10rem + (56.8rem / 2));
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: -1;
	transform: translateY(-100%);
}
.footer__top{
	padding-bottom: 3rem;
	position: relative;
	z-index: 5000;
	overflow: hidden;
}
.footer-obj{
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.footer-obj__inner{
	transition-timing-function: linear;
}
.footer-obj__text{
	content: "Be the TAKUMI. Be the TAKUMI. Be the TAKUMI.";
	font-family: var(--en);
	margin-right: .25em;
	width: fit-content;
	font-size: 40rem;
	letter-spacing: -.05em;
	font-weight: 700;
	line-height: .74;
	display: block;
	color: #191919;
	white-space: nowrap;
}
.footer-logo{
	width: 21.5rem;
	margin-bottom: 4.2rem;
	margin-left: auto;
	margin-right: auto;
}
.footer-logo img{
	width: 100%;
}
.footer__title{
	font-size: 5rem;
	margin-bottom: 7.2rem;
	letter-spacing: .025em;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.footer__top-content{
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.footer__top-left{
	max-width: 32.5rem;
	width: fit-content;
}
.footer__data{
	margin-bottom: 4.5rem;
}
.footer-address__item:not(:last-child){
	margin-bottom: 2.5rem;
}
.footer-address__item-title{
	margin-bottom: 1rem;
	line-height: 1;
}
.footer-address__item-text{
	font-size: 1.4rem;
	letter-spacing: .1em;
	line-height: calc(2.4 / 1.4);
}
.footer-iso{
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.footer-iso__logo{
	width: 5.5rem;
}
.footer-iso__logo img{
	width: 100%;
}
.footer-iso__body{
	width: calc(100% - 5.5rem);
	padding-left: 2.2rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.footer-iso__image{
	width: 3.7rem;
	height: 5rem;
}
.footer-iso__image img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.footer-iso__text{
	width: calc(100% - 3.6rem);
	padding-left: 1rem;
	font-size: 1.2rem;
	line-height: calc(1.9 / 1.2);
	letter-spacing: .1em;
}
.footer__top-right{
	width: calc(100% - 32.5rem);
	max-width: 77rem;
	padding-left: 5rem;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.footer-nav{
	width: 50rem;
	max-width: calc(100% - 18rem);
	padding-right: 5rem;
	display: flex;
	column-gap: 9rem;
	align-items: stretch;
	justify-content: space-between;
}
.footer-nav__inner{
	width: 18rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}
.footer-nav__item{
	width: 100%;
}
.footer-nav__item:not(:last-child){
	margin-bottom: 4rem;
}
.footer-nav__item > a{
	border-bottom: 1px solid #808080;
	padding-bottom: 1rem;
	letter-spacing: .2em;
	line-height: 1;
	display: block;
	position: relative;
	opacity: 1 !important;
}
.footer-nav__item > a::before{
    background: var(--maincolor);
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -1px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease-in-out;
}
.footer-nav__item > a:hover::before{
    transform: scaleX(100%);
    transform-origin: left;
}
.footer-nav-child{
	padding-top: 2rem;
}
.footer-nav-child__item:not(:last-child){
	margin-bottom: 1.4rem;
}
.footer-nav-child__item > a{
	font-size: 1.2rem;
	padding-left: 2.4rem;
	letter-spacing: .2em;
	line-height: 1;
	display: block;
	position: relative;
	opacity: 1 !important;
}
.footer-nav-child__item > a::before{
	transition: var(--transition);
	background: #fff;
	content: "";
	display: block;
	width: .9rem;
	height: .9rem;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.footer-nav-child__item > a:hover::before{
	background: var(--maincolor);
}

.footer-nav__item.-current > a,
.footer-nav-child__item.-current > a{
	color: var(--maincolor);
}
.footer-nav__item.-current > a::before{
	transform: scaleX(1);
}
.footer-nav-child__item.-current > a::before{
	background: var(--maincolor);
}

.footer-button{
	width: 18rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.footer-button__itemWrap{
	width: 100%;
}
.footer-button__item{
	height: 8rem;
}
.footer-button__item:not(:last-child){
	margin-bottom: 3rem;
}
.footer-button__item a{
	width: 100%;
	height: 100%;
	border: 1px solid #808080;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 5000;
	opacity: 1 !important;
}
.footer-button__item a::before{
	content: "";
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.footer-button__item a::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background: #595959;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease-in-out;
}
.footer-button__item a:hover::after{
    transform: scaleX(100%);
    transform-origin: left;
}
.footer-button__item span{
	line-height: 1;
	display: block;
}
/* .footer-button__item.-instagram a{
	font-family: var(--en);
	letter-spacing: .1em;
}
.footer-button__item.-instagram a::before{
	width: 2rem;
	height: 2rem;
	background-image: url(../images/common/icon_instagram-white.svg);
}
.footer-button__item.-instagram span{
	padding-left: 1rem;
} */
.footer-button__item.-recruit a{
	flex-direction: row-reverse;
}
.footer-button__item.-recruit a::before{
	width: 1.2rem;
	height: 1.2rem;
	background-image: url(../images/common/icon_blank-white.svg);
}
.footer-button__item.-recruit a{
	letter-spacing: .2em;
}
.footer-button__item.-recruit span{
	padding-right: 1rem;
}

.footer-button__sns{
	width: 100%;
}
.footer-button__snsItem{
	width: 100%;
}
.footer-button__snsItem:not(:last-child){
	margin-bottom: 1.5rem;
}
.footer-button__snsItem a{
	font-family: var(--en);
	padding-left: 3rem;
	height: 2rem;
	font-size: 1.4rem;
	line-height: 1;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
}
.footer-button__snsItem a::before{
	content: "";
	display: block;
	width: 2rem;
	height: 2rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.footer-button__snsItem.-instagram a::before{
	background-image: url(../images/common/icon_instagram-white.svg);
}
.footer-button__snsItem.-youtube a::before{
	background-image: url(../images/common/icon_youtube-white.svg);
}

.footer__bottom{
	padding-top: 2.2rem;
	padding-bottom: 2.2rem;
	background: #191919;
}
.footer__bottom-inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-sponsor{
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.footer-sponsor__logo{
	width: 5rem;
	height: 5.6rem;
}
.footer-sponsor__logo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.footer-sponsor__text{
	line-height: calc(2.2 / 1.4);
	padding-left: 2.2rem;
	font-size: 1.4rem;
	letter-spacing: .1em;
}
.footer__policy-copyright{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;
}
.footer__policy{
	margin-bottom: 1.6rem;
	width: fit-content;
}
.footer__policy a{
	font-size: 1.4rem;
	letter-spacing: .1em;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.footer__policy a::before{
	content: "";
	display: block;
	width: 1rem;
	height: 1.2rem;
	margin-right: 1rem;
	background-image: url(../images/common/icon_policy-white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.footer__copyright{
	width: fit-content;
	font-size: 1rem;
	letter-spacing: .1em;
	line-height: 1;
}

.grecaptcha-badge{
	display: none !important;
}

@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){

	.footer__top-right{
		flex-direction: column;
	}
	.footer-nav{
		width: 100%;
		max-width: 100%;
		padding-right: 0;
		column-gap: 5rem;
		margin-bottom: 5rem;
	}
	.footer-nav__inner{
		width: calc((100% - 5rem) / 2);
	}
	.footer-button{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.footer-button__item{
		width: calc((100% - 5rem) / 2);
	}
	.footer-button__item:not(:last-child){
		margin-bottom: 0;
	}

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

	.footer-nav{
		flex-direction: column;
	}
	.footer-nav__inner{
		width: 100%;
	}
	.footer-nav__inner:not(:last-child){
		margin-bottom: 4rem;
	}
	.footer-button{
		flex-direction: column;
	}
	.footer-button__item{
		width: 100%;
	}
	.footer-button__item:not(:last-child){
		margin-bottom: 2.5rem;
	}

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

	.footer{
		padding-top: 7rem;
	}
	.footer::before{
		height: calc(5rem + (90rem / 2));
		transform: translateY(calc(-100% + 1px));
	}
	.footer__top{
		padding-bottom: 5rem;
	}
	.footer-obj{
		bottom: -1px;
	}
	.footer-obj__text{
		margin-right: .25em;
		font-size: 80rem;
	}
	.footer-logo{
		width: 35rem;
		margin-bottom: 5rem;
		margin-left: 0;
	}
	.footer__title{
		font-size: 7rem;
		margin-bottom: 10.5rem;
		line-height: calc(12.2 / 7);
		text-align: left;
	}

	.footer__top-content{
		width: 100%;
		flex-direction: column-reverse;
	}
	.footer__top-left{
		max-width: 100%;
		width: 100%;
	}
	.footer__data{
		margin-bottom: 5rem;
	}
	.footer-address__item:not(:last-child){
		margin-bottom: 4rem;
	}
	.footer-address__item-title{
		font-size: 3.2rem;
		margin-bottom: 1.5rem;
	}
	.footer-address__item-text{
		font-size: 2.8rem;
		line-height: calc(4.8 / 2.8);
	}
	.footer-iso{
		width: 100%;
	}
	.footer-iso__logo{
		width: 11rem;
	}
	.footer-iso__body{
		width: calc(100% - 11rem);
		padding-left: 2.5rem;
	}
	.footer-iso__image{
		width: 7.3rem;
		height: auto;
	}
	.footer-iso__image img{
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	.footer-iso__text{
		width: calc(100% - 7.4rem);
		padding-left: 2.2rem;
		font-size: 2.4rem;
		line-height: calc(3.8 / 2.4);
	}
	.footer__top-right{
		width: 100%;
		max-width: 100%;
		margin-bottom: 10rem;
		padding-left: 0;
		flex-direction: column;
	}
	.footer-nav{
		width: 100%;
		max-width: 100%;
		margin-bottom: 0;
		padding-right: 0;
		column-gap: 0;
		flex-direction: column;
	}
	.footer-nav__inner{
		width: 100%;
	}
	.footer-nav__item{
		width: 100%;
		position: relative;
	}
	.footer-nav__item:not(:last-child){
		margin-bottom: 0;
		border-bottom: 1px solid #808080;
	}
	.footer-nav__item > a{
		width: 100%;
		font-size: 3.4rem;
		height: 11rem;
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
		border-bottom: none;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		position: relative;
		z-index: 5000;
	}
	.footer-nav__item > a::before{
		display: none;
	}
	.footer-nav__itemArrow{
		transition: var(--transition);
		background: #9fa0a0;
		width: 6rem;
		height: 6rem;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		right: 0;
		top: 2.5rem;
		z-index: 4000;
	}
	.footer-nav__itemArrow::after{
		background-image: url(../images/common/icon_button-arrow-black.svg);
	}
	.footer-nav__item > a:hover + .footer-nav__itemArrow{
		background: var(--subcolor);
	}
	.footer-nav__item > a:hover + .footer-nav__itemArrow::after{
		background-image: url(../images/common/icon_button-arrow-white.svg);
	}
	.footer-nav__itemButton{
		background: #9fa0a0;
		width: 6rem;
		height: 6rem;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		right: 0;
		top: 2.5rem;
		z-index: 6000;
	}
	.footer-nav__itemButton::before,
	.footer-nav__itemButton::after{
		background: var(--blackcolor);
		transition: var(--transition);
		content: "";
		display: block;
		width: 2.5rem;
		height: 1px;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.footer-nav__itemButton::after{
		transform: translate(-50%,-50%) rotate(90deg);
	}
	.footer-nav__itemButton.on::after{
		transform: translate(-50%,-50%) rotate(0deg);
	}
	.footer-nav-child{
		padding-top: 2.2rem;
		padding-bottom: 5.5rem;
		display: none;
	}
	.footer-nav-child__item:not(:last-child){
		margin-bottom: 4.5rem;
	}
	.footer-nav-child__item > a{
		font-size: 2.8rem;
		padding-left: 5.5rem;
	}
	.footer-nav-child__item > a::before{
		width: 2.1rem;
		height: 2.1rem;
	}
	.footer-button{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.footer-button__itemWrap{
		margin-bottom: 5.2rem;
	}
	.footer-button__item{
		width: 100%;
		height: 12rem;
	}
	.footer-button__item:not(:last-child){
		margin-bottom: 0;
	}
	.footer-button__item a{
		font-size: 3.4rem;
	}
	/* .footer-button__item.-instagram a{
		letter-spacing: .1em;
	}
	.footer-button__item.-instagram a::before{
		width: 4.3rem;
		height: 4.3rem;
	}
	.footer-button__item.-instagram span{
		padding-left: 2rem;
	} */
	.footer-button__item.-recruit a{
		flex-direction: row-reverse;
	}
	.footer-button__item.-recruit a::before{
		width: 2.6rem;
		height: 2.6rem;
	}
	.footer-button__item.-recruit span{
		padding-right: 2rem;
	}

	.footer-button__snsItem:not(:last-child){
		margin-bottom: 3.2rem;
	}
	.footer-button__snsItem a{
		padding-left: 6.4rem;
		height: 4.2rem;
		font-size: 3.2rem;
	}
	.footer-button__snsItem a::before{
		width: 4.2rem;
		height: 4.2rem;
	}

	.footer__bottom{
		padding-top: 4rem;
		padding-bottom: 6rem;
	}
	.footer__bottom-inner{
		flex-direction: column;
	}
	.footer-sponsor{
		width: 100%;
		margin-bottom: 2rem;
	}
	.footer-sponsor__logo{
		width: 7.5rem;
		height: 8.6rem;
	}
	.footer-sponsor__text{
		width: calc(100% - 7.5rem);
		line-height: calc(3.3 / 2.2);
		padding-left: 3.8rem;
		font-size: 2.2rem;
		font-feature-settings: "palt";
	}
	.footer__policy-copyright{
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		justify-content: flex-end;
	}
	.footer__policy{
		margin-bottom: 2rem;
		width: 100%;
	}
	.footer__policy a{
		font-size: 2.8rem;
		justify-content: flex-end;
	}
	.footer__policy a::before{
		width: 2rem;
		height: 2.4rem;
		margin-right: 2rem;
	}
	.footer__copyright{
		width: 100%;
		font-size: 1.5rem;
		text-align: right;
	}

}



/*-------------------------------
	キービジュアル
-------------------------------*/

.Keyvisual{
	padding-top: 27.6rem;
}
.Keyvisual__inner{
	position: relative;
	z-index: 6000;
}
.Keyvisual-title{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
}
.Keyvisual-title__enWrap{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}
.Keyvisual-title__en{
	width: 100%;
	overflow: hidden;
    transform: translateY(30%);
    transition: transform 1.5s cubic-bezier(.85,0,.15,1);
}
.Keyvisual-title__en:not(:last-child){
	margin-bottom: 3.8rem;
}
.Keyvisual-title__en-inner{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.Keyvisual-title__en-inner > span{
	font-family: var(--en);
	font-size: 12rem;
	line-height: .7;
	padding-bottom: .4rem;
	font-weight: 600;
	display: block;
	transform: translateY(110%);
	transition: transform 1s cubic-bezier(.85,0,.15,1);
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(1){
	transition-delay: .05s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(2){
	transition-delay: .1s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(3){
	transition-delay: .15s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(4){
	transition-delay: .2s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(5){
	transition-delay: .25s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(6){
	transition-delay: .3s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(7){
	transition-delay: .35s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(8){
	transition-delay: .4s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(9){
	transition-delay: .45s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(10){
	transition-delay: .5s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(11){
	transition-delay: .55s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(12){
	transition-delay: .6s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(13){
	transition-delay: .65s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(14){
	transition-delay: .7s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(15){
	transition-delay: .75s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(16){
	transition-delay: .8s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(17){
	transition-delay: .85s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(18){
	transition-delay: .9s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(19){
	transition-delay: .95s
}
.Keyvisual-title__en:nth-of-type(1) .Keyvisual-title__en-inner > span:nth-of-type(20){
	transition-delay: 1s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(1){
	transition-delay: .5s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(2){
	transition-delay: .55s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(3){
	transition-delay: .6s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(4){
	transition-delay: .65s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(5){
	transition-delay: .75s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(6){
	transition-delay: .8s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(7){
	transition-delay: .85s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(8){
	transition-delay: .9s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(9){
	transition-delay: .95s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(10){
	transition-delay: 1s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(11){
	transition-delay: 1.05s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(12){
	transition-delay: 1.1s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(13){
	transition-delay: 1.15s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(14){
	transition-delay: 1.2s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(15){
	transition-delay: 1.25s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(16){
	transition-delay: 1.3s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(17){
	transition-delay: 1.35s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(18){
	transition-delay: 1.4s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(19){
	transition-delay: 1.45s
}
.Keyvisual-title__en:nth-of-type(2) .Keyvisual-title__en-inner > span:nth-of-type(20){
	transition-delay: 1.5s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(1){
	transition-delay: 1.05s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(2){
	transition-delay: 1.1s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(3){
	transition-delay: 1.15s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(4){
	transition-delay: 1.2s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(5){
	transition-delay: 1.25s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(6){
	transition-delay: 1.3s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(7){
	transition-delay: 1.35s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(8){
	transition-delay: 1.4s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(9){
	transition-delay: 1.45s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(10){
	transition-delay: 1.5s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(11){
	transition-delay: 1.55s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(12){
	transition-delay: 1.6s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(13){
	transition-delay: 1.65s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(14){
	transition-delay: 1.7s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(15){
	transition-delay: 1.75s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(16){
	transition-delay: 1.8s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(17){
	transition-delay: 1.85s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(18){
	transition-delay: 1.9s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(19){
	transition-delay: 1.95s
}
.Keyvisual-title__en:nth-of-type(3) .Keyvisual-title__en-inner > span:nth-of-type(20){
	transition-delay: 2s
}
.Keyvisual-title__en-break{
	margin-right: .2em;
}

.Keyvisual-title__jp{
	font-size: 2.2rem;
	margin-bottom: 5.2rem;
	height: 3rem;
	padding-left: 2.2rem;
    padding-right: 2.2rem;
	letter-spacing: .1em;
	line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
    clip-path: inset(100% 0% 0% 0%);
    transition: clip-path 1s cubic-bezier(.85,0,.15,1);
}
.Keyvisual-title__jp::before,
.Keyvisual-title__jp::after{
    content: "";
    display: block;
    width: .6rem;
    height: 3rem;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.Keyvisual-title__jp::before{
	background-image: url(../images/common/icon_c-title-before-black.svg);
	left: 0;
	background-position: center right;
}
.Keyvisual-title__jp::after{
	background-image: url(../images/common/icon_c-title-after-black.svg);
	right: 0;
	background-position: center left;
}

.Keyvisual-title.on .Keyvisual-title__en,
.Keyvisual-title.on .Keyvisual-title__en-inner > span{
	transform: translateY(0);
}
.Keyvisual-title.on .Keyvisual-title__jp{
    clip-path: inset(0% 0% 0% 0%);
    transition-delay: .5s;
}

/*----- 画像あり（レイアウト1） */
.Keyvisual:has( > .Keyvisual-image:first-child){
	padding-top: 0;
	background: #e5e5e5;
}
.Keyvisual > .Keyvisual-image:first-child{
	width: 100%;
	padding-left: 26.6rem;
	height: 50rem;
	position: relative;
	z-index: 5000;
}
.Keyvisual > .Keyvisual-image:first-child::after{
	content: "";
	display: block;
	width: 100%;
	height: 50%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
	background: #fff;
}
.Keyvisual > .Keyvisual-image:first-child span{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 5000;
	display: block;
	overflow: hidden;
}
.Keyvisual > .Keyvisual-image:first-child span::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 6000;
	background: rgba(0,0,0,.2);
	mix-blend-mode: multiply;
}
.Keyvisual > .Keyvisual-image:first-child img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* transform: scale(1.1); */
	transform: scale(1);
}
.Keyvisual:has( > .Keyvisual-image:first-child) .Keyvisual-title{
	padding-top: 10rem;
	flex-direction: row;
	align-items: flex-end;
}
.Keyvisual:has( > .Keyvisual-image:first-child) .Keyvisual-title__en-inner > span{
	font-size: 10rem;
	line-height: .7;
}
.Keyvisual:has( > .Keyvisual-image:first-child) .Keyvisual-title__jp{
	margin-left: 2.8rem;
	margin-bottom: 0;
	padding-left: 0;
	padding-right: 0;
}
.Keyvisual:has( > .Keyvisual-image:first-child) .Keyvisual-title__jp::before,
.Keyvisual:has( > .Keyvisual-image:first-child) .Keyvisual-title__jp::after{
	display: none;
}
.Keyvisual:has( > .Keyvisual-image:first-child) + .main{
	background: #e5e5e5;
}

/*----- 画像あり（レイアウト2） */
.Keyvisual:has( > .Keyvisual-image:last-child) .Keyvisual-image{
	/* padding-bottom: var(--padding-topbottom); */
	margin-bottom: var(--padding-topbottom);
	transition: 1s cubic-bezier(.85,0,.15,1);
	width: 100%;
	margin-top: 10rem;
	position: relative;
	z-index: 5000;
	opacity: 0;
	transform: translateY(5rem);
}
.Keyvisual:has( > .Keyvisual-image:last-child) .Keyvisual-image::before{
	min-width: calc(30rem + var(--padding-leftright));
	background: var(--maincolor);
	content: "";
	display: block;
	width: calc(50% - 28.3rem);
	height: calc(100% + 40rem);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
	transform: translateY(-50%) scaleY(0);
	transition: transform 1.5s cubic-bezier(.85,0,.15,1);
	transition-delay: 1s;
	transform-origin: top;
}
.Keyvisual:has( > .Keyvisual-image:last-child) .Keyvisual-image span{
	height: 60rem;
	position: relative;
	z-index: 5000;
	display: block;
}
.Keyvisual:has( > .Keyvisual-image:last-child) .Keyvisual-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.Keyvisual:has( > .Keyvisual-image:last-child) .Keyvisual-image.on{
	opacity: 1;
	transform: translateY(0);
}
.Keyvisual:has( > .Keyvisual-image:last-child) .Keyvisual-image.on::before{
	transform: translateY(-50%) scaleY(1);
}

/*----- 画像あり（レイアウト3） */
.Keyvisual:has(.Keyvisual-image.g-keyvisual){
	padding-top: 30rem;
}

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

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

	.Keyvisual-title__en-inner > span{
		font-size: 11rem;
	}

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

	.Keyvisual-title__en-inner > span{
		font-size: 9.5rem;
	}
	.Keyvisual:has( > .Keyvisual-image:first-child) .Keyvisual-title__en-inner > span{
		font-size: 9.5rem;
	}

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

	.Keyvisual-title__en-inner > span{
		font-size: 7.5rem;
		line-height: .75;
		padding-bottom: 0;
	}
	.Keyvisual:has( > .Keyvisual-image:first-child) .Keyvisual-title{
		flex-direction: column;
		align-items: flex-start;
	}
	.Keyvisual:has( > .Keyvisual-image:first-child) .Keyvisual-title__en-inner > span{
		font-size: 7.5rem;
		line-height: .75;
		padding-bottom: 0;
	}
	.Keyvisual:has( > .Keyvisual-image:first-child) .Keyvisual-title__jp{
		margin-left: .5rem;
		margin-top: 1rem;
	}

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

	.Keyvisual{
		padding-top: 21.8rem;
	}
	.Keyvisual-title__en:not(:last-of-type){
		margin-bottom: 3rem;
	}
	.Keyvisual-title__en-inner > span{
		font-size: 9.7rem;
		padding-bottom: .4rem;
		line-height: .75;
	}

	.Keyvisual-title__jp{
		font-size: 3rem;
		margin-bottom: 4.8rem;
		height: 4rem;
		padding-left: 3.8rem;
		padding-right: 3rem;
	}
	.Keyvisual-title__jp::before,
	.Keyvisual-title__jp::after{
		width: .9rem;
		height: 4rem;
	}

	/*----- 画像あり（レイアウト1） */
	.Keyvisual > .Keyvisual-image{
		padding-top: var(--header-height);
	}
	.Keyvisual > .Keyvisual-image:first-child{
		padding-left: var(--padding-leftright);
		/* height: 48.2rem; */
		height: 44rem; /* PROCESSページの修正で↑から変更 */
	}
	.Keyvisual > .Keyvisual-image:first-child::after{
		height: calc(50% + (var(--header-height) / 2));
	}
	.Keyvisual > .Keyvisual-image:first-child img{
		transform: scale(1) !important;
	}
	.Keyvisual:has( > .Keyvisual-image:first-child) .Keyvisual-title{
		padding-top: 4.5rem;
		flex-direction: column;
		align-items: flex-start;
	}
	.Keyvisual:has( > .Keyvisual-image:first-child) .Keyvisual-title__en-inner > span{
		font-size: 8rem;
		line-height: .8;
	}
	.Keyvisual:has( > .Keyvisual-image:first-child) .Keyvisual-title__jp{
		margin-left: 0;
		margin-top: 1.5rem;
	}

	/*----- 画像あり（レイアウト2） */
	.Keyvisual:has( > .Keyvisual-image:last-child) .Keyvisual-image{
		margin-bottom: 13rem;
		margin-top: 8.6rem;
		padding-top: 0;
		transform: translateY(5rem);
	}
	.Keyvisual:has( > .Keyvisual-image:last-child) .Keyvisual-image::before{
		min-width: 50%;
		width: 50%;
		height: calc(100% + 26rem);
	}
	.Keyvisual:has( > .Keyvisual-image:last-child) .Keyvisual-image span{
		height: 33.5rem;
	}

	/*----- 画像あり（レイアウト3） */
	.Keyvisual:has(.Keyvisual-image.g-keyvisual){
		padding-top: 21.5rem;
		padding-bottom: 10rem;
		margin-bottom: 0;
	}

}



/*-------------------------------
	レイアウト
-------------------------------*/

.C-Layout{
	position: relative;
}
.C-Layout-sidebar{
	width: 20rem;
	position: absolute;
	left: 50%;
	transform: translateX(calc(var(--maxwidth-number) / 2 * -1));
	z-index: 6000;
	position: absolute;
	top: 0;
}
.C-Layout-sidebar__list-item a{
	letter-spacing: .05em;
	padding-bottom: 2.6rem;
	border-bottom: 1px solid #808080;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	opacity: 1 !important;
}
.C-Layout-sidebar__list-item:not(:first-child) a{
	padding-top: 2.6rem;
}
.C-Layout-sidebar__list-item a::before{
	transition: var(--transition);
	content: "";
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	background: #808080;
}
.C-Layout-sidebar__list-item a::after{
	background: var(--blackcolor);
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: -1px;
    transform: scaleX(0);
	transform-origin: right;
	transition: transform .3s ease-in-out;
}
.C-Layout-sidebar__list-item span{
	width: calc(100% - 1.6rem);
	padding-left: 1.4rem;
	line-height: 1;
	display: block;
}

.C-Layout-sidebar__list-item.-on a::before,
.C-Layout-sidebar__list-item a:hover::before{
	background: var(--maincolor);
}
.C-Layout-sidebar__list-item.-on a::after,
.C-Layout-sidebar__list-item a:hover::after{
	transform-origin: left;
	transform: scaleX(1);
}

.C-Layout-block{
	position: relative;
	z-index: 5000;
}
.C-Layout-block__inner{
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}
.C-Layout-block__innerBody{
	width: calc(100% - 27rem);
	max-width: 89.6rem;
}
.C-Layout-block.-white{
	background: #fff;
}
.C-Layout-block:not(:first-child){
	padding-top: calc(var(--padding-topbottom) / 2);
}
.C-Layout-block:not(:last-child){
	padding-bottom: calc(var(--padding-topbottom) / 2);
}

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

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

	.C-Layout-sidebar{
		left: var(--padding-leftright);
		transform: translateX(0) !important;
	}

}
@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){

	/* .C-Layout{
		flex-direction: column;
	} */
	.C-Layout-sidebar{
		width: 100%;
		margin-bottom: 15rem;
		position: static !important;
		transform: translateX(0);
	}
	.C-Layout-sidebar__list{
		width: 100%;
		gap: 2.6rem 4rem;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.C-Layout-sidebar__list-item{
		width: calc(50% - 2rem);
	}
	.C-Layout-sidebar__list-item a{
		padding-bottom: 2.8rem;
	}
	.C-Layout-sidebar__list-item:not(:first-child) a{
		padding-top: 0;
	}
	.C-Layout-sidebar__list-item a::before{
		background: var(--blackcolor);
		width: 3rem;
		height: 3rem;
	}
	.C-Layout-sidebar__list-item span{
		width: calc(100% - 3rem);
		padding-left: 2rem;
		padding-bottom: .1rem;
	}
	.C-Layout-sidebar__list-item span::before{
		content: "";
		display: block;
		width: 1.1rem;
		height: 1.1rem;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
		position: absolute;
		left: 1rem;
		top: .7rem;
		transform: rotate(45deg);
	}

	.C-Layout-block-wrap{
		width: 100%;
		padding-left: 0;
	}
	.C-Layout-block__innerBody{
		width: 100%;
		max-width: 100%;
	}
	.C-Layout-block:not(:first-child){
		padding-top: 7.5rem;
	}
	.C-Layout-block:not(:last-child){
		padding-bottom: 7.5rem;
	}

}

.C-Floating{
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	z-index: 9900;
}
.C-Floating__item{
	width: 12rem;
	height: 12rem;
}
.C-Floating__item:not(:last-child){
	margin-bottom: 1.6rem;
}
.C-Floating__item a{
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	opacity: 1 !important;
}
.C-Floating__item img{
	transition: var(--transition);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.C-Floating__item img:nth-of-type(2){
	opacity: 0;
}

.C-Floating__item a:hover img:nth-of-type(2){
	opacity: 1;
}

.C-Floating__item.-youtube a::after{
	content: "";
	display: block;
	width: 2.9rem;
	height: 1.6rem;
	background: #fff;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.C-Floating__item.-youtube img{
	animation: spin 12s linear infinite;
}
@keyframes spin{
	from{
		transform: rotate(0deg);
	}
	to{
		transform: rotate(360deg);
	}
}

@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){

	.C-Floating{
		display: none;
	}

}