/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 24 2025 | 04:39:05 */
/* チェックボックスを非表示にする */
.drawer_hidden {
  	display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  	display: flex;
  	height: 60px;
  	width: 60px;
  	justify-content: center;
  	align-items: center;
  	position: relative;
  	z-index: 100;/* 重なり順を一番上にする */
  	cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  	content: '';
  	display: block;
  	height: 3px;
  	width: 25px;
  	border-radius: 3px;
  	background: #333;
  	transition: 0.5s;
  	position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  	bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  	top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  	background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  	bottom: 0;
  	transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  	top: 0;
  	transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
	width: 100%;
  	height: 100%;
  	position: fixed;
  	top: 60px;
  	left: 100%; /* メニューを画面の外に飛ばす */
  	z-index: 99;
  	background: #fff;
  	transition: .5s;
	padding-top: 50px;
}

/* メニュー黒ポチを消去 & メニューの文字 */
.nav_list{
  	list-style: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 50px;
	padding-left: 0!important;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  	left: 0;/* メニューを画面に入れる */
}

/* 訪問済みリンク色 */
div.elementor-widget.elementor-widget-html nav > ul > li > a:visited {
	color: #CC3366 !important;
}