/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 24 2025 | 07:00:23 */
	
	/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */

header{
	position:fixed ; /* ヘッダーを固定する */
	top: 0; /* 上部から配置の基準位置を決める */
	left: 0; /* 左から配置の基準位置を決める */
	width: 100%;
	z-index:999;
	background-color:rgba(255,255,255,1);
	transition: 0.5s;	/* アニメーションの変化時間 */
}

header.scroll-nav{
	background-color:rgba(255,255,255,0.75);
}

	
body{
	margin-top:50px;
	}

/* 「scroll-navクラス」がヘッダーについたときに、ロゴとナビゲーションの文字を黒にする */
.scroll-nav .logo{
}