@charset "utf-8";

/* =============================================================

　　共通設定

============================================================= */


/* 全体 共通設定
---------------------------------------------*/

html,
body {
	height: 100%;
}

body {
	font-family: "メイリオ", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "segoe UI", Meiryo, Verdana, Arial, sans-serif;
	font-size: 14px;
	line-height: 22px;
	color:#333;
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}


/* 画像 共通設定
-------------------------- */

img {
  vertical-align: bottom;
  border:none;
}


/* 見出し　共通設定
-------------------------- */

h1 {
	margin: 0 0 1.5em;
	padding: 1em 0;
	font-size: 1.4em;
	font-weight: bold;
	text-align:center;
	background:#081428;
	color: #fff;
}

h2 {
	text-align: center;
	font-weight: bold;
	margin: 0 0 1em;
}

h3 {
	font-weight: bold;
	border-left: 4px solid #1d293f;
	padding: 0 0 0 .5em;
	margin: 0 0 .4em;
}

/* リスト　共通設定
-------------------------- */
ul.table {
	display: table;
	table-layout:fixed;
	width:100%;
}

ul.table > li {
	display: table-cell;
	vertical-align:top;
	text-align:center;
	padding:1em;
}

ul.flex {
	display: flex;
	align-items: baseline;
}

ul.flex > li {
	display:inline-flex;
}

ul.inline-block > li {
	display:inline-block;
}

/*  テキスト 共通設定
-------------------------- */

.align-left {
	text-align: left;
}

.align-center {
	text-align: center;
}

.align-right {
	text-align: right;
}

/* border 共通設定
-------------------------- */
.border {
	border: 1px solid #c9c9c9;
}

/* 帯
-------------------------- */
.band {
	padding: 1em;
	background: #fff;
	color: #1d293f;
	font-weight: bold;
}


/*  フォーム 共通設定
-------------------------- */
	
input,
select,
textarea {
	border-radius: 5px;
	padding: 2px;
}

input[type="password"],
input[type="text"] {
	-webkit-appearance: none;
	padding:1em;
	width:100%;
}

input[type="button"],
input[type="text"],
input[type="submit"] {
	-webkit-appearance: none;
	border-radius: 5px;
}

input[type="checkbox"] {
	border-radius: 5px;
}

input[type="text"],
input[type="password"],
textarea,
select { 
	outline: none;
}

form textarea {
	resize: vertical;
	width: 100%;
	-webkit-appearance: none;
}

/* フォーム　カラー設定
-------------------------- */

select {
    background: #fff url(../images/bg-select2.png) no-repeat right center;
    background-size: 11px 12px;
}

input[type="text"],
input[type="password"],
textarea,
select { 
	border: 1px solid #c9c9c9;
}

#content form dl dd input[type="text"],
#content form dl dd input[type="password"],
#content form dl dd textarea {
	border: none;
}

#content form dl dd input[type="text"]:focus,
#content form dl dd textarea:focus {
	background: #fff;
}

input:-webkit-input-placeholder,
input:-moz-placeholder,
textarea:-webkit-input-placeholder,
textarea:-moz-placeholder {
	color: #9a9696;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:placeholder-shown {
    color: #9a9696;
}


/* ラジオボタン */

form input[type="checkbox"],
form input[type="radio"] {
  margin: 0 7px 0 0;
  position: relative;
  top: 2px;
}

/*  アイコン　設定
-------------------------- */

/*矢印アイコン）*/

.arrow{
position: relative;
display: inline-block;
padding: 0 0 0 16px;
vertical-align: middle;
text-decoration: none;
}
.arrow::before,
.arrow::after{
position: absolute;
top: 0;
bottom: 0;
left: 0;
margin: auto;
content: "";
vertical-align: middle;
}

.arrow-r{
position: relative;
display: inline-block;
padding: 0 10px 0 0;
vertical-align: middle;
text-decoration: none;
}
.arrow-r::before,
.arrow-r::after{
position: absolute;
top: 0;
bottom: 0;
right: 0;
margin: auto;
content: "";
vertical-align: middle;
}

/*横並びリスト左側の矢印*/
.l-square::before{
width: 12px;
height: 12px;
background: #4171ba;
}
.l-square::after{
left: 3px;
width: 3px;
height: 3px;
border-top: 1px solid #fff;
border-right: 1px solid #fff;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}

/* 縦並びリスト右側の矢印 */
.r-list::before{
right: 13px;
width: 6px;
height: 6px;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}

/*左側の△矢印*/
.l-into::before{
left: 4px;
box-sizing: border-box;
width: 4px;
height: 4px;
border: 4px solid transparent;
border-left: 4px solid #fff;
}

/*  ボタン　設定
---------------------------------------------*/

.btn-round {
	padding:.8em 1.6em;
	text-align:center;
	font-weight:bold;
	display: inline-block;
    vertical-align: top;
    border-radius: .6em;
	border:none;
	margin: 0 0 0 .8em;
}

.btn-round.large {
	padding:1.2em 3.2em;
	border-radius: .8em;
	min-width:240px;
	font-size: 14px;
}

/* 　Header　設定
---------------------------------------------*/

#header {
	margin: 0;
	padding: .5em 0;
}

/* ---- サイトタイトルロゴ ---- */

#h-logo a {
	transition: all 0.4s ease;
}

#h-logo {
	margin: 0 auto;
	padding:0;
	width:120px;
}

#h-logo img {
	width:100%;
	height: auto;
}

/* ---- ユーザーナビ ---- */

#box-usernav {
	position: absolute;
	right: 20px;
	top: 10px;
	padding: 0;
	text-align: right;
	display: block;
}


/* 　コンテナー　設定
---------------------------------------------*/

#container {
	width: 100%;
	position: relative;
 	height: auto !important;
	height: 100%;
	min-height: 100%;
	background: #efefef;
}

#content {
	text-align: left;
	margin: 0 auto;
}

#content.registration {
	max-width:718px;
}

#content.login {
	max-width:360px;
}

#content.document {
	max-width:640px;
}


/*  コンテンツ・メイン　設定
---------------------------------------------*/

#content {
	padding-bottom: 300px;
}

.section {
	border-bottom:1px solid #c9c9c9;
	margin-bottom:2em;
	padding-bottom:2em;
}

p {
	margin-bottom:1em;
}

.box-section {
	margin-bottom:2em;
}

.box {
	padding:1em;
	background:#fff;
}


/*  フッター　設定
---------------------------------------------*/

#footer {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	min-height: 200px;
	height: 200px;
	font-size: 0.88em;
}

#footer {
	background: #081428;
	color: #fff;
}

#footer a {
	color: #fff;
}

#footer .box-inner {
	padding: 2em;
}

#footer .box-sitenav,
#footer .txt-copyright {
	display: inline-block;
	vertical-align: top;
}

#footer .box-sitenav {
	width: 50%;
}

#footer .txt-copyright {
	float: right;
	width: 49%;
	letter-spacing: 0.5px;
	text-align: right;
}


@media screen and (max-width: 767px) {
	
	#box-usernav {
		right: 1em;
	}
	
	
	#h-logo {
		margin: 0 0 0 1em;
		padding:0;
		width:120px;
	}

	/*  コンテンツ・メイン　設定
	---------------------------------------------*/
	
	#content {
		padding:0 1em 300px;
	}

	/* Footer 共通設定
	-------------------------- */
	
	#footer {
		background: #081428;
		min-height: auto;
		height: auto;
		padding:0 0 2em;
	}
	
	#footer .box-inner {
		padding: 0;
	}
	
	#footer .box-sitenav,
	#footer .txt-copyright {
		display: block;
		width: 100%;
	}
	
	#footer .box-sitenav ul {
		display: table;
		width: 100%;
		table-layout:fixed;
		background:#1d293f;
		margin:0 0 2em;
	}
	
	#footer .box-sitenav ul li {
		display: table-cell;
		text-align:center;
		vertical-align:middle;
		padding:1.6em 0;
		border-right:1px solid #475062;
		border-bottom:1px solid #475062;
	}
	
	#footer .box-sitenav ul li:last-child {
		border-right:none;
	}
	
	#footer .box-sitenav ul li a.arrow {
		display:block;
		padding:0;
	}
	
	#footer .box-sitenav ul li a:before {
		display: none;
	}
	
	#footer .txt-copyright {
		text-align:center;
	}
	
}

/* -------- ページング -------- */

.box-pager ul li span {
	color: #fff;
}

.box-pager ul li a span {
	background-color: #e4e3df;
}

.box-pager {
	display: block;
	overflow: hidden;
	margin:1em 0;
	line-height: 24px;
	letter-spacing: 0;
	font-size: 12px;
}


.box-pager > p {
	float: right;
}

.box-pager > p > span,
.box-pager > p > a {
	display: inline-block;
	text-align: center;
}

.box-pager > p > .current,
.box-pager > p > a {
	width: 24px;
	height: 23px;
}

.box-pager > p > .current {
	color: #fff;
}

.box-pager > p > a {
	background:#fff;
}

.box-pager > p > a:hover {
	opacity: 0.6;
	filter: alpha(opacity=50);
}
