@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: 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);
	overflow-x: hidden;
}

/*----- 画像関連 */
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);
}
.sec:last-child{
	padding-bottom: 20rem;
}
/* .sec__inner{
	text-align: center;
} */
.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;
	}
	.widewidth{
		width: 100%;
		max-width: var(--widewidth);
		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: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:last-child{
		padding-bottom: calc(var(--padding-topbottom) * 1.5);
	}

}



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

/*----- 見出し */
/* 大見出し */

/* 中見出し */
.C-Subtitle{
	margin-bottom: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.C-Subtitle__inner{
	padding-bottom: .8rem;
	padding-left: 2.4rem;
	padding-right: 2.4rem;
	display: inline-block;
	width: auto;
	position: relative;
}
.C-Subtitle__inner::after{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
}
.C-Subtitle__jp{
	font-family: var(--jp2);
	font-size: 1.4rem;
	margin-bottom: .5rem;
	font-weight: 600;
	letter-spacing: .1em;
	line-height: 1;
	display: block;
	text-align: center;
}
.C-Subtitle__en{
	font-family: var(--en);
	font-size: 2.8rem;
	line-height: 1;
	display: block;
	text-align: center;
}
.C-Subtitle__jp.-only{
	font-size: 2.5rem;
}
.C-Subtitle.-straight{
	justify-content: flex-start;
}
.C-Subtitle.-straight .C-Subtitle__inner{
	padding-left: 0;
	padding-right: 0;
}
.C-Subtitle.-straight .C-Subtitle__jp{
	display: inline-block;
	transform: translateY(-.2rem);
}
.C-Subtitle.-straight .C-Subtitle__en{
	margin-right: 1rem;
	display: inline-block;
}

/*----- ボタン */
.C-Button{
	max-width: 33.8rem;
	height: 6.2rem;
	border-radius: .5rem;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
}
.C-Button a{
	background: var(--maincolor);
	font-family: var(--jp2);
	width: 100%;
	height: 100%;
	font-size: 2.2rem;
	letter-spacing: .05em;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

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

/*----- ページャー */
.C-Pagenavi{
	width: 100%;
	margin-top: 10.5rem;
}
.C-Pagenavi .wp-pagenavi{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.C-Pagenavi .wp-pagenavi > *{
	font-family: var(--jp2);
	font-size: 2.1rem;
	padding-bottom: .4rem;
	padding-left: 1.4rem;
	padding-right: 1.4rem;
	line-height: 1;
	display: block;
	position: relative;
}
.C-Pagenavi .wp-pagenavi > *:not(:last-child){
	margin-right: 4.5rem;
}
.C-Pagenavi .current::after{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
}
.C-Pagenavi a:hover{
	color: var(--subcolor);
}

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

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

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

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

	/*----- 見出し */
	/* 大見出し */

	/* 中見出し */
	.C-Subtitle{
		margin-bottom: 7.5rem;
	}
	.C-Subtitle__inner{
		padding-bottom: 2.5rem;
		padding-left: 5rem;
		padding-right: 5rem;
	}
	.C-Subtitle__jp{
		font-size: 2.4rem;
		margin-bottom: 1.5rem;
	}
	.C-Subtitle__en{
		font-size: 4rem;
		font-weight: 700;
	}
	.C-Subtitle__jp.-only{
		font-size: 4rem;
	}
	.C-Subtitle.-straight .C-Subtitle__en{
		margin-right: 3.5rem;
	}

	/*----- ボタン */
	.C-Button{
		max-width: 50rem;
		height: 10rem;
	}
	.C-Button a{
		font-size: 2.8rem;
	}

	/*----- テキスト */

	/*----- ページャー */
	.C-Pagenavi{
		margin-top: 10rem;
	}
	.C-Pagenavi .wp-pagenavi > *{
		font-size: 2.4rem;
		padding-bottom: 1.5rem;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.C-Pagenavi .wp-pagenavi > *:not(:last-child){
		margin-right: 5rem;
	}

}



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

.header{
	width: 100%;
	padding-top: 3.8rem;
	padding-bottom: 3.4rem;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 9000;
}
.header.on::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent);
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: -1;
}
.header__inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo{
	width: 23.8rem;
}
.header-logo a{
	display: block;
}
.header-logo img{
	width: 100%;
	height: 6.8rem;
    object-fit: contain;
}
.header-nav__inner{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.header-nav__item:not(:last-child){
	margin-right: 4rem;
}
.header-nav__item a{
	font-family: var(--jp2);
	font-size: 1rem;
	padding-left: 2rem;
	padding-right: 2rem;
	padding-bottom: .8rem;
	letter-spacing: .2em;
	line-height: 1;
	color: #fff;
	display: inline-block;
	text-align: center;
	position: relative;
}
.header-nav__item a::before{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
}
.header-nav__item a::after{
	font-family: var(--en);
	content: attr(data-en);
	display: block;
	font-size: 1.9rem;
	margin-top: .4rem;
	line-height: 1;
	letter-spacing: 0;
}

/*----- 黒背景 */
.header-logo__black{
	display: none;
}

/*----- 白背景 */
.header.-white{
	background: #fff;
}
.header.-white .header-logo__black{
	display: block;
}
.header.-white .header-logo__white{
	display: none;
}
.header.-white .header-nav__item a{
	color: var(--blackcolor);
}

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

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

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

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

	.header{
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
	.header-logo{
		width: 23.8rem;
	}
	.header-logo img{
		width: auto;
		height: 6rem;
	}
	.header-nav{
		background: var(--blackcolor);
		width: 100%;
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		display: none;
	}
	.header-nav__logo{
		width: 100%;
		margin-bottom: 5rem;
	}
	.header-nav__logo a{
		width: 23.8rem;
		display: block;
	}
	.header-nav__logo img{
		height: 6rem;
		object-fit: contain;
	}
	.header-nav__inner{
		padding-top: 3rem;
		flex-direction: column;
	}
	.header-nav__item{
		width: 100%;
	}
	.header-nav__item:not(:last-child){
		margin-right: 0;
	}
	.header-nav__item a{
		width: 100%;
		font-size: 2.8rem;
		padding: 3.5rem 2.5rem;
		display: block;
		text-align: left;
		color: #fff !important;
	}
	.header-nav__item a::before{
		background: var(--maincolor);
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		position: absolute;
		left: 0;
		bottom: 0;
		right: 0;
	}
	.header-nav__item a::after{
		font-family: var(--en);
		content: attr(data-en);
		display: block;
		font-size: 1.9rem;
		margin-top: .4rem;
		line-height: 1;
		letter-spacing: 0;
	}

	/*----- ハンバーガー */
	.menu-button {
		background: var(--blackcolor);
		width: 9rem;
		height: 9rem;
		padding: 3rem;
		box-sizing: border-box;
		display: block !important;
		z-index: 9900;
		cursor: pointer;
		position: fixed;
		right: 0;
		top: 0;
	}
	.menu-button i{
		display: block;
		width: 100%;
		height: 1px;
		background: #fff;
		-webkit-transition: background 0.5s;
		transition: background 0.5s;
		position: relative;
		left: 0px;
		top: 50%;
	}
	.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.5rem);
		-ms-transform: translateY(1.5rem);
		transform: translateY(1.5rem);;
	}
	.menu-button i:after{
		-webkit-transform: translateY(-1.5rem);
		-ms-transform: translateY(-1.5rem);
		transform: translateY(-1.5rem);
	}
	.is_open i{
		background: transparent;
	}
	.is_open i:after{
		transform:translateY(0px) rotate(-45deg);
	}
	.is_open i:before{
		transform:translateY(0px) rotate(45deg);
	}

}



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

.footer{
	font-family: var(--jp2);
	background: var(--blackcolor);
	padding-top: 6rem;
	padding-bottom: 4rem;
	color: #fff;
	overflow: hidden;
}
.footer__inner{
	position: relative;
	z-index: 5000;
}
.footer__inner::before{
	content: "";
	display: block;
	width: 40rem;
	height: 40.2rem;
	background-image: url(../images/common/bg_footer-logo.svg);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0,-50%);
	z-index: -1;
}
.footer__top{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.footer-logo{
	width: 22.4rem;
}
.footer-logo img{
	width: 100%;
}
.footer-message__title{
	font-size: 3.1rem;
	margin-bottom: 1.2rem;
	font-weight: 600;
	line-height: calc(5.4 / 3.1);
	text-align: right;
}
.footer-message__text{
	font-weight: 600;
	text-align: right;
}
.footer-information__title{
	margin-bottom: 1rem;
	font-weight: 600;
}
.footer-information{
	margin-bottom: .6rem;
}
.footer-information__inner{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.footer-information-data:not(:last-child){
	margin-right: 1.5rem;
}
.footer-copyright{
	font-size: 1.2rem;
	line-height: 1;
	font-weight: 600;
	text-align: right;
}

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

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

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

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

	.footer{
		padding-top: 10rem;
		padding-bottom: 7.5rem;
	}
	.footer__inner::before{
		top: unset;
		bottom: 0;
		transform: translate(0, 0);
	}
	.footer__top{
		margin-bottom: 7.5rem;
		flex-direction: column;
	}
	.footer-logo{
		width: 30rem;
		margin-bottom: 3.5rem;
		margin-left: auto;
		margin-right: auto;
	}
	.footer-message__title{
		font-size: 3.2rem;
		margin-bottom: 3.5rem;
		text-align: center;
	}
	.footer-message__text{
		text-align: center;
	}
	.footer-information__title{
		font-size: 3.2rem;
		margin-bottom: 2.5rem;
	}
	.footer-information{
		margin-bottom: 7.5rem;
	}
	.footer-information__inner{
		flex-direction: column;
	}
	.footer-information-data:not(:last-child){
		margin-right: 0;
	}
	.footer-copyright{
		font-size: 2.4rem;
		text-align: center;
	}

}



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

.Keyvisual{
	width: 100%;
	padding-top: 24rem;
	padding-bottom: 9rem;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	text-align: center;
	color: #fff;
	position: relative;
}
.Keyvisual::before{
	background: var(--blackcolor);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 4000;
	mix-blend-mode: multiply;
}
.Keyvisual__inner{
	position: relative;
	z-index: 6000;
}
.Keyvisual__title{
	font-family: var(--jp2);
	font-size: 10rem;
	margin-bottom: 3.5rem;
	line-height: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.Keyvisual__title--jp{
	font-size: 2.5rem;
	margin-bottom: 1.4rem;
	font-weight: 600;
	line-height: 1;
	display: block;
}
.Keyvisual__title--en{
	font-family: var(--en);
	line-height: 1;
	display: block;
}
.Keyvisual-message{
	text-align: center;
}
.Keyvisual-message__title{
	font-family: var(--jp2);
	font-size: 5rem;
	padding-top: 10rem;
	margin-bottom: 5.5rem;
	font-weight: 600;
	line-height: calc(8.7 / 5);
	text-align: center;
}
.Keyvisual-message__text{
	font-family: var(--jp2);
	font-size: 2.4rem;
	font-weight: 600;
	line-height: calc(4.8 / 2.4);
	letter-spacing: .05em;
	text-align: center;
}
.Keyvisual-message__text.-large{
	font-size: 3rem;
	line-height: calc(5.2 / 3);
	letter-spacing: .1em;
}

.Keyvisual.scroll-fix{
	padding-top: 0;
}
.Keyvisual.scroll-fix .Keyvisual__title-wrap{
	height: 180vh;
}
.Keyvisual.scroll-fix .Keyvisual__title--jp{
	transition: var(--transition);
	opacity: 0;
	transform: translateY(2.5em);
}
.Keyvisual.scroll-fix .Keyvisual__title--jp.on{
	opacity: 1;
	transform: translateY(0);
}
.Keyvisual.scroll-fix .Keyvisual__title{
	height: 100vh;
	top: 0;
	position: sticky;
	font-size: max(5rem, 6vw);
	margin-bottom: 0;
}
.Keyvisual.scroll-fix .Keyvisual__title--en{
	transform: scale(4);
}
/* .key-big_end{
	padding-top: 50vh;
} */

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

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

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

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

	.Keyvisual{
		padding-top: 20rem;
	}
	.Keyvisual__title{
		font-size: 7rem;
		/* margin-bottom: 27.5rem; */
		margin-bottom: 7.5rem;
	}
	.Keyvisual__title--jp{
		font-size: 2.8rem;
	}
	.Keyvisual-message__title{
		font-size: 3.8rem;
		padding-top: 0;
		margin-bottom: 5rem;
	}
	.Keyvisual-message__text{
		font-size: 2.8rem;
	}
	.Keyvisual-message__text.-large{
		font-size: 2.8rem;
	}

	.Keyvisual.scroll-fix .Keyvisual__title{
		font-size: max(12rem, 8vw);
	}
	.Keyvisual.scroll-fix .Keyvisual__title--en{
		transform: scale(1.7);
		letter-spacing: -.025em;
	}

}



/*-------------------------------
	お知らせ
-------------------------------*/

.C-News-tab{
	width: 100%;
	margin-bottom: 4rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.C-News-tab__item{
	border: .1rem solid var(--blackcolor);
	transition: var(--transition);
	width: 9rem;
	height: 2rem;
	border-radius: 1rem;
	font-size: 1.3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.C-News-tab__item:not(:last-child){
	margin-right: 1.8rem;
}
.C-News-tab__item.-current,
.C-News-tab__item:hover{
	background: var(--blackcolor);
	color: #fff;
}
.C-News-block{
	border-bottom: 1px solid #d6d6d6;
}
.C-News-block:first-child{
	border-top: 1px solid #d6d6d6;
}
.C-News-block a{
	width: 100%;
	padding: 1.8rem 8.5rem 2.2rem 1rem;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	position: relative;
}
.C-News-block a::after{
	content: "";
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	border-top: 1px solid;
	border-right: 1px solid;
	transform: rotate(45deg) translateY(-50%);
	position: absolute;
	right: 2rem;
	top: 50%;
}
.C-News-block__data{
	width: 8.4rem;
	padding-top: .4rem;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.C-News-block__data-category{
	width: 100%;
	max-width: 8.4rem;
	height: 2rem;
	font-size: 1.3rem;
	margin-bottom: .8rem;
	border-radius: .3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.C-News-block__data-time{
	font-size: 1.3rem;
	line-height: 1;
	display: inline-block;
	text-align: center;
}
.C-News-block__body{
	width: calc(100% - 8.4rem);
	padding-left: 2rem;
}
.C-News-block__title{
	font-family: var(--jp2);
	font-size: 1.8rem;
	margin-bottom: .5rem;
	font-weight: 600;
	letter-spacing: .1em;
}
.C-News-block__text{
	color: #666;
	line-height: calc(1.8 / 1.5);
}

/*----- カテゴリ違い */
/* お知らせ */
.C-News-block.-news .C-News-block__data-category{
	background: var(--maincolor);
}
.C-News-block.-news a::after{
	border-color: var(--maincolor);
}

/* 導入実績 */
.C-News-block.-works .C-News-block__data-category{
	background: #7fbe26;
}
.C-News-block.-works a::after{
	border-color: #7fbe26;
}

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

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

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

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

	.C-News-tab{
		margin-bottom: 5rem;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 2.5rem;
	}
	.C-News-tab__item{
		border-width: 1px;
		width: calc((100% - (2.5rem * 2)) / 3);
		height: 5rem;
		border-radius: 2.5rem;
		font-size: 2.8rem;
	}
	.C-News-tab__item a{
		padding-bottom: .5rem;
	}
	.C-News-tab__item:not(:last-child){
		margin-right: 0;
	}

	.C-News-block a{
		padding: 5rem 8.5rem 5rem 0;
		flex-direction: column;
	}
	.C-News-block a::after{
		width: 2.5rem;
		height: 2.5rem;
	}
	.C-News-block__data{
		width: 100%;
		margin-bottom: 2.5rem;
		padding-top: 0;
		justify-content: flex-start;
		flex-direction: row;
	}
	.C-News-block__data-category{
		max-width: 15rem;
		height: 4.5rem;
		font-size: 2.4rem;
		margin-bottom: 0;
		border-radius: .5rem;
		margin-right: 3.5rem;
		padding-bottom: .5rem;
	}
	.C-News-block__data-time{
		font-size: 2.4rem;
	}
	.C-News-block__body{
		width: 100%;
		padding-left: 0;
	}
	.C-News-block__title{
		font-size: 3.2rem;
		margin-bottom: 2.5rem;
		line-height: 1.5;
	}
	.C-News-block__text{
		line-height: 1.8;
	}

}



/*-------------------------------
	ぱんくず
-------------------------------*/

.Breadclumb{
	padding-top: 2.5rem;
}
.Breadclumb__inner{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Breadclumb__item a{
	text-decoration: underline;
}
.Breadclumb__item:not(:last-child)::after{
	content: ">";
	margin-left: .8rem;
	margin-right: .8rem;
}

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

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

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

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

}