@charset "UTF-8";
/* CSS Document */


/******************************************************

PC設定 961px以上の場合に適用 

*******************************************************/

.drawerNav { 
	display: none; /* ドロワーナビは非表示 */
	}


/******************************************************

タブレットの設定 768px〜960pxの場合に適用 

*******************************************************/

@media screen and (max-width: 960px){

.drawerNav {
	display: block; /* ドロワーナビを表示する */
    width: 100%;
    height: 0;
    position: fixed;
	top: 0;
    z-index: 9900;
    background-color: #FFF;
	}

.drawerNav__btn { /* トグルボタンのクリッカブルエリア */
	position: fixed;
	right: 0;
	top: 0;
	background: #1c447a;
	width: 80px;
	height: 80px;
	z-index: 9300;
	border-radius: 0;
	}

.drawerNav__btn:hover { /* トグルボタンのホバー時はカーソルが変わる */
	cursor: pointer;
	}

.drawerNav__btnIcon { /* トグルボタンのアイコン(ハンバーガー) */
	width: 36px;
	height: 2px;
	background: #FFF;
	position: relative;
	display: block;
	top: 40px;
	left: 22px;
	}

.drawerNav__btnIcon::before { /* トグルボタンのアイコン(ハンバーガー)の上の線 */
	content: '';
	width: 36px;
	height: 2px;
	background: #FFF;
	display: block;
	position: absolute;
	top: 11px;
	transition: .2s;
	-webkit-transition: .2s;
	}

.drawerNav__btnIcon::after { /* トグルボタンのアイコン(ハンバーガー)の下の線 */
	content: '';
	width: 36px;
	height: 2px;
	background: #FFF;
	display: block;
	position: absolute;
	top: -11px;
	transition: .2s;
	-webkit-transition: .2s;
	}
	
.openBtn .drawerNav__btnIcon::after { /* トグルボタンのアイコン(ハンバーガー/クリック後)の上の線 */
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 0; 
	}

.openBtn .drawerNav__btnIcon::before { /* トグルボタンのアイコン(ハンバーガー/クリック後)の下の線 */
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 0; 
	}

.openBtn .drawerNav__btnIcon { /* トグルボタンをクリックすると真ん中の線は消える */
	background-color: transparent;
	}

.drawerNav__content.open { /* トグルボタンをクリックするとナビゲーションが表示される */
	display: block;
	}
	
.drawerNav__content { /* ドロワーナビの中身(クリックして表示されるもの) */
	display: none;
	width: 100%;
	height: calc(100vh - 80px);
	position: fixed;
	top: 80px;
	margin: auto;
	z-index: 1000;
	background-color: #FFF;
	}

.drawerNav__box {
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	padding-top: 50px;
	}

.drawerNav__item { /* ドロワーナビの中身(1行ごとの設定) */
	border-top: 1px solid #EEE;
	width: 90%;
	margin: 0 auto;
	}
	
.drawerNav__item:last-child {
	border-bottom: 1px solid #EEE;
	}

.drawerNav__link { /* ドロワーナビの中身(1行ごとのリンク設定) */
	padding-left: 20px;
	font-size: 16px;
	font-weight: 600;
	height: 60px;
	line-height: 60px;
	display: block;
	}

.drawerNav__link:hover {
	color: #1c447a;
	}

.parent {
	position: relative;
	}

.accordionBtn {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	z-index: 9890;
	transition: .3
	}
	
.accordionBtn:hover {
	cursor: pointer;	
	}

.accordionBtnIcon::before {
	content: '';
	background: #1c447a;
	width: 21px;
	height: 3px;
	display: block;
	position: absolute;
	top: 26px;
	left: 22px;
	}

.accordionBtnIcon::after {
	content: '';
	background: #1c447a;
	width: 3px;
	height: 21px;
	display: block;
	position: absolute;
	top: 17px;
	left: 31px;
	}

.openAccordionBtn .accordionBtnIcon::after {
	display: none;
	}
	
.children {
	width: 100%;
	margin: 0 auto;
	padding-bottom: 15px;
	display: none;
	}

.children li {
	background: #F7F7F7;
	margin: 0 auto 2px auto;
	}
	
.children li a {
	font-size: 16px;
	display: block;
	width: 100%;
	height: 55px;
	line-height: 55px;
	padding-left: 20px;
	transition: .2s;
	-webkit-transition: .2s;
	}
	
.children li a:hover {
	color: #1c447a;
	}


}




/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

@media screen and (max-width: 767px){
	

.drawerNav__btn { /* トグルボタンのクリッカブルエリア */
	width: 60px;
	height: 60px;
	}

.drawerNav__btn:hover { /* トグルボタンのホバー時はカーソルが変わる */
	cursor: pointer;
	}

.drawerNav__btnIcon { /* トグルボタンのアイコン(ハンバーガー) */
	width: 20px;
	height: 1px;
	top: 30px;
	left: 20px;
	}

.drawerNav__btnIcon::before { /* トグルボタンのアイコン(ハンバーガー)の上の線 */
	width: 20px;
	height: 1px;
	top: 7px;
	}

.drawerNav__btnIcon::after { /* トグルボタンのアイコン(ハンバーガー)の下の線 */
	width: 20px;
	height: 1px;
	top: -7px;
	}
	
.drawerNav__content {
	top: 60px;
	}

.drawerNav__box {
	padding-top: 30px;
	}
	
.drawerNav__logo {
	top: 20px;
	left: 20px;
	height: 30px;
}

.drawerNav__item { /* ドロワーナビの中身(1行ごとの設定) */
	width: 90%;
	margin: 0 auto;
	}

.drawerNav__link { /* ドロワーナビの中身(1行ごとのリンク設定) */
	padding-left: 15px;
	font-size: 14px;
	font-weight: bold;
	height: 50px;
	line-height: 50px;
	display: block;
	}

.accordionBtn {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 50px;
	}

.accordionBtn:hover {
	cursor: pointer;
	}

.accordionBtnIcon::before {
	width: 15px;
	height: 1px;
	display: block;
	position: absolute;
	top: 25px;
	left: 7px;
	}
	
.accordionBtnIcon::after {
	width: 1px;
	height: 15px;
	display: block;
	position: absolute;
	top: 18px;
	left: 14px;
	}

.drawerNav .children {
	padding-bottom: 10px;
	}
	
.children li {
	background: #F7F7F7;
	margin: 0 auto 3px auto;
} 

.children li a {
	font-size: 14px;
	display: block;
	padding-left: 15px;
}

}