#loader {
	width: 100%;
	height: 100%;
	margin: 0;
	background: #fff;
	opacity: 1.0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
}
#loader img {
	width: 250px;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}
#wrapper.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;   /* 必要に応じて */
  z-index: 9999; /* 他の要素より上に */
}
.content{
	width: 1040px;
	margin: 0 auto;
}
.btn{
	background: #000;
	color: #fff;
	width: 300px;
	line-height: 70px;
	border-radius: 35px;
	text-align: center;
	font-size: 16px;
	margin: 80px auto 0;
}
.btn a{
	display: block;
	color: #fff;
}
#page-top {
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 100px;
	right: 100px;
	z-index: 9999;
}
#page-top img {
	width: 50px;
	height: 50px;
	object-fit: cover;
}
#page-top a {
	display: block;
}
header{
	width: 100%;
	height: 84px;
	position: fixed;
	top: 0;
	min-width: 1380px;
	z-index: 999;
	transition: .5s;
}
header.scrolled{
	background: #fff;
}
#headerInner{
	display: flex;
	justify-content: space-between;
}
#headerInner_logo{
	margin-left: 60px;
	margin-top: 10px;
}
#headerInner_logo img{
	display: none;
	transition: .5s;
}
header.scrolled #headerInner_logo img{
	display: block;
}
#headerInner_nav #nav{
}
#headerInner_nav #nav ul{
	display: flex;
	align-items: center;
	margin: 20px 0;
	padding-right: 140px;
}
#headerInner_nav #nav ul li{
	padding: 0 10px;
	font-size: 15px;
}
#headerInner_nav #nav ul li a{
	font-weight: 400;
	color: #fff;
	transition: .5s;
}
header.scrolled #headerInner_nav #nav ul li a{
	color: #51524a;
}
#headerInner_nav #nav ul li.sns{
	font-size: 30px;
	font-weight: 200;
}
#header_drawer_nav{
	
}
#drawer_nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-581px;
    left: 0;
	width:100%;
    height: 580px;/*ナビの高さ*/
	background: rgba(112,112,113,.8);
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#drawer_nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#drawer_nav-list{
	margin: 40px 0 40px;
}
#drawer_nav-list ul{
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
}
#drawer_nav-list ul li{
	width: 222px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background: #fff;
	border: 1px solid #51524a;
	margin-bottom: 30px;
}
#drawer_nav-list ul li a{
	display: block;
	font-size: 16px;
	color: #51524a;
	letter-spacing: .1em;
}
#drawer_nav ul li a:hover{
	opacity: 0.7;
}
#header_drawer_navInner{
	width: 1200px;
	margin: 60px auto ;
}
#drawer_nav_logo{
	width: 150px;
	margin: 0 auto;
}
#drawer_nav_logo img{
	width: 150px;
	object-fit: cover;
}

#drawer_navInner_sns{
	text-align: center;
	font-size: 30px;
}
#drawer_navInner_sns a{
	color: #fff;
}
/*========= ボタンのためのCSS ===============*/
.drawer_nav_openbtn{
	position:absolute;
    z-index: 9999;/*ボタンを最前面に*/
	top: 50%;
	right: 60px;
	transform: translateY(-50%);
	cursor: pointer;
    width: 30px;
    height:20px;
	display: block;
}
  
/*×に変化*/  
.drawer_nav_openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    height: 2px;
	background: #fff;
    width: 30px;
	transition: .5s;
  }

header.scrolled .drawer_nav_openbtn span{
	background: #51524a;
}
.drawer_nav_openbtn span:nth-of-type(1) {
  top:0; 
}

.drawer_nav_openbtn span:nth-of-type(2) {
  top:10px;
}

.drawer_nav_openbtn span:nth-of-type(3) {
  top:20px;
}

.drawer_nav_openbtn.active span:nth-of-type(1) {
	top: 10px;
	-webkit-transform: rotate(140deg);
	-moz-transform: rotate(140deg);
	transform: rotate(140deg);
}

.drawer_nav_openbtn.active span:nth-of-type(2){
	top: 10px;
	-webkit-transform: rotate(-140deg);
	-moz-transform: rotate(-140deg);
	transform: rotate(-140deg);
}

.drawer_nav_openbtn.active span:nth-of-type(3) {
	width: 0;
}

input::placeholder {
    color: #C4C4C4; /* 好きな色に変更 */
}
/* 固定ヘッダーのスタイル */
.header-navFixed {
  background-color: #8484ff; /* 背景色 */
  color: #fff; /* テキスト色 */
  position: fixed; /* 固定 */
  top: -84px; /* ヘッダーの高さ分上にする(隠す) */
  transition: top .5s; /* アニメーション効果を追加 */
  width: 100%; /* 幅を100%に */
	z-index: 100;
}

/* 固定ヘッダーが表示されたときのスタイル */
#js-header.is-show {
  top: 0; /* 隠していたヘッダーを表示 */
}

#footer_contact{
	background: #51524a;
	padding: 50px 0;
}
#footer_contact .block{
	display: flex;
	justify-content: space-around;
	align-items: center;
}
#footer_contact .block .box{
	color: #fff;
}
#footer_contact .block .box h5{
	font-size: 20px;
	margin-bottom: 10px;
}
#footer_contact .block .box .btn{
	margin: 0 auto;
}
.footer_nav{
	margin: 20px 0;
}
.footer_nav ul{
	display: flex;
	justify-content: center;
}
.footer_nav ul li{
	padding: 0 10px;
}
.footer_nav ul li a{
	color: inherit;
}
.footer_sns{
	margin: 60px 0;
}
.footer_sns ul{
	display: flex;
	justify-content: center;
}
.footer_sns ul li{
	padding: 0 20px;
	font-size: 30px;
}
.footer_sns ul li a{
	color: inherit;
}
p.copy{
	font-size: 12px;
	text-align: center;
}
@media screen and (max-width:640px){
	#wrapper.fixed {
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100%;   /* 必要に応じて */
	  z-index: 9999; /* 他の要素より上に */
	}
	.content{
		width: 580px;
		margin: 0 auto;
	}
	.btn{
		background: #000;
		color: #fff;
		width: 480px;
		line-height: 80px;
		border-radius: 40px;
		text-align: center;
		font-size: 20px;
		margin: 80px auto 0;
	}
	.btn a{
		display: block;
		color: #fff;
	}
	#page-top {
		width: 70px;
		height: 70px;
		position: fixed;
		bottom: 50px;
		right: 50px;
		z-index: 9999;
	}
	#page-top img {
		width: 70px;
		height: 70px;
		object-fit: cover;
	}
	#page-top a {
		display: block;
	}
	header{
		width: 100%;
		height: 84px;
		position: fixed;
		top: 0;
		min-width: 640px;
		z-index: 999;
		transition: .5s;
	}
	header.scrolled{
		background: #fff;
	}
	#headerInner{
		display: flex;
		justify-content: space-between;
	}
	#headerInner_logo{
		margin-left: 40px;
		margin-top: 10px;
	}
	#headerInner_logo img{
		display: none;
		transition: .5s;
	}
	header.scrolled #headerInner_logo img{
		display: block;
	}
	#headerInner_nav #nav{
	}
	#headerInner_nav #nav ul{
		display: flex;
		align-items: center;
		margin: 20px 0;
		padding-right: 80px;
	}
	#headerInner_nav #nav ul li{
		padding: 0 10px;
		font-size: 19px;
	}
	#headerInner_nav #nav ul li a{
		font-weight: 400;
		color: #fff;
		transition: .5s;
	}
	header.scrolled #headerInner_nav #nav ul li a{
		color: #51524a;
	}
	#headerInner_nav #nav ul li.sns{
		font-size: 30px;
		font-weight: 200;
	}
	#header_drawer_nav{

	}
	#drawer_nav{
		/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
		position:fixed;
		z-index: 999;
		/*ナビのスタート位置と形状*/
		top:-100vh;
		left: 0;
		width:100%;
		height: 100vh;/*ナビの高さ*/
		background: rgba(112,112,113,.8);
		/*動き*/
		transition: all 0.6s;
	}

	/*アクティブクラスがついたら位置を0に*/
	#drawer_nav.panelactive{
		top: 0;
	}

	/*ナビゲーションの縦スクロール*/
	#drawer_nav-list{
		margin: 40px 0 40px;
	}
	#drawer_nav-list ul{
		display: flex;
		flex-wrap: wrap;
		column-gap: 16px;
	}
	#drawer_nav-list ul li{
		width: 280px;
		height: 60px;
		line-height: 60px;
		text-align: center;
		background: #fff;
		border: 1px solid #51524a;
		margin-bottom: 30px;
	}
	#drawer_nav-list ul li a{
		display: block;
		font-size: 20px;
		color: #51524a;
		letter-spacing: .1em;
	}
	#drawer_nav ul li a:hover{
		opacity: 0.7;
	}
	#header_drawer_navInner{
		width: 580px;
		margin: 60px auto ;
	}
	#drawer_nav_logo{
		width: 150px;
		margin: 0 auto;
	}
	#drawer_nav_logo img{
		width: 150px;
		object-fit: cover;
	}

	#drawer_navInner_sns{
		text-align: center;
		font-size: 34px;
	}
	#drawer_navInner_sns a{
		color: #fff;
	}
	/*========= ボタンのためのCSS ===============*/
	.drawer_nav_openbtn{
		position:absolute;
		z-index: 9999;/*ボタンを最前面に*/
		top: 50%;
		right: 40px;
		transform: translateY(-50%);
		cursor: pointer;
		width: 30px;
		height:20px;
		display: block;
	}

	/*×に変化*/  
	.drawer_nav_openbtn span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 0;
		height: 2px;
		background: #fff;
		width: 30px;
		transition: .5s;
	  }

	header.scrolled .drawer_nav_openbtn span{
		background: #51524a;
	}
	.drawer_nav_openbtn span:nth-of-type(1) {
	  top:0; 
	}

	.drawer_nav_openbtn span:nth-of-type(2) {
	  top:10px;
	}

	.drawer_nav_openbtn span:nth-of-type(3) {
	  top:20px;
	}

	.drawer_nav_openbtn.active span:nth-of-type(1) {
		top: 10px;
		-webkit-transform: rotate(140deg);
		-moz-transform: rotate(140deg);
		transform: rotate(140deg);
	}

	.drawer_nav_openbtn.active span:nth-of-type(2){
		top: 10px;
		-webkit-transform: rotate(-140deg);
		-moz-transform: rotate(-140deg);
		transform: rotate(-140deg);
	}

	.drawer_nav_openbtn.active span:nth-of-type(3) {
		width: 0;
	}

	input::placeholder {
		color: #C4C4C4; /* 好きな色に変更 */
	}
	/* 固定ヘッダーのスタイル */
	.header-navFixed {
	  background-color: #8484ff; /* 背景色 */
	  color: #fff; /* テキスト色 */
	  position: fixed; /* 固定 */
	  top: -84px; /* ヘッダーの高さ分上にする(隠す) */
	  transition: top .5s; /* アニメーション効果を追加 */
	  width: 100%; /* 幅を100%に */
		z-index: 100;
	}

	/* 固定ヘッダーが表示されたときのスタイル */
	#js-header.is-show {
	  top: 0; /* 隠していたヘッダーを表示 */
	}

	#footer_contact{
		background: #51524a;
		padding: 50px 0;
	}
	#footer_contact .block{
		display: block;
		justify-content: space-around;
		align-items: center;
	}
	#footer_contact .block .box{
		color: #fff;
	}
	#footer_contact .block .box h5{
		font-size: 24px;
		margin-bottom: 10px;
	}
	#footer_contact .block .box .btn{
		margin: 40px auto 0;
	}
	.footer_nav{
		margin: 20px 0;
	}
	.footer_nav ul{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.footer_nav ul li{
		padding: 10px;
	}
	.footer_nav ul li a{
		color: inherit;
	}
	.footer_sns{
		margin: 60px 0;
	}
	.footer_sns ul{
		display: flex;
		justify-content: center;
	}
	.footer_sns ul li{
		padding: 0 20px;
		font-size: 34px;
	}
	.footer_sns ul li a{
		color: inherit;
	}
	p.copy{
		font-size: 16px;
		text-align: center;
	}

	
}