/*
/*
/*		スマホ用の「トップページ以外」のcss
/*		ヘッダーが細長い。右上にハンバーガーボタンあり、追尾する。
/*
/*	*/

html {
	font-size:100%;
}

body { 
	width:100%;
	margin:0px;
	font-family: 'メイリオ' , sans-serif; 
	-webkit-text-size-adjust: 100%;
}
/* スマホの時に非表示にするもの（サイドバー） */
.sidebar { display: none !important; }
.pc_logo { display: none !important; }


.header {	/* スマホ用のヘッダ */
	font-size:120%;
	text-align:center;
	height:35%;
	padding: 1em;
	margin:		0;
	color:#ffffff;
	background-color: #00203a;
}

.container {	/* コンテンツの中身 */
	font-size:95%;
	
}

footer{	/* スマホ用フッタ */
	height: 50%;
	padding : 0em;
	font-size: 70%;
	text-align: center;
	background-color:#00203a;
	color: #ffffff;
	margin-top: 0;
}


/*
/*	ここから下はハンバーガーボタンのcss
/* */

/* ハンバーガーの中身のcss */

nav.globalMenuSp {
    position: fixed;
    z-index: 2;
	overflow-y: scroll;  
    top: 0;
    left: 0;
	right:0;
	bottom:0;
    background: #ffffff;
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;

}
 
nav.globalMenuSp ul {
    background: #ffffff;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
 
nav.globalMenuSp ul li {
    font-size: 1.1em;
	color: #00203a;
	font-size: 130%;
	font-weight: bold;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #333;
}

/* 現在アクセスしているページを黄色地に白文字で表示 */
div  li.active{
background:#ffa500;
color: #ffffff;
cursor:default;
}
li.active div.Nav_Title{
	color:white;
}

a{
	 text-decoration: none; 
}
 
/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    /*border-bottom: none; */
}
 
nav.globalMenuSp ul li a {
    display: block;
    color: #000;
    padding: 0.6em 0;
}
 
nav.globalMenuSp.active {
    transform: translateY(0%);		/* このクラスを、jQueryで付与・削除する */
}


/* ハンバーガーのボタン 3本線 */ 
.navToggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 13px;
    top: 12px;
    width: 42px;
    height: 47px;
	border-radius: 5px;
    cursor: pointer;
    z-index: 3;
    background: #00203a;
    text-align: center;
}
 
.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 30px;
    border-bottom: solid 3px #eee;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
}
 
.navToggle span:nth-child(1) {
    top: 7px;
}
 
.navToggle span:nth-child(2) {
    top: 16px;
}
 
.navToggle span:nth-child(3) {
    top: 25px;
}
 
.navToggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 32px;
}

/* ハンバーガーをタップしたあとのcss */

.navToggle.active span:nth-child(1) {	/* 最初のspanをマイナス45度に */
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 

.navToggle.active span:nth-child(2),	/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


#mainimg {
    display: none;
}

@media (orientation: portrait){
	nav.globalMenuSp ul {
    height:100%;
}
	