@charset "UTF-8";

html {
	font-size: 62.5%;
}

body {
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-font-smoothing: auto;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 1.3rem;
	line-height: 1.7;
	color: #3c3e43;
	background-color: #ffffff;
}

.wrapper {
	width: 90%;
	margin: 0 auto;
}



/* ----- リンク、ボタン ----- */
/* --------------------------------------------------------------------------- */

a {
	color: #0094f9;
	text-decoration: none;
	display: block;
}

a:hover {
	text-decoration: underline;
}


/* ナビボタン（ログアウト、前画面へ戻る） */
.btn-nav {
	border: 1px solid rgba(255, 255, 255, 0.00);
	border-radius: 100vh;
	padding: 4px 12px;
	background: rgba(255, 255, 255, 0.00);
	font: inherit;
	color: #057d13;
}

.btn-nav:hover {
	border: 1px solid #cde3d0;
	background-color: #f6faf7;
	transition: all 0.3s;
	cursor: pointer;
}

.btn-nav:focus {
	outline: none;
	border: 1px solid #b0dab6;
	border-radius: 100vh;
}

.btn-nav:active {
	outline: none;
	background-color: #d5ead8;
}

.btn-nav svg {
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	margin-right: 10px;
	fill: #057d13;
}


/* 通常ボタン */
.btn-standard {
	display: inline-block;
	min-width: 80px;
	padding: 2px 12px;
	border: 1px solid #6bbf72;
	border-radius: 3px;
	background-color: #e6f6e7;
	font: inherit;
	font-weight: normal;
	color: #057d13;
}

.btn-standard:hover {
	background-color: #caeccc;
	transition: all 0.3s;
	cursor: pointer;
}

.btn-standard:active {
	outline: none;
	background-color: #b3ddb5;
}

.btn-standard:disabled {
	opacity: 0.4;
	cursor: default;
}

.btn-standard svg {
	display: inline-block !important;
	vertical-align: middle !important;
	width: 18px !important;
	height: 18px !important;
	margin-right: 6px !important;
	fill: #057d13 !important;
}


/* メインボタンエリアのメインボタン */
.btn-main {
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-font-smoothing: auto;
	display: inline-block;
	min-width: 120px;
	min-height: 36px;
	padding: 2px 12px;
	border: 1px solid #0b8d1a;
	border-radius: 3px;
	background-color: #0b8d1a;
	font: inherit;
	letter-spacing: 0.15rem;
	color: #ffffff;
}

.btn-main:hover {
	background-color: #34a141;
	transition: all 0.3s;
	cursor: pointer;
}

.btn-main:active {
	outline: none;
	background-color: #097816;
}

.btn-main:disabled {
	opacity: 0.4;
	cursor: default;
}

.btn-main svg {
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	margin-right: 10px;
	fill: #fff;
}


/* メインボタンエリアのサブボタン */
.btn-sub {
	display: inline-block;
	min-width: 120px;
	min-height: 36px;
	padding: 2px 12px;
	border: 1px solid #6bbf72;
	border-radius: 3px;
	background-color: #e6f6e7;
	font: inherit;
	letter-spacing: 0.15rem;
	color: #057d13;
}

.btn-sub:hover {
	background-color: #caeccc;
	transition: all 0.3s;
	cursor: pointer;
}

.btn-sub:active {
	outline: none;
	background-color: #b3ddb5;
}

.btn-sub:disabled {
	opacity: 0.4;
	cursor: default;
}

.btn-sub svg {
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	margin-right: 10px;
	fill: #057d13;
}



/* メインメニューのボタン */
.btn-menu {
	display: inline-block;
	min-width: 450px;
	min-height: 70px;
	padding: 10px 20px;
	text-align: left;
	border: 1px solid #6bbf72;
	border-radius: 3px;
	background-color: #e6f6e7;
	font: inherit;
	font-size: 2rem;
	color: #057d13;
}

.btn-menu:hover {
	background-color: #caeccc;
	transition: all 0.3s;
	cursor: pointer;
}

.btn-menu:active {
	outline: none;
	background-color: #b3ddb5;
}

.btn-menu:disabled {
	opacity: 0.4;
	cursor: default;
}

.btn-menu svg {
	display: inline-block;
	vertical-align: middle;
	width: 40px;
	height: 40px;
	margin-right: 15px;
	fill: #057d13;
}

.summary .dummy {
	padding-top: 113px;
}

.summary .select_graph {
	min-width: 100px;
}


/* 写真ボタン */
.btn-photo {
	display: inline-flex;
	padding: 0;
	border: 2px solid #6bbf72;
	border-radius: 3px;
}

.btn-photo:hover {
	border-color: #42a94a;
	cursor: pointer;
}

.btn-photo:active {
	outline: none;
	border-color: #057d13;
}

.btn-photo img {
	width: 200px;
	height: auto;
}


/* ----- コントロール類 ----- */
/* --------------------------------------------------------------------------- */


input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"],
input[type="file"] {
	height: 36px;
	box-sizing: border-box;
	margin-right: 4px;
	padding: 0px 4px;

	font: inherit;
	color: #3c3e43;

	border: 1px solid #aabcad;
	border-radius: 3px;
	background-color: #fff;
}

input[type="radio"],
input[type="checkbox"] {
	vertical-align: text-top;
	margin-right: 4px;
}

input[type="text"].disabled {
	background-color: rgb(84 84 84 / 48%) !important;
	border-color: rgb(84 84 84 / 48%) !important;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	height: 36px;
	box-sizing: border-box;
	margin-right: 4px;
	padding: 0px 4px;

	font: inherit;
	color: #3c3e43;

	border: 1px solid #aabcad;
	border-radius: 3px;

	background-image: url("./images/chevron-down.svg");
	background-repeat: no-repeat;
	background-size: 12px 12px;
	background-position: right 10px center;
	background-color: #fff;
}



/* コントロール類：エラー時の枠線・背景色 */
.c-error {
	border-color: #f24949 !important;
	background-color: #fff0f1 !important;
}


/* コントロール類：枠線非表示 */
.c-noborder {
	border-color: #fff !important;
}


/* コントロール類：text、select　横幅指定 */
.c-size-L {
	width: 600px;
}

.c-size-M {
	width: 400px;
}

.c-size-S {
	width: 150px;
}


/* コントロール類　グループ化時（横並び）　レイアウト調整 */
.c-group {
	display: inline-flex;
	list-style: none;
	align-items: center;
	white-space: nowrap;
}

.c-group li {
	margin-right: 10px;
}

.c-group-margin {
	margin-left: 150px;
	text-align: left;
}

.c-group svg {
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	margin-right: 4px;
	fill: #515153;
}


/* コントロール類：radio、checkbox　複数配置時の間隔調整 */
.c-wrapper {
	display: flex;
	list-style: none;
}

.c-wrapper li {
	margin-right: 30px;
}


/* グループボックス*/
.c-groupbox {
	display: inline-flex;
	flex-direction: column;
	list-style: none;
	vertical-align: bottom;
	margin-right: 10px;
	padding: 15px 15px 0px 15px;
	border: 1px solid #dee5de;
}

.c-groupbox li {
	margin-bottom: 5px;
}



/* 情報表示欄（疎通確認など）*/
.c-textarea {
	min-width: 500px;
	width: 100%;
	overflow: hidden;
	white-space: normal;
}


/* ----- ヘッダー ----- */
/* --------------------------------------------------------------------------- */

.page-header {
	display: flex;
	position: fixed;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	min-width: 770px;
	height: 60px;
	border-bottom: 1px solid #d2e1d4;
	background: #eff6f0;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	width: 125px;
	height: 35px;
	margin: 0 4px 0 10px;
}

.logo div {
	margin-top: 6px;
	padding: 2px 40px;
	font-size: 1.0rem;
	font-weight: bold;
	letter-spacing: 0.15em;
	color: #ffffff;
	background: rgb(239, 246, 240);
	background: linear-gradient(90deg, rgba(239, 246, 240, 0) 0%, rgba(75, 144, 85, 1) 35%, rgba(75, 144, 85, 1) 65%, rgba(239, 246, 240, 0) 100%);
}

.account-info {
	display: flex;
	align-items: center;
	list-style: none;
	margin-right: 20px;
}

.account-info li {
	margin-left: 20px;
}

.account-name {
	padding: 4px 0px;
}

.account-info svg {
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	margin: 0 4px;
	fill: #3c3e43;
}



/* ----- ヘッダー：ポップアップウィンドウ用 ----- */
/* --------------------------------------------------------------------------- */

.page-header-popup {
	width: 100%;
	height: 18px;
	margin-bottom: 20px;
	border-bottom: 1px solid #d2e1d4;
	background: #eff6f0;
}



/* ----- ページ移動 ----- */
/* --------------------------------------------------------------------------- */

.page-nav {
	display: flex;
	padding: 71px 20px 10px 20px;
	/* ヘッダー固定分多く、上部にpaddingを設ける*/
	min-height: 32px;
}




/* ページタイトル*/
/* --------------------------------------------------------------------------- */

.page-title-area {
	display: flex;
	align-items: center;
	min-width: 770px;
	margin-bottom: 20px;
}

.page-title-area div {
	margin-left: 50px;
}


.page-title {
	font-size: 2.2rem;
	font-weight: bold;
}

.page-title svg {
	display: inline-block;
	vertical-align: middle;
	width: 32px;
	height: 32px;
	margin-right: 6px;
	fill: #515153;
}



/* エラーメッセージ　エリア*/
/* --------------------------------------------------------------------------- */

.error-area {
	margin-bottom: 20px;
	padding: 10px;
	border: 1px solid #ffc5c5;
	border-radius: 3px;
	background: #fff0f1;
	color: #f24949;
}

.error-area svg {
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	margin-right: 6px;
	fill: #f24949;
}



/* フォーム*/
/* --------------------------------------------------------------------------- */


/* フォームのレイアウト用table */
.main-form {
	min-width: 770px;
	border-top: 1px solid #dee5de;
}

.main-form tr {
	border-bottom: 1px solid #dee5de;
}

.main-form th {
	width: 20rem;
	height: 50px;
	vertical-align: middle;
	text-align: left;
	padding: 6px 20px;
	white-space: nowrap;
	font-weight: bold;
}

.main-form td {
	height: 50px;
	vertical-align: middle;
	padding: 6px 20px;
}

.main-form-noborder {
	border-bottom: 1px solid #fff;
}

.main-form-headline {
	height: 50px;
	vertical-align: bottom !important;
	padding-left: 12px !important;
	border-top: 1px solid #fff !important;
	border-bottom: 2px solid #4e9c58 !important;
	font-size: 1.7rem;
	font-weight: normal !important;
	color: #4e9c58;
}

.sub-form-headline {
	vertical-align: bottom !important;
	padding-left: 8px !important;
	font-size: 1.5rem;
	font-weight: normal !important;
	color: #4e9c58;
}

.sub-form-element {
	border-bottom: none !important;
}

.text-disabled {
	color: rgb(84 84 84 / 48%);
}

/* 左右に要素を配置するリスト（ステーション一覧） */
.list-space-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 900px;
	height: 50px;
	border-top: 1px solid #dcdfe6;
}

/* メインボタンエリア */
.main-btn-area {
	display: flex;
	justify-content: space-between;
	padding: 30px 0;
}

.main-btn-area div {
	width: 100%;
	white-space: nowrap;
}

.main-btn-area button {
	margin-right: 8px;
	margin-left: 8px;
}



/*フォーム内の一覧表用table（エネマネスポットマスタ画面の充電器一覧、PV一覧、ステーション一覧　等）*/
.standard-list-area {
	width: 100%;
	min-height: 100px;
	overflow: auto;
	border: 1px solid #dee5de;
}

.standard-list-area table {
	width: 100%;
	min-width: 800px;
}

.standard-list-area th {
	height: 10px;
	text-align: left;
	vertical-align: middle;
	padding: 2px 6px;
	border-right: 1px solid #dee5de;
	border-bottom: 1px solid #dee5de;
	font-size: 1.1rem;
	font-weight: bold;
}

.standard-list-area td {
	height: 20px;
	text-align: left;
	vertical-align: middle;
	padding: 6px;
	border-right: 1px solid #dee5de;
	border-bottom: 1px solid #dee5de;
	font-size: 1.2rem;
}



/* 入札シミュレーション結果表示用table */
.result-list {
	width: 100%;
	min-width: 500px;
}

.result-list th {
	height: 20px;
	text-align: center;
	vertical-align: middle;
	padding: 6px 10px;
	border: 1px solid #dee5de;
	background: #e8f4fb;
	font-weight: bold;
}

.result-list td {
	height: 20px;
	text-align: right;
	vertical-align: middle;
	padding: 6px 10px;
	border: 1px solid #dee5de;
	font-size: 1.4rem;
}


/* -----　フッター　----- */
/* --------------------------------------------------------------------------- */


footer {
	text-align: center;
	margin-top: 10px;
	padding: 10px 0;
	background: #2c4c30;
}

footer p {
	color: #fff;
	font-size: 1rem;
}



/* -----　テキスト修飾　----- */
/* --------------------------------------------------------------------------- */


/* 注釈テキスト */
.text-annotation {
	font-size: 1.2rem;
	font-weight: normal;
	color: #7f8e81;
}


/* 必須項目マーク */
.text-required {
	margin-left: 2px;
	color: #ff6666;
}


/* ステーション公開・非公開マーク */
.mark-station-public {
	display: inline-block;
	width: 5rem;
	text-align: center;
	padding: 4px 2px 2px 2px;
	font: inherit;
	font-size: 1.1rem;
	font-weight: bold;
	border-radius: 3px;

	letter-spacing: 0.15rem;
	color: #0098e5;
	background-color: #c1e9ff;
}

.mark-station-private {
	display: inline-block;
	width: 5rem;
	text-align: center;
	padding: 4px 2px 2px 2px;
	font: inherit;
	font-size: 1.1rem;
	font-weight: bold;
	border-radius: 3px;

	color: #999999;
	background-color: #e9e9e9;
}




/* -----　アイコン　----- */
/* --------------------------------------------------------------------------- */

/* 予約時公開マーク */
.mark-sp-public {
	display: inline-block;
	vertical-align: middle;
	width: 13px;
	height: 13px;
	margin-left: 2px;
	fill: #7f8e81;
}




/* -----　メインメニュー　----- */
/* --------------------------------------------------------------------------- */

.main-menu {
	padding-top: 113px;
	/* ヘッダー固定分＋隙間分、上部にpaddingを設ける*/
	text-align: center;
}

.main-menu h2 {
	padding-bottom: 20px;
	margin-bottom: 40px;
	border-bottom: 1px solid #dee5de;
}

.summary h3 {
	margin: 10px 0 0;
	padding: 0 0 6px;
	font-size: 15px;
}

.summary h3::before {
	margin: 0 6px 0 0;
	content: "";
	color: #26990A;
	font-family: FontAwesome;
	width: 7px;
	height: 10px;
	position: relative;
	top: 12px;
	border: 8px solid transparent;
	box-sizing: border-box;
	border-top-color: #26990A;
}

.main-menu ul {
	display: flex;
	flex-direction: column;
	list-style: none;
}

.main-menu li {
	margin-bottom: 20px;
}

.main-menu img {
	margin-right: 15px;
	width: 20px;
	height: 20px;
}

.main-wrapper {
	display: flex;
}

.main-wrapper section.menu {
	width: 300px;
}

.main-wrapper section.summary {
	flex: 1;

}

.main-wrapper div.summary_info_wrapper {
	display: flex;
	flex-direction: row;
}

.main-wrapper div.summary_graph_wrapper {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

.main-wrapper div.summary_graph_wrapper .btn_csv {
	margin-left: 40px;
	padding: 5px;
	text-align: left;
	border: 1px solid #6bbf72;
	border-radius: 3px;
	background-color: #e6f6e7;
	font: inherit;
	color: #057d13;

}

.main-wrapper div.summary_info {
	display: flex;
	flex-direction: column;
}

.main-wrapper div.summary_info_wrapper div.graph {
	width: 70%;
}

.main-wrapper div.summary_info_wrapper div.graph img {
	width: 100%;
}

.main-wrapper div.summary_info_wrapper div.summary_info {
	width: 27%;
}

.main-wrapper div.summary_info_wrapper div.summary_info div {
	border: solid thin #dee5de;
	margin-bottom: 10px;
}

/* -----　ログイン画面　----- */
/* --------------------------------------------------------------------------- */

.login {
	display: flex;
	flex-direction: column;
	width: 55%;
	min-width: 540px;
	align-items: center;
	text-align: center;

	margin: 100px auto;
	padding-top: 50px;
	padding-bottom: 30px;

	border-radius: 3px;
	background-color: #fff;
	box-shadow: 0px 1px 9px #e3e7e3;
}

.login-title {
	margin-bottom: 30px;
}

.login-title img {
	width: 280px;
	height: 120px;
}

.login-title div {
	width: 270px;
	margin: 0 auto;
	padding: 3px 40px;
	font-size: 1.3rem;
	letter-spacing: 0.15em;
	color: #ffffff;
	background: rgb(239, 246, 240);
	background: linear-gradient(90deg, rgba(239, 246, 240, 0) 0%, rgba(75, 144, 85, 1) 35%, rgba(75, 144, 85, 1) 65%, rgba(239, 246, 240, 0) 100%);
}

.login ul {
	margin-right: 70px;
}

.login li {
	margin: 12px 8px;
}

.login input {
	width: 340px;
	padding: 18px 10px;
}