@charset "utf-8";

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

*,
*::before,
*::after{
	box-sizing: border-box;
	line-height: var(--line-height);
	word-wrap: break-word;
	/* font-feature-settings: "palt"; */
}
html{
	font-size: var(--root-font-size);
	/* scrollbar-gutter: stable; */
}
body{
	opacity: 0;
	width: 100%;
	font-size: var(--font-size);
	letter-spacing: 0;
	font-weight: 400;
	-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);
	color: var(--maincolor);
}
*:not(.not-a) > a:hover,
*:not(.not-a) > .a:hover{
	opacity: var(--opacity);
}

/*----- コンテンツ */
.sec{
	padding-top: var(--padding-topbottom);
	padding-bottom: var(--padding-topbottom);
}
.main{
	display: block;
}

@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;
	}

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

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

}



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

/*----- レイアウト */
.halfLayout{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.halfLayout__body{
	width: 50%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}
.halfLayout__bodyInner{
	width: calc(var(--maxwidth-number) / 2);
	padding-right: 3rem;
	max-width: 58.3rem;
}
.halfLayout__image{
	width: 50%;
	padding-left: 3rem;
}
.halfLayout__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*----- 見出し */
/* 大見出し */
.C-Title{
	width: 100%;
	margin-bottom: 9.5rem;
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
}
.C-Title__enWrap{
	margin-left: -.25em;
	width: fit-content;
	display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}
.C-Title__en{
	width: fit-content;
	font-size: 10rem;
	margin-right: 3.2rem;
	font-weight: 700;
	display: block;
	overflow: hidden;
    transform: translateY(30%);
    transition: transform 1.5s cubic-bezier(.85, 0, .15, 1);
}
.C-Title__enInner{
	width: 100%;
	line-height: 1;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.C-Title__enInner > span{
	padding-bottom: 1.2rem;
	line-height: .68;
	display: block;
    transform: translateY(110%);
    transition: transform 1s cubic-bezier(.85, 0, .15, 1);
}
.C-Title__jp{
	color: var(--subcolor);
	font-size: 2.2rem;
	letter-spacing: .05em;
	line-height: 1;
	padding-bottom: .2rem;
	font-weight: 500;
    clip-path: inset(100% 0% 0% 0%);
    transition: clip-path 1s cubic-bezier(.85, 0, .15, 1);
}
.C-Title__jp.-en{
	font-family: var(--en);
	/* line-height: .75; */
	font-weight: 700;
	font-size: 4rem;
}
.C-Title.on .C-Title__en,
.C-Title.on .C-Title__enInner > span{
	transform: translateY(0);
}
.C-Title.on .C-Title__jp{
    clip-path: inset(0% 0% 0% 0%);
    transition-delay: .5s;
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(1){
	transition-delay: .05s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(2){
	transition-delay: .1s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(3){
	transition-delay: .15s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(4){
	transition-delay: .2s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(5){
	transition-delay: .25s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(6){
	transition-delay: .3s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(7){
	transition-delay: .35s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(8){
	transition-delay: .4s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(9){
	transition-delay: .45s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(10){
	transition-delay: .5s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(11){
	transition-delay: .55s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(12){
	transition-delay: .6s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(13){
	transition-delay: .65s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(14){
	transition-delay: .7s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(15){
	transition-delay: .75s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(16){
	transition-delay: .8s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(17){
	transition-delay: .85s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(18){
	transition-delay: .9s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(19){
	transition-delay: .95s
}
.C-Title__en:nth-of-type(1) .C-Title__enInner > span:nth-of-type(20){
	transition-delay: 1s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(1){
	transition-delay: .5s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(1){
	transition-delay: .55s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(2){
	transition-delay: .6s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(3){
	transition-delay: .65s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(4){
	transition-delay: .7s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(5){
	transition-delay: .75s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(6){
	transition-delay: .8s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(7){
	transition-delay: .85s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(8){
	transition-delay: .9s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(9){
	transition-delay: .95s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(10){
	transition-delay: 1s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(11){
	transition-delay: 1.05s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(12){
	transition-delay: 1.1s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(13){
	transition-delay: 1.15s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(14){
	transition-delay: 1.2s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(15){
	transition-delay: 1.25s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(16){
	transition-delay: 1.3s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(17){
	transition-delay: 1.35s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(18){
	transition-delay: 1.4s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(19){
	transition-delay: 1.45s
}
.C-Title__en:nth-of-type(2) .C-Title__enInner > span:nth-of-type(20){
	transition-delay: 1.5s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(1){
	transition-delay: 1.05s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(2){
	transition-delay: 1.1s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(3){
	transition-delay: 1.15s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(4){
	transition-delay: 1.2s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(5){
	transition-delay: 1.25s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(6){
	transition-delay: 1.3s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(7){
	transition-delay: 1.35s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(8){
	transition-delay: 1.4s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(9){
	transition-delay: 1.45s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(10){
	transition-delay: 1.5s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(11){
	transition-delay: 1.55s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(12){
	transition-delay: 1.6s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(13){
	transition-delay: 1.65s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(14){
	transition-delay: 1.7s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(15){
	transition-delay: 1.75s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(16){
	transition-delay: 1.8s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(17){
	transition-delay: 1.85s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(18){
	transition-delay: 1.9s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(19){
	transition-delay: 1.95s
}
.C-Title__en:nth-of-type(3) .C-Title__enInner > span:nth-of-type(20){
	transition-delay: 2s
}

/* 中見出し */
.C-SubTitle{
	width: calc(100% + var(--padding-leftright));
	margin-left: calc(var(--padding-leftright) * -1);
	font-size: 4rem;
	margin-bottom: 4rem;
	font-weight: 700;
	letter-spacing: .01em;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	position: relative;
}
.C-SubTitle::before{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 3rem;
	height: .5rem;
	/* position: absolute;
	left: 0;
	top: 0;
	transform: translate(calc(-100% - 2rem),calc(.5em * (calc(6 / 4)))); */
	transform: translateY(calc(.5em * calc(6 / 4)));
}
.C-SubTitle span{
	width: calc(100% - 3rem); 
	padding-left: 2rem;
	line-height: calc(6 / 4);
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

/*----- テキスト */
.C-Text{
	text-align: justify;
}

/*----- オブジェクト */
.C-Object{
	position: relative;
}
.C-Object::before{
	transition: clip-path 1s var(--transition-easing);
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
}
.C-Object.on::before{
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/*----- アニメーション */
/* ふわっと表示 */
.g-view{
	transform: translateY(3rem);
	opacity: 0;
	transition: 1s opacity ease-in-out, 1s transform ease-in-out;
}
.g-view.on.-delay1{
	transition-delay: .2s;
}
.g-view.on.-delay2{
	transition-delay: .4s;
}
.g-view.on.-delay3{
	transition-delay: .6s;
}
.g-view.on.-delay4{
	transition-delay: .8s;
}
.g-view.on.-delay5{
	transition-delay: 1s;
}
.g-view.on.-delay6{
	transition-delay: 1.2s;
}
.g-view.on{
	opacity: 1;
	transform: translateY(0);
}
/* マスク */
.g-mask{
	clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
	transition: 1s clip-path cubic-bezier(.85, 0, .15, 1);
}
.g-mask.on{
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.g-mask.on.-delay1{
	transition-delay: .2s;
}
.g-mask.on.-delay2{
	transition-delay: .4s;
}
.g-mask.on.-delay3{
	transition-delay: .6s;
}
.g-mask.on.-delay4{
	transition-delay: .8s;
}
.g-mask.on.-delay5{
	transition-delay: 1s;
}
.g-mask.on.-delay6{
	transition-delay: 1.2s;
}

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

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

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

	.halfLayout__body{
		padding-left: var(--padding-leftright);
	}
	.halfLayout__bodyInner{
		width: 100%;
	}

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

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

	.halfLayout__bodyInner{
		padding-right: 2.5rem;
	}
	.halfLayout__image{
		padding-left: 2.5rem;
	}

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

	.C-Title__en{
		font-size: 7.5rem;
		margin-right: 2rem;
	}
	.C-Title__jp{
		font-size: 2rem;
	}
	.C-Title__jp.-en{
		font-size: 2.4rem;
	}
	
	.C-SubTitle{
		font-size: 3rem;
	}

	.halfLayout__bodyInner{
		padding-right: 1.5rem;
	}
	.halfLayout__image{
		padding-left: 1.5rem;
	}

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

	/*----- レイアウト */
	.halfLayout{
		flex-direction: column;
	}
	.halfLayout__body{
		width: 100%;
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.halfLayout__bodyInner{
		width: 100%;
		padding-right: 0;
		max-width: 100%;
	}
	.halfLayout__image{
		width: 50%;
		padding-left: 0;
	}

	/*----- 見出し */
	/* 大見出し */
	.C-Title{
		margin-bottom: 8.5rem;
		flex-direction: column;
	}
	.C-Title__en{
		font-size: 11rem;
		margin-right: 0;
	}
	.C-Title__jp{
		font-size: 3.2rem;
		letter-spacing: .1em;
		margin-top: 3.2rem;
	}
	.C-Title__jp.-en{
		font-size: 4rem;
	}

	/* 中見出し */
	.C-SubTitle{
		width: 100%;
		margin-left: 0;
		font-size: 5.4rem;
		margin-bottom: 2rem;
	}
	.C-SubTitle::before{
		width: 3rem;
		height: 4px;
	}
	.C-SubTitle span{
		width: calc(100% - 3rem); 
		padding-left: 2rem;
		line-height: calc(6 / 4);
		white-space: nowrap;
	}

}



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

.header{
	height: var(--header-height);
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 9900;
}
.header.-down{
	z-index: -1;
}
.header__inner{
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo{
	width: 19rem;
	height: 3.6rem;
	line-height: 1;
	position: relative;
}
.header-logo a{
	width: 100%;
	height: 100%;
	display: block;
}
.header-logo img{
	transition: var(--transition);
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: absolute;
	z-index: 5000;
}
.header-logo img:nth-of-type(2){
	opacity: 0;
}
.header-nav{
	width: calc(100% - 19rem);
}
.header-nav__inner{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header-nav__item:not(:last-child){
	margin-right: 2.8rem;
}
.header-nav__item a{
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .05em;
	display: block;
	position: relative;
	color: #fff;
}
.header-nav__item a[target="_blank"]{
	padding-right: 2rem;
}
.header-nav__item a[target="_blank"]::after{
	transition: var(--transition);
	content: "";
	display: block;
	width: 1.3rem;
	height: 1rem;
	background-image: url(../images/common/icon_blank-white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.header-nav__item br{
	display: none;
}

/*----- BLACK ver. */
.header.-black .header-logo img:nth-of-type(1){
	opacity: 0;
}
.header.-black .header-logo img:nth-of-type(2){
	opacity: 1;
}
.header.-black .header-nav__item a{
	color: var(--blackcolor);
}
.header.-black .header-nav__item a[target="_blank"]::after{
	background-image: url(../images/common/icon_blank-black.svg);
}

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

	/*----- ナビ */
	.header-nav{
		display: block !important;
	}

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

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

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

	.header-nav__item br{
		display: block;
	}

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

	.header-nav__item:not(:last-child){
		margin-right: 2rem;
	}

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

	.header__inner{
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
	.header-logo{
		width: 30.2rem;
		height: 5.6rem;
	}

	/*----- ナビ */
	.header-nav{
		background: var(--blackcolor);
		display: none;
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		padding-top: 19.5rem;
		padding-bottom: 10rem;
		overflow: auto;
	}
	.header-nav__inner{
		padding-left: 5rem;
		padding-right: 5rem;
		flex-direction: column;
	}
	.header-nav__item{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		position: relative;
	}
	.header-nav__item:not(:last-child){
		margin-right: 0;
		margin-bottom: 3.8rem;
		border-bottom: 1px solid #808080;
	}
	.header-nav__item a{
		opacity: 1 !important;
		width: 100%;
		height: 10rem;
		font-size: 3.4rem;
		letter-spacing: .2em;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	.header-nav__item:not(:last-child) a{
		padding-bottom: 4rem;
	}
	.header-nav__item a[target="_blank"]{
		padding-right: 0;
	}
	.header-nav__item a[target="_blank"]::after{
		width: 2.6rem;
		height: 2rem;
		margin-left: 1rem;
		position: static;
		transform: translateY(0);
	}
	.header-nav__item:not(:has(a[target="_blank"]))::after{
		content: "";
		transition: var(--transition);
		display: block;
		width: 6rem;
		height: 6rem;
		background-color: #9fa0a0;
        position: absolute;
        right: 0;
        top: 0;
		background-image: url(../images/common/icon_arrow-black.svg);
		background-size: .8rem;
		background-repeat: no-repeat;
		background-position: center center;
		transform: rotate(-90deg);
	}
	.header-nav__item:not(:last-child):hover{
		border-color: var(--subcolor);
	}
	.header-nav__item:hover:not(:has(a[target="_blank"]))::after{
		background-color: var(--subcolor);
		background-image: url(../images/common/icon_arrow-white.svg);
	}

	/*----- ハンバーガー */
	.menu-button {
		height: var(--header-height);
		width: 14rem;
		padding: 3rem 3rem 6.5rem;
		box-sizing: border-box;
		display: block !important;
		z-index: 9900;
		cursor: pointer;
		position: fixed;
		right: 0;
		top: 0;
	}
	.menu-button::after{
		content: "MENU";
		transition: var(--transition);
		font-family: var(--en);
		font-size: 2.2rem;
		padding-top: 1.2rem;
		font-weight: 700;
		line-height: .8;
		letter-spacing: .22em;
		border-radius: 50%;
		white-space: nowrap;
		color: #fff;
		display: block;
		/* width: 100%;
		height: 1.7rem;
		margin-top: 1.5rem;
		background-image: url(../images/common/txt_menu-white.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center; */
	}
	.menu-button i{
		display: block;
		width: 100%;
		height: 100%;
		-webkit-transition: background 0.5s;
		transition: background 0.5s;
		position: relative;
		left: 0px;
		top: 0;
	}
	.menu-button i::before,
	.menu-button i::after{
		content: "";
		display: block;
		width: 100%;
		height: 2px;
		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(calc(2.5rem - 2px));
		-ms-transform: translateY(calc(2.5rem - 2px));
		transform: translateY(calc(2.5rem - 2px));
	}
	.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(calc(1.3rem - 2px)) rotate(-15deg);
	}
	.is_open i::before{
		transform:translateY(calc(1.3rem - 2px)) rotate(15deg);
	}

	.header.-black + .menu-button i::before,
	.header.-black + .menu-button i::after{
		background: var(--blackcolor);
	}
	.header.-black + .menu-button::after{
		color: var(--blackcolor);
		/* background-image: url(../images/common/txt_menu-black.svg); */
	}
	
	.header.is_open .header-logo img:nth-of-type(1){
		opacity: 1 !important;
	}
	.header.is_open .header-logo img:nth-of-type(2){
		opacity: 0 !important;
	}
	.header.is_open .header-nav__item a{
		color: #fff !important;
	}
	.header.is_open .header-nav__item a[target="_blank"]::after{
		background-image: url(../images/common/icon_blank-white.svg) !important;
	}
	.header.is_open + .menu-button i::before,
	.header.is_open + .menu-button i::after{
		background: #fff !important;
	}
	.header.is_open + .menu-button::after{
		color: #fff !important;
		/* background-image: url(../images/common/txt_menu-white.svg); */
	}

}



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

.footer{
	padding-top: 15rem;
}
.footer__inner{
	padding-bottom: 8.5rem;
}
.footer__60logo{
	width: 100%;
	max-width: 17rem;
	margin-bottom: 6.2rem;
	margin-left: auto;
	margin-right: auto;
}
.footer__60logo img{
	width: 100%;
}
.footer-copyright{
	background: var(--blackcolor);
	width: 100%;
	height: 10rem;
	font-size: 1rem;
	letter-spacing: .05em;
	font-weight: 500;
	color: #999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer-logo{
	width: 33rem;
	margin-left: auto;
	margin-right: auto;
}
.footer-logo img{
	width: 100%;
}

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

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

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

	.footer{
		padding-top: 7.5rem;
	}
	.footer__inner{
		padding-bottom: 7.5rem;
	}
	.footer__60logo{
		max-width: 14rem;
		margin-bottom: 4.5rem;
	}
	.footer-logo{
		width: 28rem;
	}

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

	.footer{
		padding-top: 7rem;
	}
	.footer__inner{
		padding-bottom: 10.5rem;
	}
	.footer__60logo{
		max-width: 23rem;
		margin-bottom: 7.8rem;
	}
	.footer-copyright{
		height: 15rem;
		font-size: 2rem;
	}
	.footer-logo{
		width: 42rem;
	}

}