@charset "utf-8";

/*-------------------------------
	基本設定
-------------------------------*/

/*----- フォント設定 */
/* @import url('https://fonts.googleapis.com/css2?family=Lato:wght@900&family=Zen+Kaku+Gothic+New:wght@300;400&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wdth,wght@0,75..100,100..900;1,75..100,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wdth,wght@0,75..100,100..900;1,75..100,100..900&display=swap');

*,
*::before,
*::after{
	box-sizing: border-box;
	line-height: 1;
	word-wrap: break-word;
}
html{
	font-size: 62.5%;
}
body{
	opacity: 0;
	width: 100%;
	font-size: 1.6rem;
	letter-spacing: .0em;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	color: #000;
	font-family: "Noto Sans JP", 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.alumni{
 font-family: "Alumni Sans", sans-serif;
}

.content-width{
	max-width: calc(123.8rem + 4.8rem);
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-left: 2.4rem;
	padding-right: 2.4rem;
}
.content-width-lp{
	max-width: calc(124rem);
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-left: 2.4rem;
	padding-right: 2.4rem;
}

/*----- 画像関連 */
img{
	height: auto;
	vertical-align: bottom;
}

/* SVG表示されないとき */
.svg{
	line-height: 1;
	display: block;
}
.svg img{
	display: block;
	width: 100%;
	height: auto;
	line-height: 1;
}

/* object-fit */
.obj-img img{
	object-fit: cover;
	font-family: 'object-fit: cover;';
}

/*----- ホバー系 */
a{
	transition: .3s all ease;
	color: #000;
}
*:not(.not-a) > a:hover{
	opacity: 0.6;
}

/* 画像拡大 */
.hover_zoom img{
	transition: .3s all ease;
}
.hover_zoom:hover img{
	transform: scale(1.2);
}

/*----- コンテンツ */

.main{
	display: block;
}

/*----- アニメーション */
.view{
	opacity : 0;
	transform : translate(0, 0.7rem);
	transition : all 750ms;
}
.view.scrollin{
	opacity : 1;
	transform : translate(0, 0);
}
.view2{
	overflow: hidden;
	position: relative;
}
.view2:after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	background: #fff;
	transition : all ease-in-out 750ms;
}
.view2.scrollin2:after{
	left: 100%;
}



/*-------------------------------
	ヘッダー
-------------------------------*/

.header{
}



/*-------------------------------
	フッター
-------------------------------*/

.footer{
}
.gotop{
}



/*-------------------------------
	パーツ
-------------------------------*/

/*----- 見出し */
/* 大見出し */
.sec-title{

}

/* 中見出し */
.sec-subtitle{

}

/*----- ボタン */
.Button-wrap{

}
.Button{
}

/*----- キービジュアル */
.keyvisual{
}

/*----- ぱんくず */




/*-------------------------------
	PC専用
-------------------------------*/
@media screen and (min-width:769px) , print{

	a[href^="tel:"]{
		pointer-events: none;
	}

}



/*-------------------------------
	ナビ切替 (1150px以下)
-------------------------------*/
@media screen and (max-width:1150px){

	.header-nav{
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		width: 84.7vw;
		height: 100vh;
		padding: 10rem 2.4rem 4rem;
		background: #fff;
		box-shadow: -.4rem 0 1.2rem rgba(0, 0, 0, 0.1);
		transform: translateX(100%);
		transition: transform .3s ease;
		pointer-events: none;
		overflow-y: auto;
		z-index: 950;
	}
	.header-nav.is-open{
		transform: translateX(0);
		pointer-events: auto;
	}
	.header-nav__inner{
		flex-direction: column;
		align-items: flex-start;
		gap: 2.4rem;
	}
	.header-nav__item{
		width: 100%;
	}
	.header-nav__item a{
		display: block;
		font-size: 1.6rem;
	}
	.header-nav__item--contact a{
		width: 100%;
		height: 4.8rem;
		font-size: 1.6rem;
	}
	.header.fixed{
		background: transparent;
		box-shadow: none;
	}
	.header.fixed .header-logo{
		width: 6rem;
		margin-top: 2.4rem;
	}

}

@media screen and (max-width:1150px){
	.header-nav.is-open .header-nav__item a{
		text-align: center;
	}
	.header.fixed{
		background: transparent;
		box-shadow: none;
	}
	.header.fixed .header-logo{
		width: 6rem;
		margin-top: 2.4rem;
	}
}

@media screen and (min-width:1151px){
	.header.fixed{
		background: #fff;
		box-shadow: 0 .2rem .8rem rgba(0,0,0,0.1);
	}
	.header.fixed .header-logo{
		width: 8rem;
		margin-top: 1.6rem;
	}
}

@media screen and (max-width:768px) , print{
	.header-nav__item a{
		text-align: left;
	}
	.menu-button {
		width: 2.5rem;
		height: 2.2rem;
		box-sizing: border-box;
		display: block !important;
		z-index: 9900;
		cursor: pointer;
		position: fixed;
		right: 4rem;
		top: 2.6rem;
	}
	.menu-button i{
		display: block;
		width: 100%;
		height: .2rem;
		background: #000;
		-webkit-transition: background 0.5s;
		transition: background 0.5s;
		position: relative;
		top: .8rem;
	}
	.menu-button i:before,
	.menu-button i:after{
		content: "";
		display: block;
		width: 100%;
		height: .2rem;
		background: #000;
		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(.8rem);
		-ms-transform: translateY(.8rem);
		transform: translateY(.8rem);;
	}
	.menu-button i:after{
		-webkit-transform: translateY(-.8rem);
		-ms-transform: translateY(-.8rem);
		transform: translateY(-.8rem);
	}
}


/*-------------------------------
	SP専用
-------------------------------*/
@media screen and (max-width:768px) , print{

	/* 14px 1.4rem; */
	/*-------------------------------
		基本設定
	-------------------------------*/

	html{
		font-size: 2.544529262vw;
	}
	body{
		min-width: 100%;
		font-size: 1.4rem;
	}




	/*-------------------------------
		ヘッダー
	-------------------------------*/

	.header{
	}

	/*----- ナビ */
	.header-nav{
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		width: 84.7vw;
		height: 100vh;
		padding: 10rem 2.4rem 4rem;
		background: #fff;
		box-shadow: -.4rem 0 1.2rem rgba(0, 0, 0, 0.1);
		transform: translateX(100%);
		transition: transform .3s ease;
		pointer-events: none;
		overflow-y: auto;
		z-index: 950;
	}
	.header-nav.is-open{
		transform: translateX(0);
		pointer-events: auto;
	}
	.header-nav__inner{
		flex-direction: column;
		align-items: flex-start;
		gap: 2.4rem;
	}
	.header-nav__item{
		width: 100%;
	}
	.header-nav__item a{
		display: block;
		font-size: 1.6rem;
		text-align: left;
	}
	.header-nav__item--contact a{
		width: 100%;
		height: 4.8rem;
		font-size: 1.6rem;
	}

	/*----- ハンバーガー */
	.menu-button {
		width: 2.5rem;
		height: 2.2rem;
		/* padding: 2rem 3rem; */
		box-sizing: border-box;
		display: block !important;
		z-index: 9900;
		cursor: pointer;
		/* background: #3C3C3C; */
		/* background: #fff; */
		position: fixed;
		right: 4rem;
		top: 2.6rem;
	}
	.menu-button i{
		display: block;
		width: 100%;
		height: .2rem;
		background: #000;
		-webkit-transition: background 0.5s;
		transition: background 0.5s;
		position: relative;
		left: 0px;
		top: .8rem;
	}
	.menu-button i:before,
	.menu-button i:after{
		content: "";
		display: block;
		width: 100%;
		height: .2rem;
		background: #000;
		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(.8rem);
		-ms-transform: translateY(.8rem);
		transform: translateY(.8rem);;
	}
	.menu-button i:after{
		-webkit-transform: translateY(-.8rem);
		-ms-transform: translateY(-.8rem);
		transform: translateY(-.8rem);
	}
	*:before,
	*:after{
		padding: 0;
		margin: 0;
		line-height: 1;
	}
	.is_open i{
		background: transparent;
	}
	.is_open i:after{
		background: #fff;
		transform:translateY(0px) rotate(-45deg);
	}
	.is_open i:before{
		background: #fff;
		transform:translateY(0px) rotate(45deg);
	}


	/*-------------------------------
		サブページ
	-------------------------------*/

	/*----- キービジュアル */
	.keyvisual{
	}



	/*-------------------------------
		フッター
	-------------------------------*/

	.footer{
	}


	/*-------------------------------
		パーツ
	-------------------------------*/

	/*----- 見出し */
	.sec-title{
	}
	.sec-subtitle{
	}

}



.pc {
	display: block;
  }
  .sp {
	display: none;
  }
  @media screen and (max-width: 768px), print {
	.pc {
	  display: none;
	}
	.sp {
	  display: block;
	}
  }
  
