@charset "UTF-8";
/*
 * lib/css/reset.css
 *
*/
html {
	overflow-y: scroll;
}

fieldset, img {
	border: none;
	vertical-align: top;
}

ul, ol {
	list-style-type: none;
}

address, caption, cite, code, dfn, em, var {
	font-style: normal;
}

caption, th {
	text-align: left;
}

a {
	outline: none;
}

/*-----------------------------------------------------------
		余白初期設定
-----------------------------------------------------------*/
h1, h2, h3, h4, h5, h6,
html, body, div,
p, ul, ol, li, dl, dt, dd,
pre, blockquote,
form, fieldset, input, textarea,
table, th, td, figure {
	margin: 0;
	padding: 0;
}

/*-----------------------------------------------------------
		その他初期設定
-----------------------------------------------------------*/
q:before, q:after {
	content: '';
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
	color: #000;
	font-size: 10px;
}

body {
	color: #000;
	line-height: 1.5;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 1.4rem;
	word-wrap: break-word;
	font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}

img {
	max-width: 100%;
}

button, fieldset, form, input, label, legend, select, textarea {
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
}

a {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: underline;
}

[type=text], [type=email], [type=tel], [type=password], [type=number], [type=search], [type=date], textarea, select {
	padding: 0.75em;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #ededed;
	border-radius: 0.25em;
}

select {
	max-width: 100%;
	padding: 0.5em 3em 0.5em 0.75em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0.25em;
	border: 1px solid #ededed;
	background: #fff url("../img/arrow.svg") right center/2.6em 2.6em no-repeat;
}

select::-ms-expand {
	display: none;
}

[type=text], [type=email], [type=tel], [type=password], [type=submit], [type=number], [type=search], [type=date], textarea, button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

[type=text]:focus, [type=email]:focus, [type=password]:focus, [type=number]:focus, [type=search]:focus, [type=date]:focus, textarea:focus {
	background: #fff;
	border: 1px solid #aaa;
}

button {
	cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=checkbox] + label,
input[type=radio] + label {
	display: inline-block;
	position: relative;
	padding-left: 2em;
}
input[type=checkbox] + label.inline,
input[type=radio] + label.inline {
	display: inline;
}
input[type=checkbox] + label:before, input[type=checkbox] + label:after,
input[type=radio] + label:before,
input[type=radio] + label:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
	left: 0px;
	width: 1.25em;
	height: 1.25em;
	border: 1px solid #ededed;
	background-color: #fff;
}
input[type=checkbox] + label.single,
input[type=radio] + label.single {
	height: 1.25em;
	padding-left: 1.25em;
}

input[type=radio] + label:before, input[type=radio] + label:after {
	border-radius: 50%;
}

input[type=checkbox]:checked + label:after,
input[type=radio]:checked + label:after {
	left: 3px;
	width: -webkit-calc(1.25em - 6px);
	width: calc(1.25em - 6px);
	height: -webkit-calc(1.25em - 6px);
	height: calc(1.25em - 6px);
	background-color: #ccc;
}

:placeholder-shown {
	color: #BABABA;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
	color: #BABABA;
}

/* Firefox 18- */
:-moz-placeholder {
	color: #BABABA;
	opacity: 1;
}

/* Firefox 19+ */
::-moz-placeholder {
	color: #BABABA;
	opacity: 1;
}

/* IE 10+ */
:-ms-input-placeholder {
	color: #BABABA;
}

#js-other__text {
	display: none;
}

/*-----------------------------------------------------------
		基本レイアウト
-----------------------------------------------------------*/
body {
	background: #fff;
}
body#login {
	background: #002968;
}

.linkbox {
	cursor: pointer;
}

/*----------------------- header --------------------------*/
header {
	position: fixed;
	left: 0px;
	top: 0px;
	bottom: 0px;
	z-index: 100;
	width: 18rem;
	background: #002968;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 5rem 0px 0px;
}
header .logo {
	margin: 0px 3rem 5rem;
	text-align: center;
}
header ul li a {
	display: block;
	position: relative;
	padding: 1em 0px 1em 5rem;
	background-repeat: no-repeat;
	background-position: 2rem center;
	background-size: 1.54em;
	color: #fff;
	font-weight: 700;
	font-size: 1.3rem;
	text-decoration: none !important;
}
header ul li a:after {
	display: block;
	content: "";
	position: absolute;
	left: 0px;
	right: 100%;
	bottom: 0px;
	height: 1px;
	background: #fff;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
header ul li a.icon01 {
	background-image: url(../img/icon_denpyou.svg);
}
header ul li a.icon02 {
	background-image: url(../img/icon_kokyaku.svg);
}
header ul li a.icon03 {
	background-image: url(../img/icon_shanai.svg);
}
header ul li a.icon04 {
	background-image: url(../img/icon_nouhin.svg);
}
header ul li a.icon05 {
	background-image: url(../img/icon_fax.svg);
}
header ul li a.icon06 {
	background-image: url(../img/icon_kanban.svg);
}
header ul li a.icon07 {
	background-image: url(../img/icon_google.svg);
}
header ul li a:hover:after {
	right: 0px;
}

/*----------------------- content --------------------------*/
article {
	padding-left: 18rem;
}
article .head .managebox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 1.5rem 3rem;
}
article .head .managebox .subnav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
article .head .managebox .subnav li {
	position: relative;
	width: 2.2rem;
}
article .head .managebox .subnav li + li {
	margin-left: 1em;
}
article .head .managebox .subnav li ul {
	position: absolute;
	left: 0px;
	top: 2em;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background: #fff;
	-webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
	visibility: hidden;
	white-space: nowrap;
	opacity: 0;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
article .head .managebox .subnav li ul li {
	width: auto;
	margin: 0px;
}
article .head .managebox .subnav li ul li a {
	display: block;
	padding: 0.75em 2em;
	text-decoration: none;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
article .head .managebox .subnav li ul li a:hover {
	background: #f6f6f6;
}
article .head .managebox .subnav li:hover ul {
	visibility: inherit;
	opacity: 1;
}
article .head .managebox .name {
	margin-left: 1em;
	color: #002968;
}
article .head .breadcrumbs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0px 5rem;
	background: #e9e9e9;
	overflow: hidden;
}
article .head .breadcrumbs li {
	margin-right: 3em;
}
article .head .breadcrumbs li:first-child a {
	width: 2em;
	background: url(../img/icon_home.svg) center/1em no-repeat;
	text-indent: -9999px;
}
article .head .breadcrumbs li a {
	display: block;
	padding: 0.6em 0px;
	position: relative;
	color: #002968;
}
article .head .breadcrumbs li a:after {
	display: block;
	content: "";
	position: absolute;
	right: -1.5em;
	top: 50%;
	width: 3em;
	height: 3em;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	-ms-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
}
article .section {
	margin: 5rem;
}

/*----------------------- footer --------------------------*/
footer {
	position: fixed;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 200;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	background: #fff;
	padding: 1rem;
}
footer .logo {
	width: 18rem;
}
footer .copy {
	font-size: 1rem;
	color: #3b4751;
}

/*-----------------------------------------------------------
	login
-----------------------------------------------------------*/
#login {
	height: 100vh;
	min-height: 800px;
}
#login .loginbox {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 40rem;
}
#login .loginbox h1 {
	width: 30rem;
	margin: 0px auto 3rem;
}
#login .loginbox ul {
	margin-bottom: 3rem;
}
#login .loginbox ul li + li {
	margin-top: 1.5rem;
}
#login .loginbox ul li input {
	width: 100%;
	padding-left: 3em;
	font-size: 1.5rem;
	background-size: 1em;
	background-repeat: no-repeat;
	background-position: 1em center;
}
#login .loginbox ul li input.id {
	background-image: url(../img/icon_id.svg);
}
#login .loginbox ul li input.pass {
	background-image: url(../img/icon_pass.svg);
}
#login .loginbox .remember {
	margin-bottom: 3rem;
	color: #fff;
}
#login .loginbox .loginbtn {
	text-align: center;
}
#login .loginbox .loginbtn button {
	width: 31rem;
	padding: 0.75em 0px;
	border: 1px solid #fff;
	border-radius: 0.25em;
	font-size: 2rem;
	color: #fff;
	background: none;
	text-align: center;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
#login .loginbox .loginbtn button:hover {
	background: #fff;
	color: #002968;
}

/*-----------------------------------------------------------
	dashboard
-----------------------------------------------------------*/
.dashboard {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.dashboard .box {
	width: 49%;
	margin-bottom: 2%;
	border-radius: 0.5rem;
	border: 1px solid #ededed;
	overflow: hidden;
}
.dashboard .box h3 {
	padding: 0.5em 0px 0.5em 3em;
	background-color: #002968;
	background-repeat: no-repeat;
	background-position: 1em center;
	background-size: 1.54em;
	color: #fff;
}
.dashboard .box h3.icon01 {
	background-image: url(../img/icon_denpyou.svg);
}
.dashboard .box h3.icon02 {
	background-image: url(../img/icon_kokyaku.svg);
}
.dashboard .box h3.icon03 {
	background-image: url(../img/icon_shanai.svg);
}
.dashboard .box h3.icon04 {
	background-image: url(../img/icon_nouhin.svg);
}
.dashboard .box h3.icon05 {
	background-image: url(../img/icon_fax.svg);
}
.dashboard .box h3.icon06 {
	background-image: url(../img/icon_kanban.svg);
}
.dashboard .box h3.icon07 {
	background-image: url(../img/icon_google.svg);
}
.dashboard .box ul li:nth-child(odd) a {
	background: #f5f5f5;
}
.dashboard .box ul li a {
	display: block;
	padding: 0.75em 1em;
	color: #002968;
}
.dashboard .box .link {
	padding: 0.5em 1em;
	text-align: right;
}
.dashboard .box .link a {
	display: inline-block;
	position: relative;
	padding-right: 1em;
	color: #002968;
}
.dashboard .box .link a:after {
	display: block;
	content: "";
	position: absolute;
	right: 0px;
	top: 50%;
	width: 0.4em;
	height: 0.4em;
	border-right: 2px solid #ededed;
	border-bottom: 2px solid #ededed;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	-ms-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
}

/*-----------------------------------------------------------
	common
-----------------------------------------------------------*/
.headbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}
.headbox.bg {
	padding: 1.5rem 2rem;
	background-color: #f5f5f5;
}
.headbox .flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.headbox .flex .btn {
	margin-left: 0.5em;
}
.headbox .flex .error {
	margin-left: 0.5em;
	color: #c00;
}
.headbox .hidden {
	display: none;
}
.headbox .hidden.open {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.headbox .hidden input {
	padding: 0.5em;
	margin-left: 0.5em;
}
.headbox .hidden span {
	display: inline-block;
	width: 15em;
	margin-left: 0.5em;
}
.headbox .hidden span.short {
	width: 8em;
}
.headbox .hidden span input {
	width: 10em;
	margin-left: 0em;
}

.title {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 2.5rem;
	color: #002968;
}
.title.icon:before {
	display: block;
	content: "";
	width: 1.28em;
	height: 1.28em;
	margin-right: 0.25em;
	border-radius: 50%;
	background-color: #002968;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 70%;
}
.title.slip:before {
	background-position: 0.25em 0.25em;
	background-image: url(../img/icon_denpyou.svg);
}
.title.client:before {
	background-image: url(../img/icon_kokyaku.svg);
}
.title.staff:before {
	background-position: 0.25em 0.25em;
	background-image: url(../img/icon_shanai.svg);
}
.title.output:before {
	background-image: url(../img/icon_nouhin.svg);
}
.title.fax:before {
	background-image: url(../img/icon_fax.svg);
}
.title.kanban:before {
	background-image: url(../img/icon_.svg);
}
.title.google:before {
	background-image: url(../img/icon_google.svg);
}

.btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	padding: 0.5em 1.75em;
	background: #fff;
	border: 1px solid #ededed;
	border-radius: 0.3em;
	text-decoration: none !important;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.btn:hover {
	background-color: #002968;
	color: #fff;
}
.btn.primary {
	border-color: #002968;
	background-color: #002968;
	color: #fff;
}
.btn.primary:hover {
	background-color: #fff;
	color: #002968;
}
.btn.normal {
	background: #fff;
	border-color: #ccc;
	color: #002968;
}
.btn.normal:hover {
	border-color: #002968;
	background-color: #002968;
	color: #fff;
}
.btn.small {
	padding: 0.25em;
}
.btn.back {
	color: #8b8b8c;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.btn.back:before {
	display: block;
	content: "";
	width: 1em;
	height: 0.5em;
	margin-right: 0.5em;
	background: url(../img/back.svg) center/100% no-repeat;
}
.btn.back:hover {
	background-color: #f5f5f5;
}

.searchbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.searchbox ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.searchbox ul li {
	width: 15em;
}
.searchbox ul li + li {
	margin-left: 1em;
}
.searchbox ul li.sbox {
	padding-left: 1.75em;
	background: url(../img/icon_serch.svg) left center/1.25em no-repeat;
}
.searchbox ul li.dbox {
	width: 20em;
	padding-left: 1.75em;
	background: url(../img/icon_date.svg) left center/1.25em no-repeat;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.searchbox ul li.dbox input {
	width: -webkit-calc(50% - 1em);
	width: calc(50% - 1em);
}
.searchbox ul li input {
	width: 100%;
	padding: 0.5em;
}
.searchbox ul li select {
	width: 100%;
}
.searchbox .send {
	margin-left: 1em;
}

.list {
	width: 100%;
	margin-bottom: 1.5rem;
}
.list th, .list td {
	padding: 0.5em;
}
.list th {
	background-color: #002968;
	color: #fff;
	text-align: center;
	font-weight: 400;
}
.list th + th {
	border-left: 1px solid #fff;
}
.list th a {
	display: block;
	color: #fff;
	text-decoration: underline;
}
.list td {
	background-color: #f5f5f5;
	color: #002968;
}
.list td + td {
	border-left: 1px solid #fff;
}
.list td.center {
	text-align: center;
}
.list td.right {
	text-align: right;
}
.list td .pdf {
	width: 4rem;
}
.list tr:nth-child(even) td {
	background-color: #e7e9f4;
}

.edit {
	border: 1px solid #ededed;
}
.edit h2 {
	padding: 0.5em 1em;
	background-color: #002968;
	color: #fff;
	font-size: 1.7rem;
}
.edit .inbox {
	padding: 1.5rem;
}
.edit .inbox.c2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.edit .inbox.c2 table {
	width: 49%;
}
.edit .inbox table {
	width: 100%;
}
.edit .inbox table th, .edit .inbox table td {
	padding: 1em 0px;
	border-bottom: 1px solid #ededed;
}
.edit .inbox table th input, .edit .inbox table th textarea, .edit .inbox table th select, .edit .inbox table td input, .edit .inbox table td textarea, .edit .inbox table td select {
	width: 100%;
}
.edit .inbox table th input[type=file], .edit .inbox table th textarea[type=file], .edit .inbox table th select[type=file], .edit .inbox table td input[type=file], .edit .inbox table td textarea[type=file], .edit .inbox table td select[type=file] {
	width: auto;
}
.edit .inbox table th input.short, .edit .inbox table th textarea.short, .edit .inbox table th select.short, .edit .inbox table td input.short, .edit .inbox table td textarea.short, .edit .inbox table td select.short {
	width: 8em;
	margin-right: 0.5em;
}
.edit .inbox table th input.long, .edit .inbox table th textarea.long, .edit .inbox table th select.long, .edit .inbox table td input.long, .edit .inbox table td textarea.long, .edit .inbox table td select.long {
	height: 8em;
}
.edit .inbox table th {
	width: 12em;
}
.edit .inbox table tr:last-child th, .edit .inbox table tr:last-child td {
	border-bottom: none;
}
.edit .inbox table .pdf {
	width: 3rem;
	margin-right: 1em;
	vertical-align: middle;
}
.edit .inbox table .error {
	margin-top: 0.5em;
	color: #c00;
}
.edit .inbox table .error:before {
	content: "※";
}
.edit .inbox table .required {
	display: inline-block;
	margin-left: 1em;
	padding: 0.25em 0.75em;
	border-radius: 0.25em;
	background-color: #c00;
	color: #fff;
	font-weight: 400;
	font-size: 0.85em;
}
.edit .inbox table .mt {
	margin-top: 0.5em;
}
.edit .inbox table ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.edit .inbox table ul li + li {
	margin-left: 1em;
}

.pager {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.pager .pagination {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	border-radius: 0.25em;
	border: 1px solid #ededed;
	overflow: hidden;
}
.pager .pagination li + li {
	border-left: 1px solid #ededed;
}
.pager .pagination li a, .pager .pagination li span {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 2.8em;
	height: 2.8em;
}
.pager .pagination li.disabled a, .pager .pagination li.disabled span {
	color: #ededed;
}
.pager .pagination li.active a, .pager .pagination li.active span {
	background-color: #f5f5f5;
	color: #002968;
	font-weight: 700;
}

.overlay {
	position: fixed;
	left: 0px;
	right: 0px;
	bottom: 0px;
	top: 0px;
	z-index: 3000;
	background-color: #002968;
	opacity: 0.8;
}

.messages {
	position: fixed;
	left: 50%;
	top: 50%;
	z-index: 4000;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	min-width: 45rem;
	padding: 6rem;
	background: #fff;
	border-radius: 0.5rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.messages ul {
	color: #002968;
	font-size: 1.8rem;
	text-align: center;
}
.messages ul li + li {
	margin-top: 0.75em;
}
.messages.js-error ul {
	color: #c00;
}
.messages.js-error ul li:before {
	content: "※";
}
.messages .close {
	position: absolute;
	right: -1.5rem;
	top: -1.5rem;
}
.messages .close a {
	display: block;
	position: relative;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: #fff;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.messages .close a:before, .messages .close a:after {
	content: "";
	display: block;
	position: absolute;
	background: #ddd;
}
.messages .close a:before {
	top: 50%;
	left: 17%;
	width: 66%;
	height: 3px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.messages .close a:after {
	top: 17%;
	left: 50%;
	width: 3px;
	height: 66%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.select2-container {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	margin: 0;
	position: relative;
	vertical-align: middle;
}
.select2-container .select2-selection--single {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
	display: block;
	overflow: hidden;
	padding: 0.5em 3em 0.5em 0.75em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0.25em;
	background: #fff url("../img/arrow.svg") right center/2.6em 2.6em no-repeat;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
	background-color: transparent;
	border: none;
	font-size: 1em;
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
	padding-right: 8px;
	padding-left: 20px;
}
.select2-container .select2-selection--multiple {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	min-height: 32px;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
	display: inline;
	list-style: none;
	padding: 0;
}
.select2-container .select2-selection--multiple .select2-selection__clear {
	background-color: transparent;
	border: none;
	font-size: 1em;
}
.select2-container .select2-search--inline .select2-search__field {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: none;
	font-size: 100%;
	margin-top: 5px;
	margin-left: 5px;
	padding: 0;
	max-width: 100%;
	resize: none;
	height: 18px;
	vertical-align: bottom;
	font-family: sans-serif;
	overflow: hidden;
	word-break: keep-all;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

.select2-dropdown {
	background-color: white;
	border: 1px solid #ededed;
	border-radius: 4px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	position: absolute;
	left: -100000px;
	width: 100%;
	z-index: 1051;
}

.select2-results {
	display: block;
}

.select2-results__options {
	list-style: none;
	margin: 0;
	padding: 0;
}

.select2-results__option {
	padding: 6px;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-select: none;
}

.select2-results__option--selectable {
	cursor: pointer;
}

.select2-container--open .select2-dropdown {
	left: 0;
}
.select2-container--open .select2-dropdown--above {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.select2-container--open .select2-dropdown--below {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.select2-search--dropdown {
	display: block;
	padding: 4px;
}
.select2-search--dropdown .select2-search__field {
	padding: 4px;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
	-webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
	display: none;
}

.select2-close-mask {
	border: 0;
	margin: 0;
	padding: 0;
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	min-height: 100%;
	min-width: 100%;
	height: auto;
	width: auto;
	opacity: 0;
	z-index: 99;
	background-color: #fff;
	filter: alpha(opacity=0);
}

.select2-hidden-accessible {
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
	background-color: #fff;
	border: 1px solid #ededed;
	border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: bold;
	height: 26px;
	margin-right: 20px;
	padding-right: 0px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: #999;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	display: none;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
	float: left;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
	left: 1px;
	right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
	background-color: #eee;
	cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
	display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #888 transparent;
	border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
	background-color: white;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: text;
	padding-bottom: 5px;
	padding-right: 5px;
	position: relative;
}
.select2-container--default .select2-selection--multiple.select2-selection--clearable {
	padding-right: 25px;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
	cursor: pointer;
	font-weight: bold;
	height: 20px;
	margin-right: 10px;
	margin-top: 5px;
	position: absolute;
	right: 0;
	padding: 1px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: #e4e4e4;
	border: 1px solid #aaa;
	border-radius: 4px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	margin-left: 5px;
	margin-top: 5px;
	padding: 0;
	padding-left: 20px;
	position: relative;
	max-width: 100%;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	vertical-align: bottom;
	white-space: nowrap;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
	cursor: default;
	padding-left: 2px;
	padding-right: 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	background-color: transparent;
	border: none;
	border-right: 1px solid #aaa;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	color: #999;
	cursor: pointer;
	font-size: 1em;
	font-weight: bold;
	padding: 0 4px;
	position: absolute;
	left: 0;
	top: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
	background-color: #f1f1f1;
	color: #333;
	outline: none;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
	margin-left: 5px;
	margin-right: auto;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
	padding-left: 5px;
	padding-right: 2px;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
	border-left: 1px solid #aaa;
	border-right: none;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear {
	float: left;
	margin-left: 10px;
	margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
	border: solid black 1px;
	outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
	background-color: #eee;
	cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
	display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid #ededed;
}
.select2-container--default .select2-search--inline .select2-search__field {
	background: transparent;
	border: none;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
	max-height: 200px;
	overflow-y: auto;
}
.select2-container--default .select2-results__option .select2-results__option {
	padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
	padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -1em;
	padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -2em;
	padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -3em;
	padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -4em;
	padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -5em;
	padding-left: 6em;
}
.select2-container--default .select2-results__option--group {
	padding: 0;
}
.select2-container--default .select2-results__option--disabled {
	color: #999;
}
.select2-container--default .select2-results__option--selected {
	background-color: #ddd;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: #5897fb;
	color: white;
}
.select2-container--default .select2-results__group {
	cursor: default;
	display: block;
	padding: 6px;
}

.select2-container--classic .select2-selection--single {
	background-color: #f7f7f7;
	border: 1px solid #aaa;
	border-radius: 4px;
	outline: 0;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(#eeeeee));
	background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
	background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
	background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
	border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: bold;
	height: 26px;
	margin-right: 20px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
	color: #999;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
	background-color: #ddd;
	border: none;
	border-left: 1px solid #aaa;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	height: 26px;
	position: absolute;
	top: 1px;
	right: 1px;
	width: 20px;
	background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
	background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(#cccccc));
	background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
	border-color: #888 transparent transparent transparent;
	border-style: solid;
	border-width: 5px 4px 0 4px;
	height: 0;
	left: 50%;
	margin-left: -4px;
	margin-top: -2px;
	position: absolute;
	top: 50%;
	width: 0;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
	float: left;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
	border: none;
	border-right: 1px solid #aaa;
	border-radius: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	left: 1px;
	right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
	border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
	background: transparent;
	border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #888 transparent;
	border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
	background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
	background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, #eeeeee));
	background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
	background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(white));
	background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
	background-color: white;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: text;
	outline: 0;
	padding-bottom: 5px;
	padding-right: 5px;
}
.select2-container--classic .select2-selection--multiple:focus {
	border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
	display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
	background-color: #e4e4e4;
	border: 1px solid #aaa;
	border-radius: 4px;
	display: inline-block;
	margin-left: 5px;
	margin-top: 5px;
	padding: 0;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
	cursor: default;
	padding-left: 2px;
	padding-right: 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
	background-color: transparent;
	border: none;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	color: #888;
	cursor: pointer;
	font-size: 1em;
	font-weight: bold;
	padding: 0 4px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
	color: #555;
	outline: none;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
	margin-left: 5px;
	margin-right: auto;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
	padding-left: 5px;
	padding-right: 2px;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
	border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
	border: 1px solid #aaa;
	outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.select2-container--classic .select2-dropdown {
	background-color: white;
	border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
	border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
	border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
	max-height: 200px;
	overflow-y: auto;
}
.select2-container--classic .select2-results__option--group {
	padding: 0;
}
.select2-container--classic .select2-results__option--disabled {
	color: grey;
}
.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: #3875d7;
	color: white;
}
.select2-container--classic .select2-results__group {
	cursor: default;
	display: block;
	padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
	border-color: #5897fb;
}



/*# sourceMappingURL=style.css.map */
