@charset "UTF-8";

html, body, div, input, select, tr, td, p, ul, li, h1, h2, h3, h4, h5, h6, h7, dl, dt, dd {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

body, html {
	height: 100%;
	font-size: 62.5%;
}

body {
	line-height: 1.0;
	font-family: "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
	color: #333333;
	font-size: 1.4rem;
}

div {
	box-sizing: border-box;
}

.wrap {
	min-height: 100%;
	height: 100%;
}

.content {
	position: relative;
}

header {
	position: relative;
	height: 58px;
	background-color: #ffffff;
	border-bottom: 1px solid #cccccc;
	margin-bottom: -58px;
	z-index: 50;
	box-sizing: border-box;
}

header .content {
	width: 100%;
	height: 100%;
}

header .content .grid {
	/*display: grid;*/
	width: 100%;
	height: 100%;
	/*grid-template-columns: 150px 1fr 150px;*/
	position: relative;
}

header .content .grid > div {
	height: 100%;
}

header .content .grid .header-logo {
	position: relative;
	float: left;
	width: 150px;
	margin-right: -150px;
	z-index: 60;
}

header .content .grid .header-title {
	position: relative;
	float: left;
	width: 100%;
}

header .content .grid .header-menu {
	position: relative;
	float: right;
	width: 250px;
	margin-left: -250px;
	z-index: 60;
	text-align: right;
}

header .content .grid .header-menu > div {
	display: inline-block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

header .logo {
	position: relative;
	height: 48px;
	top: 50%;
	transform: translateY(-50%);
}

header h1 {
	position: relative;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
}

.user-name-nav {
	float: right;
}

.user-name-nav .login-user {
	cursor: pointer;
}

.user-name-nav .user-menu {
	display: none;
	position: absolute;
	z-index: 1000;
	right: 0px;
}

.user-name-nav .user-menu ul {
	width: 300px;
	color: #333333;
}

.user-name-nav .user-menu li {
	height: 48px;
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	line-height: 46px;
	padding-left: 20px;
	padding-right: 20px;
	background-color: #fcfcfc;
	text-align: left;
}

.user-name-nav .user-menu li a {
	color: #333333;
	text-decoration: none;
}

.user-name-nav .user-menu li + li {
	margin-top: -1px;
}

.user-menu-back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 49;
	background-color: rgba(0, 0, 0, 0.2);
}

.wrap > .content {
	position: relative;
	width: 100%;
	height: 100%;
	/*padding-top: 58px;
	z-index: 1;*/
}

.content-wide {
	position: relative;
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	/*padding-top: 58px;
	z-index: 1;*/
}

/*
 * マテリアルアイコン
 */
@font-face {
	font-family: 'Material Icons';
	font-style: normal;
	font-weight: 400;
	src: local('Material Icons'),
		local('MaterialIcons-Regular'),
		url(/css/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;  /* Preferred icon size */
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	vertical-align: middle;

	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;

	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;

	/* Support for IE. */
	font-feature-settings: 'liga';
}

.material-icons.md-dark {
	color: rgba(0, 0, 0, 0.54);
}

.material-icons.md-dark.md-inactive {
	color: rgba(0, 0, 0, 0.26);
}

.material-icons.md-light {
	color: rgba(255, 255, 255, 1);
}

.material-icons.md-light.md-inactive {
	color: rgba(255, 255, 255, 0.3);
}

/*
 * ローディング表示
 */
.loading_wrap {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 50000;
}

.loading_back {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 0;
	background-color: rgba(0, 0, 0, 0.2);
}

.loading {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -111px;
	margin-top: -30px;
	z-index: 1;
}

/*
 * モーダル
 */
.modal-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20000;
	overflow: hidden;
}

.modal-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20000;
}

.modal-wrap .modal-back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

.modal-wrap .modal-wnd-wrap {
	position: relative;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: 90%;
	max-height: 90%;
}

.modal-wrap .modal-wnd {
	background-color: #ffffff;
	width: 100%;
	height: 100%;
	-webkit-overflow-scrolling: touch;
	overflow: auto;
}

.modal-wrap .modal-wnd iframe {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border-style: none;
}

.modal-wrap .modal-wnd-wrap .modal-close {
	position: absolute;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	border-radius: 15px;
	color: #ffffff;
	background-color: #333333;
	top: -15px;
	right: -15px;
	cursor: pointer;
	z-index: 20100;
}

/*
 * ボタン
 */
button {
	width: 110px;
	height: 44px;
	border: 1px solid #333333;
	border-radius: 2px;
	background-color: #ffffff;
	font-size: 1.4rem;
	line-height: 24px;
	color: #333333;
	vertical-align: middle;
	cursor: pointer;
	box-shadow: 0px 2px 1px rgba(51, 51, 51, 0.6);
	overflow: hidden;
}

button:active {
	position: relative;
	top: 2px;
	box-shadow: none;
}

button > span {
	position: relative;
}

button i.material-icons {
	vertical-align: bottom;
	margin-right: 3px;
}

button.orange {
	border-color: #d56600;
	background-color: #f55509;
	color: #ffffff;
}

@media screen and (max-width: 479px){
	body {
		min-width: 320px;
	}
	
	.login-user.pc {
		display: none;
	}
	
	header .header-logo {
		padding-left: 10px;
	}
	
	header .header-title h1 {
		font-size: 20px;
	}
	
	header .header-menu {
		padding-right: 10px;
	}
}

@media screen and (min-width: 480px){
	body {
		font-size: 1.4rem;
		min-width: 960px;
	}

	.content {
		width: 100%;
	}
	
	.wrap > .content {
		width: 960px;
		margin-left: auto;
		margin-right: auto;
	}
	
	header .content {
		width: 960px;
		margin-left: auto;
		margin-right: auto;
	}
	
	header .header-title br {
		display: none;
	}
	
	.user-name-nav .user-menu ul {
		width: 180px;
	}
	
	.login-user.mobile {
		display: none;
	}
	
	.user-menu .user-name {
		display: none;
	}
	
	button {
		height: 38px;
	}
}