@charset "utf-8";

.drawer_menu a {
	color: inherit;
	text-decoration: none;
}

.drawer_menu a:visited {
	color: inherit;
}


/* PC用ナビゲーション */

.drawer_menu .drawer_nav_wrapper {
	transform: translate(0);
	width: 100%;
	height: 50px;
	/* PC用メニュー高さ */
	position: relative;
	top: 0px;
	right: auto;
	z-index: 100;
//	z-index: 1;
	background-color: #cef;
	/* PC用メニュー背景色 */
}

.drawer_menu .drawer_nav {
//        max-width: 680px; /* 最大幅 */
        max-width: 700px; /* 最大幅 */
	/* コンテンツ幅に合わせる */
	padding: 0;
        margin-left:auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	list-style-type: none;
}
.drawer_menu .drawer_nav dev { width: 100%; }

.drawer_menu .drawer_nav li {
	font-size: 38px;
	margin: 0;
	padding: 0;
	width: 80%;
	height: 50px;
	/* PC用メニュー高さ */
	line-height: 50px;
	/* PC用メニュー高さ */
/	/* PC用メニューボタン背景色 */
	text-align: center;
	list-style-type: none;
        border: 2px solid;
        border-radius: 8px;
}

.drawer_menu .drawer_nav li:hover {
	background-color: #fe4;
	/* PC用メニューボタンマウスオーバー背景色 */
}

.drawer_menu .drawer_nav li a {
	color: #000;
	/* PC用メニューボタン文字色 */
}


/* PC非表示 */

@media screen and (min-width:1001px) {
	.pc-hidden {
		display: none;
		text-align: center;
//		text-align: left;
	}
}

@media screen and (min-width: 1001px) {

	/* ドロップダウンメニュー2階層目 */
	.drawer_menu .drawer_nav li ul.second-level {
		visibility: hidden;
		list-style-type: none;
		position: absolute;
		z-index: -1;
		top: 0;
		margin: 0;
		padding-left: 0;
	}

	.drawer_menu .drawer_nav li:hover ul.second-level {
		visibility: visible;
		z-index: 1;
		top: 50px;
		/* PC用メニューの高さに合わせる */
		transition: all .3s;
	}

	.drawer_menu .drawer_nav li:hover ul.second-level li {
		width: 170px;
		/* ドロップダウンメニューボタン横幅 */
		height: 50px;
		/* Pドロップダウンメニューボタン高さ */
		text-align: center;
	}

	.drawer_menu .drawer_nav li:hover ul.second-level li a {
		display: block;
		background-color: #ffe;
		/* ドロップダウンメニューの文字の背景色 */
		color: #000;
		/* ドロップダウンメニューの文字色 */
		font-size: 100%;
		text-decoration: none;
		line-height: 50px;
		/* Pドロップダウンメニューボタン高さ */
		text-align: center;
        border: 2px solid;
        border-radius: 8px;
	}

	.drawer_menu .drawer_nav li:hover ul.second-level li a:hover {
		background-color: #fe4;
		/* ドロップダウンメニューマウスホバー背景色 */
	}

	.touch-btn {
		color: #fff;
		margin-left: 5px;
	}
}

/*+++ Default Button Color +++*/

.drawer_menu .drawer_button {
	color: #fff;
	/* ハンバーガーメニュー文字色 */
	display: none;
}

.drawer_menu .drawer_button .drawer_bar {
	background-color: #fff;
	/* ハンバーガーメニュー三本線の色 */
}


/* 1000px以下 */

@media screen and (max-width: 1000px) {
	.drawer_menu .drawer_bg {
		width: 100%;
		height: 100%;
		position: fixed;
		z-index: 999;
		background-color: rgba(243, 255, 252, 0.5);
//		background-color: rgba(64, 255,192, 0.5);
		display: none;
	}

	.drawer_menu .drawer_button {
		display: block;
		background-color: #555;
//		background-color: #fc4;
		color: #fff;
		border: none;
		padding: 5px;
		height:160px;
		width:120px;
		letter-spacing: 0.1em;
		cursor: pointer;
		position: fixed;
		top: 20px;
//		right: 15px;
		right: 65px;
		z-index: 1001;
		text-align: center;
		outline: none;
	}

	.drawer_menu .drawer_button.active .drawer_bar {
		width: 125px;
	}

	.drawer_menu .drawer_button.active .drawer_bar1 {
		transform: rotate(31deg);
	}

	.drawer_menu .drawer_button.active .drawer_bar2 {
		opacity: 0;
	}

	.drawer_menu .drawer_button.active .drawer_bar3 {
		transform: rotate(-31deg);
	}

	.drawer_menu .drawer_button.active .drawer_menu_text {
		display: none;
                //widht:680px;
                widht:700px;
	}

	.drawer_menu .drawer_button.active .drawer_close {
		display: block;
	}

	.drawer_menu .drawer_bar {
		display: block;
//		height: 2px;
		height: 2px;
		margin: 29px 2px;
		transition: all 0.2s;
		transform-origin: 0 0;
	}

	.drawer_menu .drawer_text {
		text-align: center;
		font-size: 16px;

	}

	.drawer_menu .drawer_close {
		letter-spacing: 0.08em;
		display: none;
	}

	.drawer_menu .drawer_menu_text {
                //top:5px;
		display: block;
	}

	.drawer_menu .drawer_nav_wrapper {
		width: 700px;
		height: 300%;
		transition: all 0.2s;
		transform: translate(700px);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
//		background-color: #cef;
		background-color: #cef;
		/* ドロワーメニュー内背景色 */
	font-size: 32px;
		overflow-x: hidden;
		overflow-y: auto;
	}

	.drawer_menu .drawer_nav {
		display: block;
		position: relative;
//		margin-top: 40px;
		margin-top: 5px;
	}

	.drawer_menu .drawer_nav li {
		background-color: #acd;
		height: auto;
//		line-height: 50px;
		line-height: 100px;
		/*  ドロワーメニューリスト項目高さ */
		position: relative;
		border-bottom: 1px solid #eee;
	}

	.drawer_menu .drawer_nav li a {
		display: block;
		text-align: left;
		padding-left: 40px;
                border: 2px solid;
                border-radius: 8px;
	}

	/* スマートフォン2階層目 */
	.drawer_menu .drawer_nav li:hover ul.second-level {
		display: block;
		//width: 690px;
		width: 700px;
	}

	.drawer_menu .drawer_nav li ul.second-level {
		display: none;
		position: relative;
		padding: 0;
		z-index: 1001;
	}

	.drawer_menu .drawer_nav li ul.second-level li a {
		padding-left: 20px;
//		background-color: #ffe;
		background-color: #fff;
		/* ドロワーメニューリスト背景色 */
		color: #000;
		/* ドロワーメニューリスト文字色 */
	}

	.drawer_menu .drawer_nav_wrapper.open {
		transform: translate(0);
	}

	.drawer_menu.left .drawer_button {
		right: auto;
		left: 32px;
	}

	.drawer_menu.left .drawer_nav_wrapper {
		transform: translate(-350px);
		right: auto;
		left: 0;
	}

	.drawer_menu.left .drawer_nav_wrapper.open {
		transform: translate(0);
	}

	.pc-hidden {
		text-align: center;
	}

	.touch-btn {
		color: #555;
//		color: #fc4;
		position: absolute;
		top: .25rem;
		right: 2%;
		display: block;
		z-index: 10;
		width: 50px;
		height: 50px;
		text-align: center;
		vertical-align: middle;
	}
}

.pc-hidden .profile-icon {
	float: none;
}

.PosWeRunCss{
	width: 120px;
	height: 60px;
	top: 30px;
	left: 40px;
	font-size: 20px;
	font-family: "Microsoft JhengHei";
	font-weight: normal;
	position: absolute;
	visibility: hidden;
}

.PosWeWhyCss{
	width: 120px;
	height: 60px;
	top: 30px;
	left: 120px;
	font-size: 20px;
	font-family: "Microsoft JhengHei";
	font-weight: normal;
	position: absolute;
	visibility: hidden;
}

.PosWeAdrCss{
	width: 120px;
	height: 60px;
	top: 30px;
	left: 240px;
	font-size: 20px;
	font-family: "Microsoft JhengHei";
	font-weight: normal;
	position: absolute;
	visibility: hidden;
}

.PosWeConCss{
	width: 120px;
	height: 60px;
	top: 30px;
	left: 340px;
	font-size: 20px;
	font-family: "Microsoft JhengHei";
	font-weight: normal;
	position: absolute;
	visibility: hidden;
}

.PosWeHopCss{
	width: 240px;
	height: 60px;
	top: 30px;
	left: 440px;
	font-size: 20px;
	font-family: "Microsoft JhengHei";
	font-weight: normal;
	position: absolute;
	visibility: hidden;
}

.PosWeCon2Css{
	width: 240px;
	height: 60px;
	top: 30px;
	left: 440px;
	font-size: 20px;
	font-family: "Microsoft JhengHei";
	font-weight: normal;
	position: absolute;
	visibility: hidden;
}

.PosWeCon2Css2{
	width: 240px;
	height: 60px;
	top: 30px;
	left: 440px;
	font-size: 20px;
	font-family: "Microsoft JhengHei";
	font-weight: normal;
	position: absolute;
	visibility: hidden;
}
a:link {
	/*?A?N?Z?X????????????????N*/
	color: #000000;
}

a:visited {
	/*?A?N?Z?X???????????郊???N*/
	color: #000000;
}

a:hover {
	/*?}?E?X??????????????*/
	color: #0000ff;
}

.menuCss{
	width: 999px;
	height: 30px;
	top: 1300px;
	left: 00px;
	position: absolute;
	visibility: hidden;
}

.menu_disp_p{
        display:none;
}

.menu_disp{
        display:block;
}