/* mixins ----------------------------- */
.noneAppearance {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none transparent;
	color: inherit;
	font-size: inherit;
	vertical-align: middle;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: none;
	box-sizing: border-box;

	-moz-appearance: none;
}
.noneAppearance::-ms-expand {
	display: none;
}
.noneAppearance::-ms-clear {
	display: none;
}
.noneAppearance::-ms-reveal {
	display: none;
}
.clearFix:after {
	content: '.';
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
}
/* customized ------------------------- */
html, body {
	height: 100%;
	min-height: 100%;
}
body {
	font-family: 'HelveticaNeue-Light', YuGothic, '游ゴシック', 'ヒラギノ角ゴPro W3', 'Hiragino Kaku Gothic Pro', Meiryo, 'メイリオ', Helvetica, Arial, sans-serif;

	overflow-y: scroll;
}
label span {
	max-height: 99999px;
	background: transparent;
}
p {
	font-size: 1.2rem;
}
.number-value {
	font-family: 'HelveticaNeue-Thin', YuGothic, '游ゴシック', 'ヒラギノ角ゴPro W3', 'Hiragino Kaku Gothic Pro', Meiryo, 'メイリオ', Helvetica, Arial, sans-serif;
}
.wrapper {
	display: table;
	width: 100%;
	height: 100%;
	table-layout: fixed;

	overflow-y: scroll;
}
.wrapper > .navbar, .wrapper > .container, .wrapper > footer {
	display: table-row;
	background: #FFF;
}
.wrapper > .navbar:before, .wrapper > .container:before, .wrapper > footer:before, .wrapper > .navbar:after, .wrapper > .container:after, .wrapper > footer:after {
	display: none;
}
.wrapper > .navbar > .inner, .wrapper > .container > .inner, .wrapper > footer > .inner {
	display: table-cell;
}
.wrapper > .navbar > .inner .inner-contents, .wrapper > .container > .inner .inner-contents, .wrapper > footer > .inner .inner-contents {
	position: relative;
}
/* header */
.wrapper > .navbar {
	height: 40px;
	min-height: 40px;
}
.wrapper > .navbar > .inner .inner-contents {
	width: 100%;
	height: 40px;
	min-height: 40px;
	margin: 0;
	border: 0;
	border-bottom: 1px #E6EBF2 solid;
	border-radius: 0;
}
.wrapper > .navbar > .inner .inner-contents .navbar-header {
	position: relative;
	margin: 0;
}
.wrapper > .navbar > .inner .inner-contents .navbar-brand {
	overflow: hidden;
	width: 62px;
	height: 20px;
	margin: 10px;
	padding: 0;
	background: url(/_/image/img_logo_01.png) no-repeat 0 0;
	background-size: 62px 20px;
	text-indent: -200%;
}
.navbar-right {
	float: right !important;
	margin: 0 !important;
}
.navbar-right .dropdown-toggle {
	position: relative;
	z-index: 1001;
	width: 50px;
	height: 39px;
	margin: 0;
	padding: 12px 15px;
	border: 0;
	border-radius: 0;
}
.navbar-right .dropdown-toggle:hover, .navbar-right .dropdown-toggle:focus {
	background: transparent;
}
.navbar-right .dropdown-toggle .icon-bar {
	position: absolute;
	left: 15px;
	width: 20px;
	height: 1px;
	margin: 0;
	background: #0082F9;

	transition: all .5s linear;
	-webkit-transition: all .5s linear;
	-ms-transition: all .5s linear;
}
.navbar-right .dropdown-toggle .icon-bar:first-child {
	top: 14px;
}
.navbar-right .dropdown-toggle .icon-bar:nth-child(2) {
	top: 19px;
}
.navbar-right .dropdown-toggle .icon-bar:nth-child(3) {
	top: 24px;
}
.navbar-right .dropdown-menu {
	right: 0 !important;
	left: auto !important;
	min-width: 250px;
	border: none;
	box-shadow: none;
}
.navbar-right .open .dropdown-toggle .icon-bar:first-child {
	top: 20px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.navbar-right .open .dropdown-toggle .icon-bar:nth-child(2) {
	top: 20px;
	opacity: 0;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.navbar-right .open .dropdown-toggle .icon-bar:nth-child(3) {
	top: 20px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.navbar-right .open .dropdown-menu {
	top: 0;
	margin: 40px 0 0;
}
.navbar-nav > li {
	float: left !important;
}
.navbar-nav > li > a {
	padding-top: 15px !important;
	padding-bottom: 15px !important;
}
.navbar-nav .open .dropdown-menu {
	position: absolute!important;
	padding: 32px 0;
	border: 1px solid rgba(0, 0, 0, .05) !important;
	background-color: rgba(255, 255, 255, .95) !important;
	text-align: center;
}
.navbar-nav .open .dropdown-menu li {
	margin: 12px 0;
	font-size: 16px;
}
.navbar-default .navbar-nav .open .dropdown-menu li a {
	padding: 5px 0;
	color: #007DFF;
}
.navbar-nav .open .dropdown-menu li a:hover {
	background: #F5F5F5;
	color: #065FE3;
}
.navbar-nav .open .dropdown-menu li.divider {
	width: 60%;
	margin: 25px auto;
}
.navbar-nav .open:before {
	content: ' ';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .1);
}
/* footer */
footer > .inner {
	border-top: 1px #E5E5EE solid;
}
footer > .inner .inner-contents {
	padding: 18px 37px 20px;
}
footer > .inner .inner-contents ul {
	width: 100%;
}
footer > .inner .inner-contents ul:after {
	content: '.';
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
}
footer > .inner .inner-contents ul li {
	display: inline;
	margin: 0 2px 0 0;
	font-size: .9rem;
}
footer > .inner .inner-contents ul li:after {
	content: '|';
	margin: 0 0 0 6px;
	color: #A8AFB9;
	font-size: inherit;
}
footer > .inner .inner-contents ul li:last-child:after {
	display: none;
}
footer > .inner .inner-contents ul li a {
	color: #A8AFB9;
}
footer > .inner .inner-contents p {
	margin-bottom: 0;
	color: #A8AFB9;
	font-size: .8rem;
	line-height: 1.6;
	text-align: center;
}
footer > .inner .inner-contents p.copyright {
	margin: 10px 0 0;
}
/* container */
.container {
	position: relative;
	font-size: 10px;
	font-size: .625rem;
}
.wrapper > .container {
	height: 100%;
}
.wrapper > .container > .inner {
	vertical-align: top;
}
.login .wrapper > .container > .inner {
	vertical-align: middle;
}
.wrapper > .container > .inner .inner-contents {
	width: 320px;
	padding: 0 10px 60px;
}
.top .wrapper > .container > .inner .inner-contents, .asset .wrapper > .container > .inner .inner-contents {
	margin-bottom: 0;
	padding-bottom: 0;
}
.navbar .container {
	width: auto;
	padding: 0;
}
/* link-head */
.wrapper-link-head {
	text-align: right;
}
/* page-step */
.wrapper-page-step {
	display: block;
	position: relative;
	width: 100%;
	height: 22px;
	margin: 0 0 8px;
	padding: 0 0 4px;
	background: #FFF;
	color: #00263F;
	font-size: 1.6rem;
	line-height: 1;
}
.wrapper-page-step:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #E6EBF2;
}
.wrapper-page-step:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	background: #0C41C6;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzBjNDFjNiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ5JSIgc3RvcC1jb2xvcj0iIzAwN2RmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMGMzZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(left, #0C41C6 0%, #007DFF 49%, #00C3FF 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0C41C6), color-stop(49%, #007DFF), color-stop(100%, #00C3FF));
	background: -webkit-linear-gradient(left, #0C41C6 0%, #007DFF 49%, #00C3FF 100%);
	background: -o-linear-gradient(left, #0C41C6 0%, #007DFF 49%, #00C3FF 100%);
	background: -ms-linear-gradient(left, #0C41C6 0%, #007DFF 49%, #00C3FF 100%);
	background: linear-gradient(to right, #0C41C6 0%, #007DFF 49%, #00C3FF 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c41c6', endColorstr='#00c3ff', GradientType=1);
}
.wrapper-page-step.step-1-6:after {
	width: 16%;
}
.wrapper-page-step.step-2-6:after {
	width: 32%;
}
.wrapper-page-step.step-3-6:after {
	width: 48%;
}
.wrapper-page-step.step-4-6:after {
	width: 64%;
}
.wrapper-page-step.step-5-6:after {
	width: 80%;
}
.wrapper-page-step.step-6-6:after {
	width: 100%;
}
.wrapper-page-step.step-1-7:after {
	width: 14%;
}
.wrapper-page-step.step-2-7:after {
	width: 28%;
}
.wrapper-page-step.step-3-7:after {
	width: 42%;
}
.wrapper-page-step.step-4-7:after {
	width: 56%;
}
.wrapper-page-step.step-5-7:after {
	width: 70%;
}
.wrapper-page-step.step-6-7:after {
	width: 85%;
}
.wrapper-page-step.step-7-7:after {
	width: 100%;
}
/* page-title */
.wrapper-page-title {
	width: 100%;
}
.welcome .wrapper-page-title {
	height: 165px;
}
.page-title {
	margin: 45px 0 32px;
	color: #00263F;
	font-size: 2rem;
	line-height: 1.35;
	text-align: center;
}
.page-title.mod-small {
	font-size: 1.4rem;
}
.page-title.is-hidden {
	display: none;
}
/* section-title */
.section-title {
	margin: 0 0 32px;
	color: #00263F;
	font-weight: normal;
	font-size: 1.8rem !important;
	line-height: 1.4;
}
.guidance .section-title {
	margin: 0 0 24px;
}
.guidance .section-title.mod-margin {
	margin: 0 0 40px;
}
*[class^='list-o-'] > li > .section-title {
	margin: 0 0 20px;
}
.section-title a {
	padding: 0 0 3px;
	border-bottom: 1px #111 dotted;
	color: #616977;
}
.section-title a:hover {
	text-decoration: none;
}
.section-title span {
	display: inline-block;
}
.section-title.mod-middle {
	font-size: 1.6rem !important;
}
.section-title.mod-small {
	font-size: 1.2rem !important;
}
.section-title.mod-text-narrow {
	margin: 0 0 2px !important;
}
.section-title.mod-strong {
	font-weight: bold;
}
.section-title.mod-strong .mod-large {
	color: #065FE3;
	font-size: 2.3rem;
}
.section-title.mod-text-extension-head {
	margin: 50px 0 8px;
}
/* form */
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #FFF inset !important;
}
.form-group {
	overflow: hidden;
	margin: 0 0 24px;
}
.form-group.mod-exp {
	margin: 0 0 16px !important;
}
.form-group.mod-extension {
	margin: 0 0 32px !important;
}
.form-group.mod-division {
	margin: 0 0 42px !important;
}
.form-group label {
	width: auto;
	margin-bottom: 0;
	padding: 0;
	color: #616977;
	font-weight: normal;
	font-size: 1.4rem;
}
.login .form-group {
	width: 100%;
	text-align: center;
}
.form-group input[type=text], .form-group input[type=tel], .form-group input[type=number], .form-group input[type=email], .form-group input[type=password] {
	margin: 0;
	padding: 0;
	border: 0;
	border-bottom: 1px #A2A2A2 dotted;
	border-radius: 0;
	background: none transparent;
	color: inherit;
	color: #616977;
	font-size: inherit;
	font-size: 1.8rem;
	vertical-align: middle;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: none;
	box-sizing: border-box;

	-moz-appearance: none;
}
.form-group input[type=text]::-ms-expand, .form-group input[type=tel]::-ms-expand, .form-group input[type=number]::-ms-expand, .form-group input[type=email]::-ms-expand, .form-group input[type=password]::-ms-expand {
	display: none;
}
.form-group input[type=text]::-ms-clear, .form-group input[type=tel]::-ms-clear, .form-group input[type=number]::-ms-clear, .form-group input[type=email]::-ms-clear, .form-group input[type=password]::-ms-clear {
	display: none;
}
.form-group input[type=text]::-ms-reveal, .form-group input[type=tel]::-ms-reveal, .form-group input[type=number]::-ms-reveal, .form-group input[type=email]::-ms-reveal, .form-group input[type=password]::-ms-reveal {
	display: none;
}
.form-group input[type=text]:focus, .form-group input[type=tel]:focus, .form-group input[type=number]:focus, .form-group input[type=email]:focus, .form-group input[type=password]:focus {
	border-bottom: 1px #A2A2A2 solid;
	box-shadow: none;

	webkit-box-shadow: none;
}
.form-group input[type=text]::-webkit-input-placeholder, .form-group input[type=tel]::-webkit-input-placeholder, .form-group input[type=number]::-webkit-input-placeholder, .form-group input[type=email]::-webkit-input-placeholder, .form-group input[type=password]::-webkit-input-placeholder {
	color: rgba(97, 105, 119, .5);
	font-weight: normal;
}
.form-group input[type=text]:-ms-input-placeholder, .form-group input[type=tel]:-ms-input-placeholder, .form-group input[type=number]:-ms-input-placeholder, .form-group input[type=email]:-ms-input-placeholder, .form-group input[type=password]:-ms-input-placeholder {
	color: rgba(97, 105, 119, .5);
	font-weight: normal;
}
.form-group input[type=text]::-moz-placeholder, .form-group input[type=tel]::-moz-placeholder, .form-group input[type=number]::-moz-placeholder, .form-group input[type=email]::-moz-placeholder, .form-group input[type=password]::-moz-placeholder {
	color: rgba(97, 105, 119, .5);
	font-weight: normal;
}
.form-group input[type=number] {
	-moz-appearance: textfield;
}
.form-group input[type=number]::-webkit-inner-spin-button, .form-group input[type=number]::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}
.form-group select, .form-group select:focus {
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	border-bottom: 1px #A2A2A2 dotted;
	border-radius: 0;
	background: none transparent;
	color: inherit;
	color: #616977;
	font-size: inherit;
	font-size: 1.8rem;
	vertical-align: middle;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: none;
	box-sizing: border-box;

	-moz-appearance: none;
}
.form-group select::-ms-expand, .form-group select:focus::-ms-expand {
	display: none;
}
.form-group select::-ms-clear, .form-group select:focus::-ms-clear {
	display: none;
}
.form-group select::-ms-reveal, .form-group select:focus::-ms-reveal {
	display: none;
}
.form-group select option, .form-group select:focus option {
	color: #333;
}
.form-group select:focus {
	border-bottom: 1px #A2A2A2 solid;
}
.form-group p {
	color: #616977;
	font-size: 1.8rem;
}
.text-o-guide + .form-group {
	margin: 32px 0;
}
.login .form-group {
	position: relative;
}
.login .form-group label {
	display: block;
	overflow: hidden;
	position: absolute;
	right: 2px;
	width: 11px;
	height: 100%;
	text-indent: -9999px;
}
.login .form-group label[for='mailAddress'] {
	background: url(/_/image/ico_user_01.png) no-repeat 0 50%;
	background-size: 11px 15px;
}
.login .form-group label[for='password'] {
	background: url(/_/image/ico_password_01.png) no-repeat 0 50%;
	background-size: 11px 15px;
}
.login .form-group input[type=text], .login .form-group input[type=tel], .login .form-group input[type=number], .login .form-group input[type=email], .login .form-group input[type=password] {
	padding: 0 20px 0 .4rem;
}
.form-inline .form-group {
	display: inline-block;
	margin: 0;
	vertical-align: middle;
}
.form-inline .form-group input[size='5'] {
	width: 80px;
}
.form-inline .form-group input[size='4'] {
	width: 62px;
}
.form-inline .form-group input[size='2'] {
	width: 44px;
}
.form-inline .form-group label {
	padding: 0 16px 0 0;
}
.form-inline .form-group:last-child label {
	padding: 0;
}
.form-group:last-child {
	margin-bottom: 0;
}
.form-o-select {
	display: block;
	overflow: hidden;
	position: relative;
}
.form-inline .form-o-select {
	display: inline-block;
}
.form-o-select select, .form-o-select select:focus {
	background: url(/_/image/ico_arrow_down.png) no-repeat 100% 1.25rem;
	background-size: 11px 6px;
}
.form-control {
	display: inline-block;
}
.form-inline select.form-control, .form-inline select.form-control:focus {
	width: auto;
	padding: 0 1.4rem 0 0;
}
.radio .form-control {
	width: auto;
}
.has-error .control-label {
	color: #00263F;
}
.has-error .form-control, .has-error .form-control:focus, .has-error input[type=text], .has-error input[type=tel], .has-error input[type=number], .has-error input[type=email], .has-error input[type=password] {
	border-bottom: 1px #F29191 solid;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.has-error input[type=text], .has-error input[type=tel], .has-error input[type=number], .has-error input[type=email], .has-error input[type=password] {
	background: #FFF;
}
.has-error input[type=text], .has-error input[type=email] {
	color: #E22323;
}
#customerBirthYear + label, #customerBirthMonth + label, #customerBirthDay + label {
	margin: 0;
	font-size: 1.8rem;
	vertical-align: middle;
}
/* checkbox & radio */
.checkbox {
	margin: 0 0 16px;
}
.checkbox.mod-extension {
	margin: 0 0 32px;
}
.checkbox label {
	padding: 0 0 0 20px;
	cursor: pointer;
}
.checkbox input[type=checkbox] {
	display: none;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none transparent;
	color: inherit;
	font-size: inherit;
	vertical-align: middle;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: none;
	box-sizing: border-box;

	-moz-appearance: none;
}
.checkbox input[type=checkbox]::-ms-expand {
	display: none;
}
.checkbox input[type=checkbox]::-ms-clear {
	display: none;
}
.checkbox input[type=checkbox]::-ms-reveal {
	display: none;
}
.checkbox input[type=checkbox] + span {
	display: block;
	position: relative;
	padding: 0 0 0 10px;
	color: #616977;
	font-size: 1.4rem;
}
.checkbox input[type=checkbox] + span:before {
	content: ' ';
	position: absolute;
	top: 1px;
	left: -20px;
	width: 18px;
	height: 18px;
	margin: 0;
	border: 1px #D2D2D2 solid;
	border-radius: 2px;
	background: #F5F5F5;
}
.checkbox input[type=checkbox]:checked + span:before {
	border: 1px #0082F9 solid;
	background: #FFF;
}
.checkbox input[type=checkbox]:checked + span:after {
	content: ' ';
	display: block;
	position: absolute;
	top: 5px;
	left: -16px;
	width: 10px;
	height: 7px;
	margin: 0;
	border-bottom: 2px #0082F9 solid;
	border-left: 2px #0082F9 solid;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.radio, .radio-inline {
	margin: 0 0 10px;
}
.radio label, .radio-inline label {
	padding: 0 0 0 20px;
	font-size: 1.8rem;
}
.radio input[type=radio], .radio-inline input[type=radio] {
	display: none;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none transparent;
	color: inherit;
	font-size: inherit;
	vertical-align: middle;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: none;
	box-sizing: border-box;

	-moz-appearance: none;
}
.radio input[type=radio]::-ms-expand, .radio-inline input[type=radio]::-ms-expand {
	display: none;
}
.radio input[type=radio]::-ms-clear, .radio-inline input[type=radio]::-ms-clear {
	display: none;
}
.radio input[type=radio]::-ms-reveal, .radio-inline input[type=radio]::-ms-reveal {
	display: none;
}
.radio input[type=radio] + span, .radio-inline input[type=radio] + span {
	padding: 0 0 0 6px;
}
.radio input[type=radio] + span:before, .radio-inline input[type=radio] + span:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 18px;
	height: 18px;
	margin-top: -9px;
	border: 1px #D2D2D2 solid;
	border-radius: 30px;
	background: #F5F5F5;
	box-sizing: border-box;
}
.radio input[type=radio]:checked + span:before, .radio-inline input[type=radio]:checked + span:before {
	border: 1px #0082F9 solid;
}
.radio input[type=radio]:checked + span:after, .radio-inline input[type=radio]:checked + span:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 5px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-radius: 8px;
	background: #0082F9;
	box-sizing: border-box;
}
/* customize btn */
.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:focus {
	background: #0082F9;
}
.btn-primary.mod-detained, .btn-primary.mod-detained:hover, .btn-primary.mod-detained:active, .btn-primary.mod-detained:focus {
	border: 1px #0082F9 solid;
	background: #FFF;
	color: #007DFF;
}
.btn-primary[disabled='disabled'], .btn-primary.disabled, .btn-primary[disabled='disabled']:hover, .btn-primary.disabled:hover, .btn-primary[disabled='disabled']:active, .btn-primary.disabled:active, .btn-primary[disabled='disabled']:focus, .btn-primary.disabled:focus {
	border: none;
	background: #A8AFB9;
	color: #FFF;
}
/* customize text */
.text-danger {
	margin: 0;
	padding: 0 0 2px;
	color: #E22323 !important;
	font-weight: bold;
	font-size: 1.4rem;
	list-style: none;
}
#allErrorList > div:first-child .text-danger, #allErrorList > .text-danger {
	margin: 0;
}
.text-danger a {
	color: #E22323;
}
.login .text-danger {
	margin: 0 -37px;
	padding: 15px 0;
	background: #FAFAFA;
	color: #E22323;
	font-size: 1.2rem;
	text-align: center;
}
.login .text-danger li:before {
	content: ' ';
	display: inline-block;
	width: 17px;
	height: 17px;
	margin: 0 4px 0 0;
	background: url(/_/image/ico_minus.png) no-repeat 0 0;
	background-size: 17px;
	vertical-align: middle;
}
.help-block {
	color: #616977;
	font-size: 1.2rem;
}
/* customize alert */
.alert {
	margin: 0 -37px;
	border: none;
	background: #FAFAFA;
	font-size: 1.2rem;
}
.alert p {
	position: relative;
	padding: 0 0 0 20px;
}
.alert p:before {
	content: ' ';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 17px;
	height: 17px;
}
.alert.alert-success {
	color: #065FE3;
}
.alert.alert-success p:before {
	background: url(/_/image/ico_check.png) no-repeat 0 0;
	background-size: 17px;
}
.alert.alert-danger {
	color: #E22323;
}
.alert.alert-danger p:before {
	background: url(/_/image/ico_minus.png) no-repeat 0 0;
	background-size: 17px;
}
/* customize collapse */
.collapse p a, .collapsing p a {
	color: #616977;
	text-decoration: underline;
}
/* add style --------------------------- */
/* add layout */
.layout-o-center {
	text-align: center;
}
.layout-o-right {
	text-align: right;
}
.layout-o-left {
	text-align: left !important;
}
.layout-o-image {
	margin: 24px auto 38px;
}
.wrapper-page-title + div .layout-o-image {
	margin: 0 auto 38px;
}
.layout-o-line-checkbox {
	margin-left: 32px;
}
.layout-o-payout {
	display: table;
	width: 100%;
	table-layout: fixed;
}
.layout-o-payout span {
	display: table-cell;
	color: #616977;
	font-size: 1.2rem;
	vertical-align: baseline;
}
.layout-o-payout span:nth-child(1) {
	width: 45%;
}
.layout-o-payout span:nth-child(2) {
	width: 20%;
}
.layout-o-payout span:nth-child(3) {
	width: 35%;
	text-align: right;
}
/* add box */
.collapse.box-o-inner, .collapsing.box-o-inner {
	margin: 0 0 0 -10px;
}
.box-o-default *:last-child, .box-o-border-gray *:last-child, .box-o-gray *:last-child {
	margin-bottom: 0;
}
.box-o-default hr, .box-o-border-gray hr, .box-o-gray hr {
	height: 1px;
	background: #CCC;
}
.box-o-default h2, .box-o-border-gray h2, .box-o-gray h2 {
	margin: 24px 0 16px;
	font-size: 1.6rem;
}
.box-o-default h2:first-child, .box-o-border-gray h2:first-child, .box-o-gray h2:first-child {
	margin: 0 0 16px;
}
.box-o-default .section-title, .box-o-border-gray .section-title, .box-o-gray .section-title {
	margin: 0 0 16px;
}
.box-o-default ul > li:last-child .link-o-file, .box-o-border-gray ul > li:last-child .link-o-file, .box-o-gray ul > li:last-child .link-o-file {
	margin: 0;
}
.box-o-border-gray {
	margin: 0 0 18px;
	padding: 18px;
	border: 1px #E6EBF2 solid;
}
.box-o-inner, .box-o-gray {
	margin: 18px 0 0;
}
.js-documents > .box-o-inner:first-child, .js-documents > .box-o-gray:first-child {
	margin: 0;
}
.box-o-inner {
	padding: 0 .5rem;
}
.box-o-gray {
	padding: 15px;
	background: #FAFAFA;
}
.box-o-gray.mod-full {
	margin-right: -37px;
	margin-bottom: 40px;
	margin-left: -37px;
	padding: 36px 37px;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
.box-o-gray.mod-full:last-child {
	margin-bottom: 0;
}
.top .box-o-gray.mod-full {
	padding-bottom: 54px;
}
.box-o-gray:first-child {
	margin-top: 0;
}
.box-o-alert {
	background: #FAFAFA;
}
.box-o-alert .alert {
	margin: 0;
	padding: 16px 0;
}
.box-o-default {
	padding: 0 0 18px;
}
.radio + .collapsing .box-o-default {
	margin: -2px 0 0;
	padding: 0 0 10px;
}
.box-o-collapse {
	padding: 0 0 16px;
}
.box-o-collapse.mod-inner {
	padding: 10px 0 1px;
}
.box-o-collapse .box-title {
	color: #00263F;
	font-size: 1.6rem;
}
.box-o-collapse .box-title.mod-parallel {
	margin: 0 0 2px 2.5rem;
	color: #616977;
	font-size: 1.2rem;
}
.box-o-collapse p, .box-o-collapse ol, .box-o-collapse ul, .box-o-collapse dl {
	color: #616977;
	font-size: 1.2rem;
}
.box-o-collapse p {
	margin: 0 0 8px;
}
.box-o-collapse p:last-child {
	margin-bottom: 0;
}
.box-o-collapse dl {
	margin: 0 0 16px;
}
.box-o-collapse dl:last-child {
	margin: 0;
}
.box-o-collapse dl > dt {
	margin: 4px 0;
	font-weight: normal;
}
.box-o-collapse dl > dt:first-child {
	margin: 0 0 4px;
}
.box-o-collapse dl > dd {
	padding: 0 0 0 1.5rem;
	text-indent: -1.5rem;
}
.box-o-address {
	padding: 0 0 0 .4rem;
	text-indent: -.4rem;
}
.box-o-address p {
	display: inline;
}
.box-o-status {
	margin: 0 0 50px;
	padding: 8px 0;
	background: #E5EFFB;
	text-align: center;
}
.box-o-section {
	margin: 0 0 72px;
}
.box-o-section:last-child {
	margin-bottom: 0;
}
.box-o-graph {
	padding: 84px 0 18px;
}
/* identity */
.box-o-select.is-inactive {
	display: none;
}
.box-o-content {
	display: none;
}
.box-o-content.is-active {
	display: block;
}
.box-o-content.mod-extension {
	margin: 32px 0 0;
}
.box-o-indent {
	padding: 0 0 0 30px;
}
.wrapper-identity-text div {
	display: none;
}
.wrapper-identity-text div.is-active {
	display: block;
}
.wrapper-identity-note > div {
	display: none;
}
.wrapper-identity-note > div.is-active {
	display: block;
}
/* 保有銘柄 */
.box-o-asset-table h2:after {
	content: '低成長リスク対策';
	margin: 0 0 0 8px;
	font-size: 1.2rem;
}
/* add list */
.list-o-none {
	margin: 0;
	padding: 0;
}
.list-o-none > li {
	margin: 32px 0 0;
	color: #616977;
	font-size: 1.6rem;
	list-style-type: none;
}
.list-o-none > li:first-child {
	margin: 0;
}
.list-o-none > li:last-child > *:last-child {
	margin-bottom: 0;
}
.list-o-default, .list-o-asterisk, .list-o-minus {
	margin: 0;
	padding: 0 0 0 1rem;
	text-indent: -1rem;
}
.list-o-default > li, .list-o-asterisk > li, .list-o-minus > li {
	margin: 0 0 12px;
	color: #616977;
	font-size: 1.6rem;
	list-style-type: none;
}
.list-o-default > li:before, .list-o-asterisk > li:before, .list-o-minus > li:before {
	margin: 0 .5rem 0 0;
}
.list-o-default > li:before {
	content: '･';
}
.list-o-asterisk > li {
	font-size: 1.2rem;
}
.list-o-asterisk > li:before {
	content: '*';
}
.list-o-minus > li:before {
	content: '-';
}
.list-o-number {
	margin: 0 0 18px;
	padding: 0 0 0 3rem;
	color: #616977;
	font-size: 1.4rem;
}
.list-o-number > li {
	margin: 16px 0 0;
}
.list-o-number > li > p {
	margin: 0 0 4px;
	font-size: 1.4rem;
}
.list-o-number-circle {
	padding: 0 0 0 1.25rem;
	color: #616977;
	font-size: 1.2rem;
}
.list-o-number-circle li {
	position: relative;
	list-style: none;
}
.list-o-number-circle li:before {
	display: block;
	position: absolute;
	top: 0;
	left: -1.25rem;
	color: #616977;
}
.list-o-number-circle li:nth-child(1):before {
	content: '①';
}
.list-o-number-circle li:nth-child(2):before {
	content: '②';
}
.list-o-number-circle li:nth-child(3):before {
	content: '③';
}
.list-o-number-circle li:nth-child(4):before {
	content: '④';
}
.list-o-number-circle li:nth-child(5):before {
	content: '⑤';
}
.list-o-number-circle li:nth-child(6):before {
	content: '⑥';
}
.list-o-number-circle li:nth-child(7):before {
	content: '⑦';
}
.list-o-number-circle li:nth-child(8):before {
	content: '⑧';
}
.list-o-number-circle li:nth-child(9):before {
	content: '⑨';
}
.list-o-number-circle li:nth-child(10):before {
	content: '⑩';
}
.list-o-file {
	margin: 0;
}
.list-o-file.mod-extension {
	margin: 0 0 32px;
}
.list-o-file > li {
	position: relative;
	font-size: 1.6rem;
}
.list-o-file > li a, .list-o-file > li span {
	color: #616977;
	font-size: 1.6rem;
}
.list-o-file > li a.mod-small, .list-o-file > li span.mod-small {
	font-size: 1.2rem;
}
.list-o-file > li.js-file-stored, .list-o-file > li.js-file-selected {
	border-bottom: 1px #E6EBF2 solid;
}
.list-o-file > li:first-of-type.js-file-stored, .list-o-file > li:first-of-type.js-file-selected {
	border-top: 1px #E6EBF2 solid;
}
.list-o-file > li.js-file-stored {
	padding: 16px 105px 16px 0;
}
.list-o-file > li.js-file-selected {
	position: relative;
	margin: -1px 0 0;
	padding: 16px 0;
}
.list-o-file > li:last-child .js-file-upload {
	display: none;
}
.list-o-file.mod-multi {
	border-top: 1px #E6EBF2 solid;
}
.list-o-file.mod-multi li {
	padding: 20px 0;
	border-bottom: 1px #E6EBF2 solid;
}
.list-o-file-div {
	margin: 0;
}
.list-o-file-div > li {
	position: relative;
	border-bottom: 1px #E6EBF2 solid;
	color: #616977;
	font-size: 1.6rem;
}
.list-o-file-div > li a {
	margin: 0;
	padding: 14px 0 0;
	font-size: 1.4rem;
}
.list-o-file-div > li a, .list-o-file-div > li a:hover {
	color: #007DFF;
}
.list-o-file-div > li:first-child a {
	padding: 0;
}
.list-o-file-div > li span {
	display: block;
	padding: 0 0 12px;
	color: #007DFF;
	font-size: 1.1rem;
}
.list-o-file-margin {
	margin: 10px 0;
}
.list-o-file-margin > li {
	margin: 0 0 10px;
}
.list-o-information li {
	position: relative;
	min-height: 78px;
	padding: 16px 0;
	border-bottom: 1px #E6EBF2 solid;
}
.list-o-information li .js-unread-mark, .list-o-information li .js-opened-mark {
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 0;
	width: 10px;
	height: 10px;
	margin: -5px 0 0;
	text-indent: -9999px;
}
.list-o-information li .js-unread-mark:before {
	content: ' ';
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background: #0065DD;
}
.list-o-information li .js-opened-mark {
	display: none;
}
.list-o-information li:first-child {
	margin: -10px 0 0;
}
.list-o-information li a {
	color: #007DFF;
}
.list-o-information li a + .text-o-default {
	margin: 0;
	padding: 0 0 0 32px;
}
.list-o-information li.js-opened a {
	color: #616977;
}
.list-o-dl-indent {
	margin-bottom: 0;
}
.list-o-dl-indent > dt {
	margin: 0 0 8px -.75rem;
	padding: 0 0 0 1rem;
	color: #616977;
	font-weight: normal;
	font-size: 1.2rem;
	text-indent: -1rem;
}
.list-o-dl-indent > dd {
	margin: 0 0 8px;
	padding: 0 0 0 1.75rem;
	color: #616977;
	font-size: 1.2rem;
	text-indent: -1.75rem;
}
.list-o-dl-indent > dd:last-child {
	margin: 0;
}
.list-o-dl-assets > dt, .list-o-dl-assets > dd {
	color: #007DFF;
}
.list-o-dl-assets > dt {
	font-size: 1.2rem;
	line-height: 3;
}
.list-o-dl-assets > dd {
	font-size: 2.4rem;
}
.list-o-dl-table {
	display: table;
	table-layout: fixed;
}
.list-o-dl-table > dt, .list-o-dl-table > dd {
	color: #616977;
	vertical-align: middle;
}
.list-o-dl-table > dt {
	display: table-cell;
	width: 130px;
	font-size: 1.4rem;
}
.list-o-dl-table > dd {
	display: table-cell;
	font-size: 1.8rem;
}
.list-o-dl-table > dd:before, .list-o-dl-table > dd:after {
	display: none;
}
.list-o-dl-attention {
	display: inline-block;
	color: #065FE3;
	vertical-align: top;
}
.guidance .list-o-dl-attention {
	margin: 0 0 11px;
}
.list-o-dl-attention + .list-o-dl-attention {
	margin-left: 4px;
}
.list-o-dl-attention dt {
	font-weight: 500;
	font-size: 1.4rem;
}
.list-o-dl-attention dt span {
	font-size: 5.4rem;
}
.list-o-dl-attention dt span.mod-middle {
	font-size: 4.4rem;
}
.list-o-dl-attention dt span.mod-small {
	font-size: 3.2rem;
}
.list-o-dl-attention dd {
	font-size: 1.1rem;
}
.list-o-payout {
	border-top: 1px #E6EBF2 solid;
}
.list-o-payout li {
	border-bottom: 1px #E6EBF2 solid;
}
.list-o-payout li span {
	padding: 18px 0;
	line-height: 1;
}
.list-o-payout li span:nth-child(1) {
	color: #616977;
	font-size: 1.3rem;
}
.list-o-payout li span:nth-child(2) {
	color: #616977;
	font-size: 1.4rem;
}
.list-o-payout li span:nth-child(2):after {
	content: ' ';
	display: inline-block;
	width: 18px;
	height: 15px;
	margin: 0 0 0 8px;
	vertical-align: bottom;
}
.list-o-payout li span:nth-child(2).is-withdrawal:after {
	background: url(/_/image/ico_payout_withdrawal.png) no-repeat 0 0;
	background-size: 18px 15px;
}
.list-o-payout li span:nth-child(2).is-deposit:after {
	background: url(/_/image/ico_payout_deposit.png) no-repeat 0 0;
	background-size: 18px 15px;
}
.list-o-payout li span:nth-child(3) {
	color: #00263F;
	font-size: 1.3rem;
}
.list-o-payout:last-child {
	margin: 0;
}
.list-o-step {
	padding: 0;
	list-style: none;
}
.list-o-step li {
	margin: 0 0 5px;
	border-radius: 5px;
	background: #FFF;
	box-shadow: rgba(0, 0, 0, .05) 0 0 3px 0;
}
.list-o-step li:last-child {
	margin: 0;
}
.list-o-step li a {
	display: block;
	position: relative;
	padding: 24px 36px 24px 52px;
	color: #007DFF;
	font-size: 1.4rem;
}
.list-o-step li a span {
	display: block;
	font-size: 1.2rem;
}
.list-o-step li a:hover {
	text-decoration: none;
}
.list-o-step li a:before, .list-o-step li a:after {
	content: ' ';
	display: block;
	position: absolute;
	top: 50%;
}
.list-o-step li a:before {
	left: 16px;
	width: 31px;
	height: 31px;
	margin: -16px 0 0;
	background: url(/_/image/ico_list_01.png) no-repeat 0 0;
	background-size: 31px;
}
.list-o-step li a:after {
	right: 23px;
	width: 10px;
	height: 13px;
	margin: -7px 0 0;
	background: url(/_/image/ico_arrow_right_blue.png) no-repeat 0 0;
	background-size: 10px 13px;
}
.list-o-step-table {
	display: block;
	width: 300px;
	margin: 0 auto 16px;
	padding: 0;
	list-style: none;
}
.guidance .list-o-step-table {
	margin: 0 auto 48px;
}
.list-o-step-table li {
	width: 100%;
	margin: 0 0 8px;
	table-layout: fixed;
}
.list-o-step-table li figure {
	margin: 0 0 8px;
	text-align: center;
}
.list-o-step-table li h3 {
	margin: 0 0 8px;
	color: #00263F;
	font-weight: bold;
	font-size: 1.4rem;
	line-height: 1.4;
	text-align: center;
}
.list-o-step-table li h3 span {
	display: block;
	color: #616977;
	font-size: 1.2rem;
}
.list-o-step-table li p {
	color: #616977;
	font-size: 1.1rem;
	text-align: center;
}
.list-o-step-table li p.unit-sup {
	position: relative;
}
.list-o-step-table li p.unit-sup:before {
	content: ' ';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #B0B4BB;
}
.list-o-step-table li p.unit-sup span {
	display: inline-block;
	position: relative;
	z-index: 1;
	padding: 0 13px;
	background: #FFF;
	color: #616977;
}
.list-o-step-table li p:last-child {
	margin: 0 0 32px;
}
.list-o-news {
	border-top: 1px #CCE0F7 solid;
}
.list-o-news li {
	padding: 18px 0 8px;
	border-bottom: 1px #CCE0F7 solid;
}
.list-o-news li a, .list-o-news li a:visited, .list-o-news li a:active, .list-o-news li a:hover {
	text-decoration: none;
}
.list-o-news li a, .list-o-news li a:visited, .list-o-news li a:active, .list-o-news li a:hover, .list-o-news li a *, .list-o-news li a:visited *, .list-o-news li a:active *, .list-o-news li a:hover * {
	color: #007DFF;
}
.list-o-news li p {
	margin-bottom: 8px;
}
.list-o-normal {
	color: #616977;
	font-size: 1.4rem;
	line-height: 1.5;
}
.list-o-normal li {
	margin: 0 0 8px;
}
.list-o-normal.mod-middle {
	font-size: 1.6rem;
}
.list-o-normal.mod-extension {
	margin: 0 0 32px;
}
/* add table */
.table-o-bank {
	margin: 0 auto 40px;
	table-layout: fixed;
}
.table-o-bank:first-child {
	margin: 0 0 40px;
}
.table-o-bank.mod-unregistered {
	margin: 0 0 10px;
}
.table-o-bank tr th, .table-o-bank tr td {
	padding: 0 0 10px;
	color: #616977;
	font-weight: normal;
	text-align: left;
	vertical-align: baseline;
}
.table-o-bank tr th {
	width: 125px;
	font-size: 1.4rem;
}
.table-o-bank tr th span {
	display: inline-block;
}
.table-o-bank tr td {
	font-size: 1.8rem;
}
.table-o-bank tr td p {
	font-size: 1.8rem;
}
.table-o-bank tr td p span {
	padding: 0;
}
.table-o-bank tr td p span + span {
	margin: 0 0 0 8px;
}
.table-o-bank tr:last-child th, .table-o-bank tr:last-child td {
	padding: 0;
}
.table-o-bank .form-inline label {
	font-size: 1.6rem;
}
.table-o-bank .form-inline label input {
	width: auto;
}
.table-o-bank .form-inline label input[size='5'] {
	width: 80px;
}
.table-o-bank .form-inline label input[size='4'] {
	width: 62px;
}
.table-o-bank .form-inline label input[size='2'] {
	width: 44px;
}
.table-o-portfolio {
	border-right: 1px #E6EBF2 solid;
	border-bottom: 1px #E6EBF2 solid;
}
.table-o-portfolio thead {
	color: #00263F;
}
.table-o-portfolio thead tr th {
	border: 1px #E6EBF2 solid;
	border-bottom-width: 0;
}
.table-o-portfolio tbody tr:hover td:first-child {
	background: #E9E9E9;
}
.table-o-portfolio th, .table-o-portfolio td {
	font-size: 1.2rem;
	vertical-align: middle;
}
.table-o-portfolio th:first-child, .table-o-portfolio td:first-child {
	background: #F5F5F5;
}
.table-o-portfolio th:nth-child(2), .table-o-portfolio td:nth-child(2) {
	width: 25%;
}
.table-o-portfolio th:nth-child(3), .table-o-portfolio td:nth-child(3), .table-o-portfolio th:nth-child(4), .table-o-portfolio td:nth-child(4) {
	width: 60px;
}
.table-o-portfolio th {
	text-align: center;
}
.table-o-portfolio td:nth-child(2), .table-o-portfolio td:nth-child(3), .table-o-portfolio td:nth-child(4) {
	text-align: right;
}
/* 保有銘柄 */
.table.table-o-asset {
	width: 100%;
	margin: 0 0 50px;
	border: none;
	table-layout: fixed;
}
.table.table-o-asset th, .table.table-o-asset td {
	color: #616977;
	font-weight: normal;
	font-size: 1.2rem;
	vertical-align: middle;
}
.table.table-o-asset th:nth-child(1), .table.table-o-asset td:nth-child(1) {
	width: 55px;
}
.table.table-o-asset th:nth-child(2), .table.table-o-asset td:nth-child(2) {
	width: 100%;
}
.table.table-o-asset th:nth-child(3), .table.table-o-asset td:nth-child(3) {
	width: 110px;
	text-align: right;
}
.table.table-o-asset th {
	padding: 0 0 4px;
	border: none;
}
.table.table-o-asset td {
	height: 50px;
	padding: 0;
	border-right: none;
	border-left: none;
	vertical-align: middle;
}
.table.table-o-asset td:first-child:before {
	content: ' ';
	display: inline-block;
	width: 9px;
	height: 9px;
	margin: 0 2px 0 0;
	border-radius: 50%;
}
.box-o-asset-table:nth-of-type(1) .table.table-o-asset td:first-child:before {
	background: #69DCFA;
}
.box-o-asset-table:nth-of-type(2) .table.table-o-asset td:first-child:before {
	background: #0065DD;
}
.box-o-asset-table:nth-of-type(3) .table.table-o-asset td:first-child:before {
	background: #004EAA;
}
.table.table-o-asset td .number-amount {
	display: block;
}
.table.table-o-asset td .number-amount:first-child {
	color: #616977;
	font-size: 1.6rem;
}
.table.table-o-asset td .number-amount:last-child {
	font-size: 1.2rem;
}
.table.table-o-asset td .number-amount.number-positive:last-child {
	color: #007DFF;
}
.table.table-o-asset td .number-amount.number-negative:last-child {
	color: #C33;
}
/* add btn */
.btn-md {
	display: block;
	width: 270px;
	height: 45px;
	margin: 0 auto 16px;
	font-size: 1.8rem;
}
a.btn-md {
	padding: 0 12px;
	line-height: 45px;
}
.wrapper-page-title + * > .btn-md {
	margin: 0 auto 20px;
}
.btn-md + .btn-md {
	margin: 16px auto;
}
.js-file-stored .btn-o-layout, .js-file-selected .btn-o-layout {
	display: inline-block !important;
	position: relative;
	width: 100%;
	padding: 0 30px 0 0;
}
.js-file-stored .btn-o-layout .btn-o-delete, .js-file-selected .btn-o-layout .btn-o-delete {
	position: absolute;
	top: 50%;
	right: 0;
	width: 20px;
	height: 20px;
	margin: -10px 10px 0 0;
	border: 0;
	background: url(/_/image/ico_timesRound_01.png) no-repeat 0 0;
	background-size: 20px;
	text-indent: -9999px;
}
.btn-o-upload {
	margin: 16px auto 36px;
}
.btn-o-upload .input-group {
	margin: 0 auto;
}
.btn-o-upload label {
	width: 210px;
	height: 44px;
}
.btn-o-upload label, .btn-o-upload label:hover {
	border: 1px #0082F9 solid;
	background: #FFF;
}
.btn-o-upload label .icon-span-filestyle {
	display: none;
}
.btn-o-upload label .buttonText {
	position: relative;
	color: #007DFF;
	font-size: 1.6rem;
	line-height: 42px;
}
.btn-o-upload label .buttonText:before {
	content: ' ';
	display: inline-block;
	width: 16px;
	height: 14px;
	margin: -2px 6px 0 0;
	background: #FFF url(_/image/ico_file_upload.png) no-repeat 0 0;
	background-size: 16px 14px;
	vertical-align: middle;
}
.btn-o-upload + span {
	display: none;
}
.js-file-selected .btn-o-upload {
	display: none;
}
/* add text */
.text-o-default {
	margin: 0 0 16px;
	color: #616977;
	font-size: 1.4rem !important;
	line-height: 1.5;
	letter-spacing: normal;
}
.text-o-default a {
	border-bottom: 1px #111 dotted;
	color: #007DFF;
}
.text-o-default a:hover {
	text-decoration: none;
}
.box-o-border-gray + .text-o-default, .box-o-gray + .text-o-default {
	margin: 18px 0 18px;
}
.collapse + .text-o-default {
	margin: 18px 0;
}
.form-o-select + .text-o-default {
	margin: 14px 0;
}
.box-o-status .text-o-default {
	margin: 0;
}
.text-o-default.mod-small, .text-o-default .mod-small {
	font-size: 1.2rem !important;
}
.text-o-default.mod-middle {
	font-size: 1.6rem !important;
}
.text-o-default.mod-large {
	font-size: 1.8rem !important;
}
.text-o-default.mod-line {
	padding: 18px 0;
	border-top: 1px #E5E5E5 solid;
	border-bottom: 1px #E5E5E5 solid;
}
.text-o-lead {
	margin: 0 0 32px;
	color: #616977;
	font-size: 1.2rem !important;
	line-height: 1.5;
	letter-spacing: normal;
}
.guidance .text-o-lead {
	margin: 0 0 43px;
}
.text-o-modal {
	margin: 0 0 24px;
}
.text-o-modal.mod-narrow {
	margin: 0 0 12px;
}
.guidance .text-o-modal {
	margin: 0 0 43px;
}
.text-o-step {
	margin: 0 0 12px;
	color: #065FE3;
	font-weight: normal;
	font-size: 1.6rem;
}
.text-o-amount {
	padding: 0 0 7px 4px;
	font-size: 1.8rem;
}
.text-o-large {
	font-size: 4.5rem !important;
}
.text-o-large.mod-number {
	margin: 0 0 14px;
	color: #616977;
	line-height: 1;
}
.text-o-large .number-unit {
	font-size: 1.4rem !important;
}
.text-o-middle {
	font-size: 2.4rem !important;
}
.text-o-middle.mod-number {
	color: #065FE3;
}
.text-o-middle.mod-number .number-negative {
	color: #616977;
}
.text-o-middle .number-unit {
	font-size: 1.4rem !important;
}
.text-o-small {
	color: #616977;
	font-size: 1.2rem !important;
}
.text-o-small.mod-title {
	color: #00263F;
	font-weight: bold;
}
.text-o-small.mod-title span {
	display: block;
	color: #616977;
	font-size: 1.1rem;
}
.text-o-price {
	margin: 0 0 0 24px;
	font-size: 1.8rem;
}
.text-o-price + .text-o-price {
	margin: 0;
}
.text-o-asterisk {
	margin: 0 0 18px;
	padding: 0 0 0 1.25rem;
	color: #616977;
	font-size: 1.2rem !important;
	text-indent: -1.25rem;
}
.collapse + .text-o-asterisk {
	margin: 18px 0;
}
.text-o-asterisk:before {
	content: '*';
	margin: 0 .5rem 0 0;
}
.text-o-asterisk.mod-red {
	color: #C33;
}
.text-o-guide {
	margin: 0 0 32px;
	color: #616977;
	font-size: 1.6rem !important;
	line-height: 1.625;
}
.wrapper-identity-text .text-o-guide {
	margin: 0 0 16px;
}
.text-o-note {
	margin: 16px 0 0;
	color: #616977;
	font-size: 1.2rem !important;
	text-align: center;
}
.guidance .text-o-note {
	margin: 0 0 20px;
}
.text-o-status {
	position: absolute;
	top: 50%;
	right: 0;
	height: 20px;
	margin: -10px 0 0;
	padding: 0 5px;
	background: #E6EBF3;
	color: #616977;
	font-size: 1.2rem;
	line-height: 20px;
}
.text-o-information-date {
	font-size: 1.4rem;
}
.text-o-information-title {
	font-size: 1.8rem;
}
.text-o-information-date, .text-o-information-title {
	display: block;
}
.list-o-information .text-o-information-date, .list-o-information .text-o-information-title {
	padding: 0 0 0 32px;
}
.text-o-news-title {
	margin: 0 0 8px;
	color: #616977;
	font-size: 1.4rem;
}
.text-o-enclose {
	display: inline-block;
	margin: 0 0 0 6px;
	padding: 2px 5px;
	background: #C6CAD1;
	color: #FFF;
	font-size: 1rem;
	line-height: 1;
	vertical-align: middle;
}
/* add link */
.link-o-default {
	display: inline-block;
	padding: 6px 12px;
	font-size: 1.4rem;
}
.link-o-default, .link-o-default:hover {
	color: #007DFF;
	text-decoration: none;
}
.link-o-dotted, .link-o-caret, .link-o-file, .link-o-modal {
	display: inline-block;
	position: relative;
	margin: 0;
	font-size: 1.2rem;
}
.link-o-dotted, .link-o-caret, .link-o-file, .link-o-modal, .link-o-dotted:hover, .link-o-caret:hover, .link-o-file:hover, .link-o-modal:hover, .link-o-dotted:active, .link-o-caret:active, .link-o-file:active, .link-o-modal:active, .link-o-dotted:focus, .link-o-caret:focus, .link-o-file:focus, .link-o-modal:focus {
	text-decoration: none;
}
.link-o-dotted.mod-blue, .link-o-caret.mod-blue, .link-o-file.mod-blue, .link-o-modal.mod-blue, .link-o-dotted.mod-blue:hover, .link-o-caret.mod-blue:hover, .link-o-file.mod-blue:hover, .link-o-modal.mod-blue:hover, .link-o-dotted.mod-blue:active, .link-o-caret.mod-blue:active, .link-o-file.mod-blue:active, .link-o-modal.mod-blue:active, .link-o-dotted.mod-blue:focus, .link-o-caret.mod-blue:focus, .link-o-file.mod-blue:focus, .link-o-modal.mod-blue:focus {
	color: #007DFF;
}
.link-o-dotted.mod-extension, .link-o-caret.mod-extension, .link-o-file.mod-extension, .link-o-modal.mod-extension {
	margin: 0 0 32px;
}
.link-o-dotted, .link-o-caret, .link-o-file, .link-o-dotted:hover, .link-o-caret:hover, .link-o-file:hover, .link-o-dotted:active, .link-o-caret:active, .link-o-file:active, .link-o-dotted:focus, .link-o-caret:focus, .link-o-file:focus {
	color: #616977;
}
.link-o-modal, .link-o-modal:hover, .link-o-modal:active, .link-o-modal:focus {
	color: #007DFF;
}
.link-o-dotted {
	padding: 0 0 2px;
}
.link-o-dotted, .link-o-dotted:hover, .link-o-dotted:active, .link-o-dotted:focus {
	border-bottom: 1px #8A8A8A dotted;
}
.link-o-dotted.mod-blue, .link-o-dotted:hover.mod-blue, .link-o-dotted:active.mod-blue, .link-o-dotted:focus.mod-blue {
	border-bottom: 1px #0082F9 dotted;
}
li > .link-o-dotted {
	margin: 0;
	text-indent: 0;
}
.link-o-dotted.mod-inline {
	margin: 0 0 -3px;
	padding: 0;
}
.link-o-caret {
	padding: 0 12px 0 0;
	border: none;
	background: transparent;
}
.link-o-caret:after {
	content: ' ';
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 8px;
	height: 8px;
	margin: -5px 0 0;
	background: url(/_/image/ico_arrowRound_right_02.png) no-repeat 0 0;
	background-size: 8px;
}
.link-o-caret.mod-blue:after {
	background: url(/_/image/ico_arrowRound_right.png) no-repeat 0 0;
	background-size: 8px;
}
.link-o-file {
	padding: 0 12px 0 0;
}
.link-o-file:after {
	content: ' ';
	display: inline-block;
	width: 12px;
	height: 15px;
	margin: -2px 0 0 4px;
	background: url(/_/image/ico_file_01.png) no-repeat 0 0;
	background-size: 12px 15px;
	vertical-align: middle;
}
.list-o-file-div .link-o-file:after {
	margin: -5px 0 0 4px;
}
.list-o-file .link-o-file:after {
	background: url(/_/image/ico_file_02.png) no-repeat 0 0;
	background-size: 12px 15px;
}
.list-o-file .js-document-unviewed .link-o-file {
	color: #007DFF;
	font-weight: normal;
}
.list-o-file .js-document-unviewed .link-o-file:hover {
	text-decoration: underline;
}
.list-o-file .js-document-unviewed .link-o-file:after {
	background: url(/_/image/ico_file_01.png) no-repeat 0 0;
	background-size: 12px 15px;
}
.link-o-file li {
	margin: 0;
}
.link-o-modal {
	padding: 0 0 0 12px;
}
.link-o-modal:before {
	content: ' ';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 8px;
	height: 9px;
	margin: -5px 0 0;
	background: url(/_/image/ico_balloon_01.png) no-repeat 0 0;
	background-size: 8px 9px;
}
.list-o-links, .list-o-link-other {
	margin: 0 0 32px;
	padding: 0;
	border-top: 1px #E6EBF3 solid;
	list-style: none;
}
.list-o-links li, .list-o-link-other li {
	display: table;
	width: 100%;
	height: 60px;
	border-bottom: 1px #E6EBF3 solid;
	background: url(/_/image/ico_arrow_right_blue.png) no-repeat 100% 50%;
	background-size: 10px 13px;
}
.list-o-links a, .list-o-link-other a {
	display: table-cell;
	height: 75px;
	padding: 14px 2px;
	color: #007DFF;
	font-size: 1.6rem;
	line-height: 1.3;
	text-decoration: none;
	vertical-align: middle;
}
.list-o-links a span, .list-o-link-other a span {
	font-size: 1.2rem;
}
.list-o-links a span.text-o-sup, .list-o-link-other a span.text-o-sup {
	display: block;
}
.list-o-links a span.text-o-plus, .list-o-link-other a span.text-o-plus {
	display: block;
	margin-left: 36px !important;
}
.list-o-links .link-o-card-driver, .list-o-link-other .link-o-card-driver, .list-o-links .link-o-card-health, .list-o-link-other .link-o-card-health, .list-o-links .link-o-card-mynumber01, .list-o-link-other .link-o-card-mynumber01, .list-o-links .link-o-card-mynumber02, .list-o-link-other .link-o-card-mynumber02 {
	position: relative;
	padding: 20px 2px 20px 84px;
}
.list-o-links .link-o-card-driver:before, .list-o-link-other .link-o-card-driver:before, .list-o-links .link-o-card-health:before, .list-o-link-other .link-o-card-health:before, .list-o-links .link-o-card-mynumber01:before, .list-o-link-other .link-o-card-mynumber01:before, .list-o-links .link-o-card-mynumber02:before, .list-o-link-other .link-o-card-mynumber02:before {
	content: ' ';
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	width: 62px;
	height: 39px;
	margin: -20px 0 0;
}
.list-o-links .link-o-card-driver:before, .list-o-link-other .link-o-card-driver:before {
	background: url(/_/image/img_card_driver.png) no-repeat 0 0;
	background-size: 62px 39px;
}
.list-o-links .link-o-card-health:before, .list-o-link-other .link-o-card-health:before {
	background: url(/_/image/img_card_health.png) no-repeat 0 0;
	background-size: 62px 39px;
}
.list-o-links .link-o-card-mynumber01:before, .list-o-link-other .link-o-card-mynumber01:before {
	background: url(/_/image/img_card_mynumber_01.png) no-repeat 0 0;
	background-size: 62px 39px;
}
.list-o-links .link-o-card-mynumber02:before, .list-o-link-other .link-o-card-mynumber02:before {
	background: url(/_/image/img_card_mynumber_02.png) no-repeat 0 0;
	background-size: 62px 39px;
}
.list-o-links.mod-extension, .list-o-link-other.mod-extension {
	margin: 0 0 32px;
}
.list-o-tab {
	display: table;
	width: 100%;
	margin: 0 0 25px;
	border-bottom: 1px #EFEFEF solid;
	table-layout: fixed;
}
.list-o-tab li {
	display: table-cell;
	width: 33%;
	font-size: 1.4rem;
	text-align: center;
}
.list-o-tab li a {
	padding: 10px 0;
	border: none;
	border-radius: 0;
	color: #A8AFB9;
}
.list-o-tab li a:hover {
	background: transparent;
}
.list-o-tab li:nth-child(2) {
	width: 34%;
}
.list-o-tab li.active {
	border-bottom: 1px #0E0E0E solid;
}
.list-o-tab li.active a {
	border: none !important;
	color: #00263F;
}
/* add wrapper */
.wrapper-portfolio {
	margin: 12px -10px 0;
	padding: 0 10px;
	border-top: 1px #CCE0F7 solid;
}
.wrapper-note {
	margin: 32px 0 0;
}
.checkbox .wrapper-note {
	margin: 12px 0 0;
}
.wrapper-note p:last-child {
	margin: 0;
}
.wrapper-annotation {
	padding: 16px 37px;
	background: #F5F5F5;
}
.wrapper-annotation *:last-child {
	margin: 0;
}
.wrapper-annotation a {
	color: #616977;
	text-decoration: underline;
}
.wrapper-annotation.is-hidden {
	display: none;
}
.wrapper-link {
	display: block;
	margin: 0 0 16px;
}
.wrapper-bank {
	width: 100%;
	margin: 0 0 32px;
}
.wrapper-bank > * {
	margin: 0;
	letter-spacing: -.4em;
}
.wrapper-bank > * > * {
	display: inline-block;
	letter-spacing: normal;
}
.wrapper-bank > * label {
	width: 120px;
}
.wrapper-bank > a {
	margin: 40px auto !important;
	letter-spacing: normal;
}
.wrapper-table {
	display: inline-block;
}
.wrapper-modal {
	display: none;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1002;
	width: 100%;
	height: 100%;
}
.wrapper-modal.is-active {
	display: block;
}
.wrapper-modal .inner {
	width: 100%;
	height: 100%;
	padding: 50px 34px;
	background: rgba(152, 161, 174, .95);
	text-align: center;

	overflow-y: scroll;
}
.wrapper-modal .box-o-modal {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
}
.wrapper-modal h2, .wrapper-modal h3, .wrapper-modal p, .wrapper-modal ul {
	color: #FFF !important;
}
.wrapper-modal h2 {
	display: inline-block;
	margin: 0 auto 40px;
	border-bottom: 1px #FFF solid;
	font-size: 2rem;
	line-height: 1.75;
}
.wrapper-modal h3 {
	margin: 0 0 12px;
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: left;
}
.wrapper-modal p {
	margin: 0 0 16px;
	font-size: 1.2rem;
	line-height: 1.75;
	text-align: left;
}
.wrapper-modal ul li {
	margin: 0 0 16px;
	color: #FFF;
	font-size: 1.4rem;
	text-align: left;
}
.wrapper-modal .btn-o-close {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 21px;
	height: 21px;
}
.wrapper-modal .btn-o-close span {
	position: absolute;
	top: 10px;
	right: 0;
	width: 22px;
	height: 1px;
	background: #FFF;
}
.wrapper-modal .btn-o-close span:first-child {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.wrapper-modal .btn-o-close span:last-child {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/* add separate */
.hr-o-section {
	height: 30px;
	margin: 0;
	border: none;
}
/* add image */
.image-o-sendmail {
	display: block;
	overflow: hidden;
	width: 114px;
	height: 126px;
	margin: 0 auto;
	background: url(_/image/ico_sendmail.png) no-repeat 50% 50%;
	background-size: 114px 126px;
	text-indent: -9999px;
}
.image-o-loading {
	width: 103px;
	height: 67px;
	margin: 30px 0 0;
}
/* add modal */
.modal-o-default h4, .modal-o-default p {
	color: #616977;
}
.modal-o-default .modal-content {
	border: none;
	box-shadow: none;
}
.modal-o-default .modal-header {
	padding: 15px 15px 0 15px;
	border: none;
}
.modal-o-default .modal-footer {
	padding: 0 15px 15px 15px;
	border: none;
}
.modal-o-default .btn-default {
	border-color: #007DFF;
	color: #007DFF;
}
.modal-o-default .btn-default:hover {
	background-color: #FFF;
}
.modal-o-default .btn-primary {
	background: #007DFF;
}
/* mod style --------------------------- */
/* add margin */
.margin-o-top {
	margin: 48px 0 36px;
}
.margin-o-top:last-child {
	margin: 48px 0 0;
}
.login .margin-o-top {
	margin: 64px auto 32px;
}
.login .margin-o-top + .margin-o-top {
	margin: 0 auto 45px;
}
.margin-o-left {
	margin-left: 1rem !important;
}
.margin-o-middle {
	margin-bottom: 32px !important;
}
div[class^='box-o-'] + .margin-o-middle {
	margin: 32px 0 !important;
}
.margin-o-small {
	margin-bottom: 26px !important;
}
.margin-o-negative {
	margin-right: -15px;
	margin-left: -15px;
}
/* color */
.mod-text-blue {
	color: #065FE3 !important;
}
.mod-text-blue-dark {
	color: #00263F !important;
}
.mod-text-alert {
	color: #E22323 !important;
}
/* text indent */
.mod-text-indent {
	padding: 0 0 0 .75rem;
	text-indent: -.75rem;
}
.mod-text-close {
	margin-bottom: 4px !important;
}
.mod-text-narrow {
	margin-bottom: 12px !important;
}
.mod-text-exp {
	margin-bottom: 28px !important;
}
.mod-text-extension {
	margin-bottom: 45px !important;
}
/* icon country */
.ico-o-country {
	display: inline-block;
}
.ico-o-country > span {
	display: block;
	width: 15px;
	height: 10px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 15px 10px;
}
.ico-o-country > span.AD {
	background-image: url(/_/image/ico_flags/ad.svg);
}
.ico-o-country > span.AE {
	background-image: url(/_/image/ico_flags/ae.svg);
}
.ico-o-country > span.AF {
	background-image: url(/_/image/ico_flags/af.svg);
}
.ico-o-country > span.AG {
	background-image: url(/_/image/ico_flags/ag.svg);
}
.ico-o-country > span.AI {
	background-image: url(/_/image/ico_flags/ai.svg);
}
.ico-o-country > span.AL {
	background-image: url(/_/image/ico_flags/al.svg);
}
.ico-o-country > span.AM {
	background-image: url(/_/image/ico_flags/am.svg);
}
.ico-o-country > span.AO {
	background-image: url(/_/image/ico_flags/ao.svg);
}
.ico-o-country > span.AQ {
	background-image: url(/_/image/ico_flags/aq.svg);
}
.ico-o-country > span.AR {
	background-image: url(/_/image/ico_flags/ar.svg);
}
.ico-o-country > span.AS {
	background-image: url(/_/image/ico_flags/as.svg);
}
.ico-o-country > span.AT {
	background-image: url(/_/image/ico_flags/at.svg);
}
.ico-o-country > span.AU {
	background-image: url(/_/image/ico_flags/au.svg);
}
.ico-o-country > span.AW {
	background-image: url(/_/image/ico_flags/aw.svg);
}
.ico-o-country > span.AX {
	background-image: url(/_/image/ico_flags/ax.svg);
}
.ico-o-country > span.AZ {
	background-image: url(/_/image/ico_flags/az.svg);
}
.ico-o-country > span.BA {
	background-image: url(/_/image/ico_flags/ba.svg);
}
.ico-o-country > span.BB {
	background-image: url(/_/image/ico_flags/bb.svg);
}
.ico-o-country > span.BD {
	background-image: url(/_/image/ico_flags/bd.svg);
}
.ico-o-country > span.BE {
	background-image: url(/_/image/ico_flags/be.svg);
}
.ico-o-country > span.BF {
	background-image: url(/_/image/ico_flags/bf.svg);
}
.ico-o-country > span.BG {
	background-image: url(/_/image/ico_flags/bg.svg);
}
.ico-o-country > span.BH {
	background-image: url(/_/image/ico_flags/bh.svg);
}
.ico-o-country > span.BI {
	background-image: url(/_/image/ico_flags/bi.svg);
}
.ico-o-country > span.BJ {
	background-image: url(/_/image/ico_flags/bj.svg);
}
.ico-o-country > span.BL {
	background-image: url(/_/image/ico_flags/bl.svg);
}
.ico-o-country > span.BM {
	background-image: url(/_/image/ico_flags/bm.svg);
}
.ico-o-country > span.BN {
	background-image: url(/_/image/ico_flags/bn.svg);
}
.ico-o-country > span.BO {
	background-image: url(/_/image/ico_flags/bo.svg);
}
.ico-o-country > span.BQ {
	background-image: url(/_/image/ico_flags/bq.svg);
}
.ico-o-country > span.BR {
	background-image: url(/_/image/ico_flags/br.svg);
}
.ico-o-country > span.BS {
	background-image: url(/_/image/ico_flags/bs.svg);
}
.ico-o-country > span.BT {
	background-image: url(/_/image/ico_flags/bt.svg);
}
.ico-o-country > span.BV {
	background-image: url(/_/image/ico_flags/bv.svg);
}
.ico-o-country > span.BW {
	background-image: url(/_/image/ico_flags/bw.svg);
}
.ico-o-country > span.BY {
	background-image: url(/_/image/ico_flags/by.svg);
}
.ico-o-country > span.BZ {
	background-image: url(/_/image/ico_flags/bz.svg);
}
.ico-o-country > span.CA {
	background-image: url(/_/image/ico_flags/ca.svg);
}
.ico-o-country > span.CC {
	background-image: url(/_/image/ico_flags/cc.svg);
}
.ico-o-country > span.CD {
	background-image: url(/_/image/ico_flags/cd.svg);
}
.ico-o-country > span.CF {
	background-image: url(/_/image/ico_flags/cf.svg);
}
.ico-o-country > span.CG {
	background-image: url(/_/image/ico_flags/cg.svg);
}
.ico-o-country > span.CH {
	background-image: url(/_/image/ico_flags/ch.svg);
}
.ico-o-country > span.CI {
	background-image: url(/_/image/ico_flags/ci.svg);
}
.ico-o-country > span.CK {
	background-image: url(/_/image/ico_flags/ck.svg);
}
.ico-o-country > span.CL {
	background-image: url(/_/image/ico_flags/cl.svg);
}
.ico-o-country > span.CM {
	background-image: url(/_/image/ico_flags/cm.svg);
}
.ico-o-country > span.CN {
	background-image: url(/_/image/ico_flags/cn.svg);
}
.ico-o-country > span.CO {
	background-image: url(/_/image/ico_flags/co.svg);
}
.ico-o-country > span.CR {
	background-image: url(/_/image/ico_flags/cr.svg);
}
.ico-o-country > span.CU {
	background-image: url(/_/image/ico_flags/cu.svg);
}
.ico-o-country > span.CV {
	background-image: url(/_/image/ico_flags/cv.svg);
}
.ico-o-country > span.CW {
	background-image: url(/_/image/ico_flags/cw.svg);
}
.ico-o-country > span.CX {
	background-image: url(/_/image/ico_flags/cx.svg);
}
.ico-o-country > span.CY {
	background-image: url(/_/image/ico_flags/cy.svg);
}
.ico-o-country > span.CZ {
	background-image: url(/_/image/ico_flags/cz.svg);
}
.ico-o-country > span.DE {
	background-image: url(/_/image/ico_flags/de.svg);
}
.ico-o-country > span.DJ {
	background-image: url(/_/image/ico_flags/dj.svg);
}
.ico-o-country > span.DK {
	background-image: url(/_/image/ico_flags/dk.svg);
}
.ico-o-country > span.DM {
	background-image: url(/_/image/ico_flags/dm.svg);
}
.ico-o-country > span.DO {
	background-image: url(/_/image/ico_flags/do.svg);
}
.ico-o-country > span.DZ {
	background-image: url(/_/image/ico_flags/dz.svg);
}
.ico-o-country > span.EC {
	background-image: url(/_/image/ico_flags/ec.svg);
}
.ico-o-country > span.EE {
	background-image: url(/_/image/ico_flags/ee.svg);
}
.ico-o-country > span.EG {
	background-image: url(/_/image/ico_flags/eg.svg);
}
.ico-o-country > span.EH {
	background-image: url(/_/image/ico_flags/eh.svg);
}
.ico-o-country > span.ER {
	background-image: url(/_/image/ico_flags/er.svg);
}
.ico-o-country > span.ES {
	background-image: url(/_/image/ico_flags/es.svg);
}
.ico-o-country > span.ET {
	background-image: url(/_/image/ico_flags/et.svg);
}
.ico-o-country > span.FI {
	background-image: url(/_/image/ico_flags/fi.svg);
}
.ico-o-country > span.FJ {
	background-image: url(/_/image/ico_flags/fj.svg);
}
.ico-o-country > span.FK {
	background-image: url(/_/image/ico_flags/fk.svg);
}
.ico-o-country > span.FM {
	background-image: url(/_/image/ico_flags/fm.svg);
}
.ico-o-country > span.FO {
	background-image: url(/_/image/ico_flags/fo.svg);
}
.ico-o-country > span.FR {
	background-image: url(/_/image/ico_flags/fr.svg);
}
.ico-o-country > span.GA {
	background-image: url(/_/image/ico_flags/ga.svg);
}
.ico-o-country > span.GB {
	background-image: url(/_/image/ico_flags/gb.svg);
}
.ico-o-country > span.GD {
	background-image: url(/_/image/ico_flags/gd.svg);
}
.ico-o-country > span.GE {
	background-image: url(/_/image/ico_flags/ge.svg);
}
.ico-o-country > span.GF {
	background-image: url(/_/image/ico_flags/gf.svg);
}
.ico-o-country > span.GG {
	background-image: url(/_/image/ico_flags/gg.svg);
}
.ico-o-country > span.GH {
	background-image: url(/_/image/ico_flags/gh.svg);
}
.ico-o-country > span.GI {
	background-image: url(/_/image/ico_flags/gi.svg);
}
.ico-o-country > span.GL {
	background-image: url(/_/image/ico_flags/gl.svg);
}
.ico-o-country > span.GM {
	background-image: url(/_/image/ico_flags/gm.svg);
}
.ico-o-country > span.GN {
	background-image: url(/_/image/ico_flags/gn.svg);
}
.ico-o-country > span.GP {
	background-image: url(/_/image/ico_flags/gp.svg);
}
.ico-o-country > span.GQ {
	background-image: url(/_/image/ico_flags/gq.svg);
}
.ico-o-country > span.GR {
	background-image: url(/_/image/ico_flags/gr.svg);
}
.ico-o-country > span.GS {
	background-image: url(/_/image/ico_flags/gs.svg);
}
.ico-o-country > span.GT {
	background-image: url(/_/image/ico_flags/gt.svg);
}
.ico-o-country > span.GU {
	background-image: url(/_/image/ico_flags/gu.svg);
}
.ico-o-country > span.GW {
	background-image: url(/_/image/ico_flags/gw.svg);
}
.ico-o-country > span.GY {
	background-image: url(/_/image/ico_flags/gy.svg);
}
.ico-o-country > span.HK {
	background-image: url(/_/image/ico_flags/hk.svg);
}
.ico-o-country > span.HM {
	background-image: url(/_/image/ico_flags/hm.svg);
}
.ico-o-country > span.HN {
	background-image: url(/_/image/ico_flags/hn.svg);
}
.ico-o-country > span.HR {
	background-image: url(/_/image/ico_flags/hr.svg);
}
.ico-o-country > span.HT {
	background-image: url(/_/image/ico_flags/ht.svg);
}
.ico-o-country > span.HU {
	background-image: url(/_/image/ico_flags/hu.svg);
}
.ico-o-country > span.ID {
	background-image: url(/_/image/ico_flags/id.svg);
}
.ico-o-country > span.IE {
	background-image: url(/_/image/ico_flags/ie.svg);
}
.ico-o-country > span.IL {
	background-image: url(/_/image/ico_flags/il.svg);
}
.ico-o-country > span.IM {
	background-image: url(/_/image/ico_flags/im.svg);
}
.ico-o-country > span.IN {
	background-image: url(/_/image/ico_flags/in.svg);
}
.ico-o-country > span.IO {
	background-image: url(/_/image/ico_flags/io.svg);
}
.ico-o-country > span.IQ {
	background-image: url(/_/image/ico_flags/iq.svg);
}
.ico-o-country > span.IR {
	background-image: url(/_/image/ico_flags/ir.svg);
}
.ico-o-country > span.IS {
	background-image: url(/_/image/ico_flags/is.svg);
}
.ico-o-country > span.IT {
	background-image: url(/_/image/ico_flags/it.svg);
}
.ico-o-country > span.JE {
	background-image: url(/_/image/ico_flags/je.svg);
}
.ico-o-country > span.JM {
	background-image: url(/_/image/ico_flags/jm.svg);
}
.ico-o-country > span.JO {
	background-image: url(/_/image/ico_flags/jo.svg);
}
.ico-o-country > span.JP {
	background-image: url(/_/image/ico_flags/jp.svg);
}
.ico-o-country > span.KE {
	background-image: url(/_/image/ico_flags/ke.svg);
}
.ico-o-country > span.KG {
	background-image: url(/_/image/ico_flags/kg.svg);
}
.ico-o-country > span.KH {
	background-image: url(/_/image/ico_flags/kh.svg);
}
.ico-o-country > span.KI {
	background-image: url(/_/image/ico_flags/ki.svg);
}
.ico-o-country > span.KM {
	background-image: url(/_/image/ico_flags/km.svg);
}
.ico-o-country > span.KN {
	background-image: url(/_/image/ico_flags/kn.svg);
}
.ico-o-country > span.KP {
	background-image: url(/_/image/ico_flags/kp.svg);
}
.ico-o-country > span.KR {
	background-image: url(/_/image/ico_flags/kr.svg);
}
.ico-o-country > span.KW {
	background-image: url(/_/image/ico_flags/kw.svg);
}
.ico-o-country > span.KY {
	background-image: url(/_/image/ico_flags/ky.svg);
}
.ico-o-country > span.KZ {
	background-image: url(/_/image/ico_flags/kz.svg);
}
.ico-o-country > span.LA {
	background-image: url(/_/image/ico_flags/la.svg);
}
.ico-o-country > span.LB {
	background-image: url(/_/image/ico_flags/lb.svg);
}
.ico-o-country > span.LC {
	background-image: url(/_/image/ico_flags/lc.svg);
}
.ico-o-country > span.LI {
	background-image: url(/_/image/ico_flags/li.svg);
}
.ico-o-country > span.LK {
	background-image: url(/_/image/ico_flags/lk.svg);
}
.ico-o-country > span.LR {
	background-image: url(/_/image/ico_flags/lr.svg);
}
.ico-o-country > span.LS {
	background-image: url(/_/image/ico_flags/ls.svg);
}
.ico-o-country > span.LT {
	background-image: url(/_/image/ico_flags/lt.svg);
}
.ico-o-country > span.LU {
	background-image: url(/_/image/ico_flags/lu.svg);
}
.ico-o-country > span.LV {
	background-image: url(/_/image/ico_flags/lv.svg);
}
.ico-o-country > span.LY {
	background-image: url(/_/image/ico_flags/ly.svg);
}
.ico-o-country > span.MA {
	background-image: url(/_/image/ico_flags/ma.svg);
}
.ico-o-country > span.MC {
	background-image: url(/_/image/ico_flags/mc.svg);
}
.ico-o-country > span.MD {
	background-image: url(/_/image/ico_flags/md.svg);
}
.ico-o-country > span.ME {
	background-image: url(/_/image/ico_flags/me.svg);
}
.ico-o-country > span.MF {
	background-image: url(/_/image/ico_flags/mf.svg);
}
.ico-o-country > span.MG {
	background-image: url(/_/image/ico_flags/mg.svg);
}
.ico-o-country > span.MH {
	background-image: url(/_/image/ico_flags/mh.svg);
}
.ico-o-country > span.MK {
	background-image: url(/_/image/ico_flags/mk.svg);
}
.ico-o-country > span.ML {
	background-image: url(/_/image/ico_flags/ml.svg);
}
.ico-o-country > span.MM {
	background-image: url(/_/image/ico_flags/mm.svg);
}
.ico-o-country > span.MN {
	background-image: url(/_/image/ico_flags/mn.svg);
}
.ico-o-country > span.MO {
	background-image: url(/_/image/ico_flags/mo.svg);
}
.ico-o-country > span.MP {
	background-image: url(/_/image/ico_flags/mp.svg);
}
.ico-o-country > span.MQ {
	background-image: url(/_/image/ico_flags/mq.svg);
}
.ico-o-country > span.MR {
	background-image: url(/_/image/ico_flags/mr.svg);
}
.ico-o-country > span.MS {
	background-image: url(/_/image/ico_flags/ms.svg);
}
.ico-o-country > span.MT {
	background-image: url(/_/image/ico_flags/mt.svg);
}
.ico-o-country > span.MU {
	background-image: url(/_/image/ico_flags/mu.svg);
}
.ico-o-country > span.MV {
	background-image: url(/_/image/ico_flags/mv.svg);
}
.ico-o-country > span.MW {
	background-image: url(/_/image/ico_flags/mw.svg);
}
.ico-o-country > span.MX {
	background-image: url(/_/image/ico_flags/mx.svg);
}
.ico-o-country > span.MY {
	background-image: url(/_/image/ico_flags/my.svg);
}
.ico-o-country > span.MZ {
	background-image: url(/_/image/ico_flags/mz.svg);
}
.ico-o-country > span.NA {
	background-image: url(/_/image/ico_flags/na.svg);
}
.ico-o-country > span.NC {
	background-image: url(/_/image/ico_flags/nc.svg);
}
.ico-o-country > span.NE {
	background-image: url(/_/image/ico_flags/ne.svg);
}
.ico-o-country > span.NF {
	background-image: url(/_/image/ico_flags/nf.svg);
}
.ico-o-country > span.NG {
	background-image: url(/_/image/ico_flags/ng.svg);
}
.ico-o-country > span.NI {
	background-image: url(/_/image/ico_flags/ni.svg);
}
.ico-o-country > span.NL {
	background-image: url(/_/image/ico_flags/nl.svg);
}
.ico-o-country > span.NO {
	background-image: url(/_/image/ico_flags/no.svg);
}
.ico-o-country > span.NP {
	background-image: url(/_/image/ico_flags/np.svg);
}
.ico-o-country > span.NR {
	background-image: url(/_/image/ico_flags/nr.svg);
}
.ico-o-country > span.NU {
	background-image: url(/_/image/ico_flags/nu.svg);
}
.ico-o-country > span.NZ {
	background-image: url(/_/image/ico_flags/nz.svg);
}
.ico-o-country > span.OM {
	background-image: url(/_/image/ico_flags/om.svg);
}
.ico-o-country > span.PA {
	background-image: url(/_/image/ico_flags/pa.svg);
}
.ico-o-country > span.PE {
	background-image: url(/_/image/ico_flags/pe.svg);
}
.ico-o-country > span.PF {
	background-image: url(/_/image/ico_flags/pf.svg);
}
.ico-o-country > span.PG {
	background-image: url(/_/image/ico_flags/pg.svg);
}
.ico-o-country > span.PH {
	background-image: url(/_/image/ico_flags/ph.svg);
}
.ico-o-country > span.PK {
	background-image: url(/_/image/ico_flags/pk.svg);
}
.ico-o-country > span.PL {
	background-image: url(/_/image/ico_flags/pl.svg);
}
.ico-o-country > span.PM {
	background-image: url(/_/image/ico_flags/pm.svg);
}
.ico-o-country > span.PN {
	background-image: url(/_/image/ico_flags/pn.svg);
}
.ico-o-country > span.PR {
	background-image: url(/_/image/ico_flags/pr.svg);
}
.ico-o-country > span.PS {
	background-image: url(/_/image/ico_flags/ps.svg);
}
.ico-o-country > span.PT {
	background-image: url(/_/image/ico_flags/pt.svg);
}
.ico-o-country > span.PW {
	background-image: url(/_/image/ico_flags/pw.svg);
}
.ico-o-country > span.PY {
	background-image: url(/_/image/ico_flags/py.svg);
}
.ico-o-country > span.QA {
	background-image: url(/_/image/ico_flags/qa.svg);
}
.ico-o-country > span.RE {
	background-image: url(/_/image/ico_flags/re.svg);
}
.ico-o-country > span.RO {
	background-image: url(/_/image/ico_flags/ro.svg);
}
.ico-o-country > span.RS {
	background-image: url(/_/image/ico_flags/rs.svg);
}
.ico-o-country > span.RU {
	background-image: url(/_/image/ico_flags/ru.svg);
}
.ico-o-country > span.RW {
	background-image: url(/_/image/ico_flags/rw.svg);
}
.ico-o-country > span.SA {
	background-image: url(/_/image/ico_flags/sa.svg);
}
.ico-o-country > span.SB {
	background-image: url(/_/image/ico_flags/sb.svg);
}
.ico-o-country > span.SC {
	background-image: url(/_/image/ico_flags/sc.svg);
}
.ico-o-country > span.SD {
	background-image: url(/_/image/ico_flags/sd.svg);
}
.ico-o-country > span.SE {
	background-image: url(/_/image/ico_flags/se.svg);
}
.ico-o-country > span.SG {
	background-image: url(/_/image/ico_flags/sg.svg);
}
.ico-o-country > span.SH {
	background-image: url(/_/image/ico_flags/sh.svg);
}
.ico-o-country > span.SI {
	background-image: url(/_/image/ico_flags/si.svg);
}
.ico-o-country > span.SJ {
	background-image: url(/_/image/ico_flags/sj.svg);
}
.ico-o-country > span.SK {
	background-image: url(/_/image/ico_flags/sk.svg);
}
.ico-o-country > span.SL {
	background-image: url(/_/image/ico_flags/sl.svg);
}
.ico-o-country > span.SM {
	background-image: url(/_/image/ico_flags/sm.svg);
}
.ico-o-country > span.SN {
	background-image: url(/_/image/ico_flags/sn.svg);
}
.ico-o-country > span.SO {
	background-image: url(/_/image/ico_flags/so.svg);
}
.ico-o-country > span.SR {
	background-image: url(/_/image/ico_flags/sr.svg);
}
.ico-o-country > span.SS {
	background-image: url(/_/image/ico_flags/ss.svg);
}
.ico-o-country > span.ST {
	background-image: url(/_/image/ico_flags/st.svg);
}
.ico-o-country > span.SV {
	background-image: url(/_/image/ico_flags/sv.svg);
}
.ico-o-country > span.SX {
	background-image: url(/_/image/ico_flags/sx.svg);
}
.ico-o-country > span.SY {
	background-image: url(/_/image/ico_flags/sy.svg);
}
.ico-o-country > span.SZ {
	background-image: url(/_/image/ico_flags/sz.svg);
}
.ico-o-country > span.TC {
	background-image: url(/_/image/ico_flags/tc.svg);
}
.ico-o-country > span.TD {
	background-image: url(/_/image/ico_flags/td.svg);
}
.ico-o-country > span.TF {
	background-image: url(/_/image/ico_flags/tf.svg);
}
.ico-o-country > span.TG {
	background-image: url(/_/image/ico_flags/tg.svg);
}
.ico-o-country > span.TH {
	background-image: url(/_/image/ico_flags/th.svg);
}
.ico-o-country > span.TJ {
	background-image: url(/_/image/ico_flags/tj.svg);
}
.ico-o-country > span.TK {
	background-image: url(/_/image/ico_flags/tk.svg);
}
.ico-o-country > span.TL {
	background-image: url(/_/image/ico_flags/tl.svg);
}
.ico-o-country > span.TM {
	background-image: url(/_/image/ico_flags/tm.svg);
}
.ico-o-country > span.TN {
	background-image: url(/_/image/ico_flags/tn.svg);
}
.ico-o-country > span.TO {
	background-image: url(/_/image/ico_flags/to.svg);
}
.ico-o-country > span.TR {
	background-image: url(/_/image/ico_flags/tr.svg);
}
.ico-o-country > span.TT {
	background-image: url(/_/image/ico_flags/tt.svg);
}
.ico-o-country > span.TV {
	background-image: url(/_/image/ico_flags/tv.svg);
}
.ico-o-country > span.TW {
	background-image: url(/_/image/ico_flags/tw.svg);
}
.ico-o-country > span.TZ {
	background-image: url(/_/image/ico_flags/tz.svg);
}
.ico-o-country > span.UA {
	background-image: url(/_/image/ico_flags/ua.svg);
}
.ico-o-country > span.UG {
	background-image: url(/_/image/ico_flags/ug.svg);
}
.ico-o-country > span.UM {
	background-image: url(/_/image/ico_flags/um.svg);
}
.ico-o-country > span.US {
	background-image: url(/_/image/ico_flags/us.svg);
}
.ico-o-country > span.UY {
	background-image: url(/_/image/ico_flags/uy.svg);
}
.ico-o-country > span.UZ {
	background-image: url(/_/image/ico_flags/uz.svg);
}
.ico-o-country > span.VA {
	background-image: url(/_/image/ico_flags/va.svg);
}
.ico-o-country > span.VC {
	background-image: url(/_/image/ico_flags/vc.svg);
}
.ico-o-country > span.VE {
	background-image: url(/_/image/ico_flags/ve.svg);
}
.ico-o-country > span.VG {
	background-image: url(/_/image/ico_flags/vg.svg);
}
.ico-o-country > span.VI {
	background-image: url(/_/image/ico_flags/vi.svg);
}
.ico-o-country > span.VN {
	background-image: url(/_/image/ico_flags/vn.svg);
}
.ico-o-country > span.VU {
	background-image: url(/_/image/ico_flags/vu.svg);
}
.ico-o-country > span.WF {
	background-image: url(/_/image/ico_flags/wf.svg);
}
.ico-o-country > span.WS {
	background-image: url(/_/image/ico_flags/ws.svg);
}
.ico-o-country > span.YE {
	background-image: url(/_/image/ico_flags/ye.svg);
}
.ico-o-country > span.YT {
	background-image: url(/_/image/ico_flags/yt.svg);
}
.ico-o-country > span.ZA {
	background-image: url(/_/image/ico_flags/za.svg);
}
.ico-o-country > span.ZM {
	background-image: url(/_/image/ico_flags/zm.svg);
}
.ico-o-country > span.ZW {
	background-image: url(/_/image/ico_flags/zw.svg);
}
.is-pc.mod-inline {
	display: block;
}
@media (min-width: 320px) {
	.wrapper > .container > .inner .inner-contents {
		margin: 0 auto;
	}
	.dl-o-center {
		width: 280px;
		margin: 0 auto;
	}
	.dl-o-center > dt {
		overflow: hidden;
		float: left;
		clear: left;
		width: auto;
		min-width: 90px;
		white-space: nowrap;
		text-align: right;
		text-overflow: ellipsis;
	}
	.dl-o-center > dd {
		margin: 0 0 0 110px;
		text-align: right;
	}
}
@media (min-width: 374px) {
	.wrapper > .container > .inner .inner-contents {
		width: 100%;
		margin: 0 0 50px;
		padding: 0 37px;
	}
}
@media (max-width: 373px) {
	.table-o-bank tr th {
		width: 90px;
	}
}
@media (min-width: 417px) {
	.login .form-group {
		width: 350px;
	}
}
@media (min-width: 700px) {
	.wrapper > .container > .inner .inner-contents {
		width: 700px;
		margin: 0 auto 50px;
	}
	.navbar .wrapper > .container > .inner .inner-contents {
		padding: 0;
	}
	.wrapper > .navbar > .inner .inner-contents .navbar-brand {
		margin: 10px 10px 10px 0;
	}
	.navbar .container {
		max-width: 700px;
	}
	.navbar-header {
		float: none!important;
	}
	.navbar-toggle {
		display: block!important;
	}
	.navbar-nav .open .dropdown-menu li a {
		padding: 5px 15px 5px 25px;
		color: #007DFF;
	}
	.navbar-nav .open .dropdown-menu li a:hover {
		color: #065FE3;
	}
	.navbar-right .dropdown-toggle {
		padding: 12px 0 12px 15px;
	}
	footer > .inner .inner-contents {
		width: 700px;
		margin: 0 auto 10px;
		text-align: center;
	}
	footer > .inner .inner-contents ul {
		display: inline-block;
	}
	.table-o-portfolio th:nth-child(2), .table-o-portfolio td:nth-child(2) {
		width: 200px;
	}
	.table-o-portfolio th:nth-child(3), .table-o-portfolio td:nth-child(3), .table-o-portfolio th:nth-child(4), .table-o-portfolio td:nth-child(4) {
		width: 120px;
	}
	.list-o-dl-table > dt {
		text-align: left;
	}
	.wrapper-annotation p {
		display: block;
		width: 700px;
		margin: 0 auto !important;
	}
	.text-o-lead, .text-o-note {
		text-align: center !important;
	}
	.is-pc.mod-block {
		display: block;
	}
	.is-pc.mod-inline {
		display: inline;
	}
}
@media (max-width: 767px) {
	.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
		color: #065FE3;
	}
}
@media (min-width: 774px) {
	.wrapper > .container > .inner .inner-contents {
		padding: 0;
	}
}
