@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);
}

/*----- 画像関連 */
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);
}
.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;
	}
	.maxwidth2{
		width: 100%;
		max-width: var(--maxwidth2);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}
	.maxwidth3{
		width: 100%;
		max-width: var(--maxwidth3);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}

}
@media screen and (max-width:1520px) and (min-width: 769px){

}
@media screen and (max-width:1380px) 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);
	}

}



/*-------------------------------
	パーツ
-------------------------------*/

/*----- 見出し */
/* 大見出し */
.C-Title{
	width: 100%;
	margin-bottom: 6.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.C-Title::before{
	content: "";
	display: block;
	width: 12rem;
	height: 6.2rem;
	margin-bottom: 1rem;
	background-image: url(../images/common/icon_title1.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.C-Title.-on2::before{
	background-image: url(../images/common/icon_title2.svg);
}
.C-Title.-on3::before{
	background-image: url(../images/common/icon_title3.svg);
}
.C-Title__en{
	color: var(--maincolor);
	width: fit-content;
	font-size: 5rem;
	padding-bottom: .2rem;
	font-weight: 900;
	line-height: .86;
}
.C-Title__jp{
	font-size: 2.4rem;
	margin-top: 3.4rem;
	font-weight: 700;
	line-height: 1;
}

/*----- テキストアニメーション */
.g-view{
	transform: translateY(5rem);
	opacity: 0;
	transition: .6s opacity ease-in-out, .6s transform ease-in-out;
}
.g-view.-on{
	opacity: 1;
	transform: translateY(0);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1520px) and (min-width: 769px){

}
@media screen and (max-width:1380px) 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){

	/*----- 見出し */
	/* 大見出し */
	.C-Title{
		margin-bottom: 5.5rem;
	}
	.C-Title::before{
		width: 15.6rem;
		height: 8rem;
		margin-bottom: 1.2rem;
	}
	.C-Title__en{
		font-size: 6.5rem;
	}
	.C-Title__jp{
		font-size: 3rem;
		margin-top: 6rem;
	}

}



/*-------------------------------
	ヘッダー
-------------------------------*/

.header{
	width: 100%;
	background: #fff;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 9900;
}
.header__inner{
	height: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header__logo{
	max-width: 35.2rem;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.header__logo a{
	width: 17.6rem;
	display: block;
	opacity: 1 !important;
}
.header__logo img{
	width: 100%;
}
.header__logo-service{
	font-size: 1.6rem;
	margin-left: 2.5rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .05em;
}
.header__nav{
	width: fit-content;
	max-width: calc(100% - 35.2rem);
	padding-right: 2rem;
}
.header__nav-inner{
	width: 100%;
	column-gap: 3.8rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
}
.header__nav-item a{
	color: var(--maincolor);
	font-size: 2rem;
	padding-bottom: .8rem;
	font-weight: 700;
	line-height: 1;
	position: relative;
	opacity: 1 !important;
}
.header__nav-item a::after{
	transition: .3s transform var(--transition-easing);
	content: "";
	display: block;
	width: 100%;
	height: .3rem;
	background: #00a5e1;
	transform: scaleX(0);
	transform-origin: right;
	position: absolute;
	left: 0;
	bottom: 0;
}
.header__nav-item.-current a::after,
.header__nav-item a:hover::after{
	transform: scaleX(1);
	transform-origin: left;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1520px) and (min-width: 769px){

}
@media screen and (max-width:1380px) 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{
		padding-right: 0;
	}
	.header__nav-inner{
		column-gap: 2.8rem;
	}

}
@media screen and (max-width:960px) and (min-width: 769px){

	.header__logo{
		max-width: 29.2rem;
	}
	.header__logo a{
		width: 15rem;
	}
	.header__logo-service{
		font-size: 1.4rem;
		margin-left: 1.5rem;
		letter-spacing: 0;
	}
	.header__nav{
		max-width: calc(100% - 29.2rem);
	}
	.header__nav-inner{
		column-gap: 1.8rem;
	}
	.header__nav-item a{
		font-size: 1.6rem;
	}

}
@media screen and (max-width:768px){

	.header__inner{
		padding-left: 2rem;
		padding-right: 4rem;
	}
	.header__logo{
		max-width: 60rem;
	}
	.header__logo a{
		width: 27.3rem;
	}
	.header__logo-service{
		font-size: 2.8rem;
		margin-left: 3.4rem;
		letter-spacing: 0;
	}
	.header__nav{
		padding-top: var(--padding-topbottom);
		width: 100%;
		max-width: 100%;
		padding-right: 0;
		display: none;
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		background: #fff;
		z-index: -1;
	}
	.header__nav-inner{
		column-gap: 0;
		flex-direction: column;
	}
	.header__nav-item:first-child{
		border-top: 1px solid #000;
	}
	.header__nav-item{
		width: 100%;
		border-bottom: 1px solid #000;
	}
	.header__nav-item a{
		font-size: 2.8rem;
		height: 15rem;
		padding-bottom: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.header__nav-item a::after{
		display: none;
	}

	/*----- ハンバーガー */
	.menu-button {
		width: var(--header-height);
		height: var(--header-height);
		padding: 4.8rem 4rem;
		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: 2px;
		background: var(--blackcolor);
		-webkit-transition: background 0.5s;
		transition: background 0.5s;
		position: relative;
		left: 0px;
		top: 2.2rem;
	}
	.menu-button i:before,
	.menu-button i:after{
		content: "";
		display: block;
		width: 100%;
		height: 2px;
		background: var(--blackcolor);
		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(2.2rem);
		-ms-transform: translateY(2.2rem);
		transform: translateY(2.2rem);
	}
	.menu-button i:after{
		-webkit-transform: translateY(-2.2rem);
		-ms-transform: translateY(-2.2rem);
		transform: translateY(-2.2rem);
	}
	.is_open i{
		background: transparent;
	}
	.is_open i:after{
		transform:translateY(0px) rotate(-40deg);
	}
	.is_open i:before{
		transform:translateY(0px) rotate(40deg);
	}

}



/*-------------------------------
	フッター
-------------------------------*/

.footer{
	padding-top: 3.2rem;
	padding-bottom: 3.8rem;
	background: #fff;
}
.footer__inner{
	margin-bottom: 4.5rem;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.footer__logo{
	width: 20rem;
	margin-bottom: 3rem;
}
.footer__logo a{
	display: block;
	opacity: 1 !important;
}
.footer__logo img{
	width: 100%;
}
.footer__address{
	row-gap: .8rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.footer__address-item{
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.footer__address-item-title{
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: .1em;
}
.footer__address-item-text{
	font-size: 1.4rem;
	letter-spacing: .1em;
}
.footer__corporate a{
	font-size: 1.4rem;
	line-height: 1;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer__corporate a::after{
	content: "";
	display: block;
	width: 1.6rem;
	height: 1.3rem;
	background-image: url(../images/common/icon_blank-black.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.footer__copyright{
	font-family: var(--jp2);
	padding-top: 1.8rem;
	font-size: 1.2rem;
	line-height: 1;
	letter-spacing: .1em;
	text-align: center;
	border-top: 1px solid #cbcbcb;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1520px) and (min-width: 769px){

}
@media screen and (max-width:1380px) 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){

	.footer{
		padding-top: 7.5rem;
		padding-bottom: 3.5rem;
	}
	.footer__inner{
		margin-bottom: 4.2rem;
		flex-direction: column;
		align-items: flex-start;
	}
	.footer__left{
		width: 100%;
	}
	.footer__logo{
		width: 27.3rem;
		margin-bottom: 3rem;
	}
	.footer__logo a{
		display: block;
		opacity: 1 !important;
	}
	.footer__logo img{
		width: 100%;
	}
	.footer__address{
		row-gap: 0;
	}
	.footer__address-item{
		flex-direction: column;
		align-items: flex-start;
	}
	.footer__address-item-title{
		font-size: 2.8rem;
		line-height: calc(5.6 / 2.8);
		letter-spacing: 0;
		margin-left: -.5em;
	}
	.footer__address-item-text{
		font-size: 2.8rem;
		line-height: calc(5.6 / 2.8);
		letter-spacing: 0;
	}
	.footer__corporate{
		width: 100%;
		margin-top: 6rem;
	}
	.footer__corporate a{
		font-size: 2.8rem;
		line-height: calc(5.6 / 2.8);
	}
	.footer__corporate a::after{
		width: 3.2rem;
		height: 2.6rem;
		margin-left: 1.5rem;
	}
	.footer__copyright{
		padding-top: 3.5rem;
		font-size: 2.4rem;
		letter-spacing: .05em;
	}

}