@charset "utf-8";

/* 汎用設定 */
/** タグのデフォルト値を使いやすいように変更 **/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}
body {
	line-height: 1;
	font-size: 15px;
	font-family: "メイリオ",Meiryo,"Meiryo UI","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",Helvetica,Arial,sans-serif;
	-webkit-text-size-adjust: 100%;
}

div {
	position:relative;
	width:auto;
	height:auto;
}

input {
	font-family: "メイリオ",Meiryo,"Meiryo UI","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",Helvetica,Arial,sans-serif;
	border: solid 1px #AAAAAA;
	border-radius: 5px;
	padding:4px;
	padding-left:4px;
	font-size:14px;
	line-height: 1.2em;
	height: 13px;
}

select {
	font-family: "メイリオ",Meiryo,"Meiryo UI","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",Helvetica,Arial,sans-serif;
	border: solid 1px #AAAAAA;
	border-radius: 5px;
	padding-left:4px;
	font-size:14px;
	height: 23px;
	margin-top:1px;
}

textarea {
	font-family: "メイリオ",Meiryo,"Meiryo UI","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",Helvetica,Arial,sans-serif;
	border: solid 1px #AAAAAA;
	border-radius: 5px;
	padding-left:4px;
	font-size:14px;
	height: 23px;
	margin-top:1px;
}

textarea:disabled {
	background-color: #ffffff;
}

/** 縦横のレイアウト指定 **/
/*** 基本 ***/
.m_auto {margin-left: auto;margin-right: auto;}
.m_right {margin-left: auto;margin-right: 0px;}
.txt_align_r {text-align: right!important;}
.txt_align_l {text-align: left!important;}
.txt_align_c {text-align: center!important;}
.v_align_t {vertical-align: top!important;}
.v_align_m {vertical-align: middle!important;}
.v_align_b {vertical-align: bottom!important;}
.v_align_bl {vertical-align: baseline!important;}
/*** 特殊：縦横の中央寄せ ***/
.v_center {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-align-items: center; /* safari用 */
	-webkit-justify-content: center; /* safari用 */
}
.v_center_h {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	-webkit-align-items: center; /* safari用 */
}


/* ページのベース設定 */
body {
  background-color: #FFFFFF;
  overflow-y: auto;
}


/* ページの内容表示する箇所 */
.main_area {
  width:80%;
  min-width:480px;
  margin-left: auto;
  margin-right: auto;
}


/* ヘッダー部分 */
/** ヘッダーの枠 **/
.header_back {
  width:100%;
  height:100%;
  background-color: #FFFFFF;
  border-bottom: solid 3px #0000CD;
  margin-bottom: 15px;
}
.header_table {
  width:80%;
  border: 0px;
  border-collapse: collapse;
  border-spacing: 0px;
  margin-left: auto;
  margin-right: auto;
}
/** ヘッダー文字 **/
.header_text {
	padding:15px;
	font-size: 21px;
	font-weight: bold;
	text-shadow: 2px 2px 2px #BBBBBB;
	color:#333333;
	letter-spacing: 1px;
}

/* フッター部分 */
/** フッターの枠 **/
.footer_back {
  width:100%;
  height:100%;
  border-top: solid 2px #0000CD;
  background-color: #FFFFFF;
  padding:0px;
  margin-top: 10px;
}
.footer_table {
  width:80%;
  border: 0px;
  border-collapse: collapse;
  border-spacing: 0px;
  margin-left: auto;
  margin-right: auto;
}
/** フッターの文字 **/
.footer_text {
	font-size: 12px;
	font-weight: bold;
	color : #AAAAAA;
	letter-spacing: 1px;
	line-height:1.2em;
	padding:8px;
}

.kiyaku_menu {
	font-size: 14px;
	padding-top: 10px;
}

/* タイトルの枠線等 */
/** 大項目用 **/
.title_01 {
  margin-bottom: 5px;
  font-weight: bold;
  padding: 10px;
  padding-left: 15px;
  border-left: solid 1px #CCCCCC;
  border-right: solid 1px #CCCCCC;
}
.title_01 h1{
	font-size: 19px;
	font-weight: bold;
	padding-left: 2px;
	color: #333333;
	text-shadow: 1px 1px 1px #CCCCCC;
}
.title_01 div{
	font-size: 19px;
	font-weight: bold;
	padding-left: 2px;
	color: #333333;
}

/** 中項目用 **/
.title_02 {
	border-radius: 6px;
	margin-left: 5px;
	margin-bottom: 10px;
	font-weight: bold;
	padding: 12px;
	background-color: #D9E5FF;
}
.title_02 h1{
	font-size: 16px;
	font-weight: bold;
	padding-left: 3px;
	color: #333333;
	text-shadow: 1px 1px 1px #CCCCCC;
}
.title_02 div{
	font-size: 16px;
	font-weight: bold;
	padding-left: 3px;
	color: #333333;
}

/* 入力項目用 */
.table_input {
	margin-left:10px;
	border: 0px;
	border-collapse: collapse;
	border-spacing: 0px;
}
.table_input th {
	font-size: 16px;
	font-weight: bold;
	color: #555555;
	text-align: left;
	vertical-align:middle;
	border: 0px;
	padding-left:5px;
	padding-right:5px;
	padding-bottom:3px;
	background-color: transparent;
}
.table_input td {
	font-size: 16px;
	border: 0px;
	padding:0px;
	padding-bottom:3px;
	background-color: transparent;
	vertical-align:middle;
}

/* 表示用 */
.table_show {
	margin-left:10px;
	margin-right:10px;
	color: #444444;
	border: 0px;
	border-collapse: collapse;
	border-spacing: 0px;
}
.table_show th {
	font-size: 16px;
	border: 0px;
	padding:0px;
	text-align: left;
	padding-bottom:0px;
	background-color: transparent;
}
.table_show td {
	font-size: 16px;
	border: 0px;
	padding:0px;
	padding-bottom:0px;
	background-color: transparent;
}

/* 表 */
.table_list {
	margin-left:10px;
	margin-right:10px;
	border: 0px;
	border-collapse: collapse;
	border-spacing: 0px;
}
.table_list th {
	font-size: 14px;
	white-space: nowrap;
	border: solid 1px #CCCCCC;
	padding:5px;
	background-color: #EEEEEE;
}
.table_list td {
	font-size: 14px;
	white-space: nowrap;
	border: solid 1px #CCCCCC;
	padding:5px;
	background-color: transparent;
}

/* ボタン用 */
.table_button {
	margin-left:8px;
	border: 0px;
	border-collapse: collapse;
	border-spacing: 0px;
}
.table_button td {
	font-size: 13px;
	font-weight: bold;
	color: #444444;
	text-align: left;
	vertical-align:bottom;
	border: 0px;
	padding-left:5px;
	padding-right:5px;
	padding-bottom:10px;
	background-color: transparent;
}

.ck_div {
	vertical-align:middle;
	height: 30px;
}
.ck_input {
	vertical-align:middle;
	height: 25px;
}
.ck_label {
	vertical-align:middle;
	color: #444444;
	font-size: 13px;
}
.req {
	width: 38px;
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 2px;
}
.req span {
	display: inline-block;
	width: auto;
	margin-left: 5px;
	padding: 3px 5px;
	font-size: 11px;
	font-weight: bold;
	background-color: #ff8710;
	color: #fff;
	border-radius: 3px;
	line-height: 1;
}

.req_title02 {
	display: inline-block;
	width: auto;
	margin-left: 5px;
	padding: 3px 5px;
	font-size: 11px !important;
	font-weight: bold;
	background-color: #ff8710;
	color: #ffffff !important;
	border-radius: 3px;
	line-height: 1;
	margin-top: 0px;
}

.kojin_info {
	font-size: 12px;
	font-weight: bold;
	color: #444444;
	border-radius: 5px;
	padding-top: 10px;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 10px;
	background-color: #e6f4ff;
	line-height:1.8em;
}

.privacy_check {
	display: block;
	width: 300px;
	padding-left:5px;
	font-size: 13px;
	text-align: left;
}

.privacy_check label {
	margin-right: 0px;
}

.privacy_check input {
 	cursor: pointer;
}

.privacy_check span {
	display: inline-block;
	width: auto;
	margin-left: 5px;
	padding: 3px 5px;
	font-size: 11px;
	font-weight: bold;
	background-color: #ff8710;
	color: #fff;
	border-radius: 3px;
	line-height: 1;
	vertical-align: baseline;
}

.privacy_check a {
	 margin: 0 0px;
}

.privacy_check a:after {
	content: url("../images/outlink2.svg");
	display: inline-block;
	padding-left: 3px;
}

/* ボタン関連 */
/** ベースの設定 **/
.bt {
	width: 130px;
	height: 35px;
	border-radius: 5px;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
	color:#FFFFFF;
	background-color: #0000CD;
	box-shadow: 0px 2px 2px rgba(0,0,0,0.3);
	border: solid 1px  rgba(0,0,0,.2);
	padding:0px;
	line-height: 1.1em;
}
/** マウスオーバーしたとき **/
.bt:hover {
	cursor: pointer;
	color:#DDDDDD;
	opacity: 0.4;
	filter: alpha(opacity=40);
	-ms-filter: "alpha(opacity=40)";
	box-shadow: 0 0 10px rgba(0,0,0,0);
}

/** 無効化のとき **/
.bt:disabled {
	background-color:#BBBBBB;
}



.order_bt {
	font-family: "メイリオ",Meiryo,"Meiryo UI","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",Helvetica,Arial,sans-serif;
	font-size: 14px;
	width:100%;
}

.flex{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.flex div{
	text-align: left;
}

.item_title {
	padding-top : 9px;
	padding-left : 10px;
	padding-bottom : 3px;
	font-size: 15px;
	font-weight: bold;
	color: #555555;
}
.item_text {
	padding-top : 9px;
	padding-bottom : 3px;
	font-size: 15px;
	color: #555555;
	height: 20px;
}

.item_title02 {
	padding-top : 9px;
	padding-left : 10px;
	padding-bottom : 3px;
	font-size: 13px;
	font-weight: bold;
	color: #555555;
}
.item_text02 {
	padding-top : 9px;
	padding-bottom : 3px;
	font-size: 13px;
	color: #555555;
	height: 20px;
}

.item_input {
	padding-top : 3px;
	padding-bottom : 3px;
	font-size: 13px;
	color: #555555;
}

.item_img {
	padding-top : 5px;
	padding-left : 3px;
	padding-bottom : 3px;
}

.item_info {
	margin-top:3px;
	padding : 6px;
	font-size: 12px;
	border-radius: 5px;
	color: #333333;
	background-color: #ccffcc;
}


.item_title_a090 {
	width:60px;
}

.item_title_a110 {
	width:110px;
}
.item_title_a120 {
	width:120px;
}
.item_title_a160 {
	width:160px;
}
.item_title_a170 {
	width:170px;
}

.nm_st {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}


.msg_text01 {
	line-height: 1.5em;
	margin-top:3px;
	padding : 6px;
	font-size: 14px !important;
	color: #333333;
}

.separate_line {
	border-top: solid 1px #CCCCCC;
}


/* エラーメッセージ用 */
.error_text_01 {
	text-align: left;
	font-size: 13px;
	color: red;
	padding-top : 5px;
	padding-left : 0px;
	padding-bottom : 0px;
}
.error_text_02 {
	text-align: left;
	font-size: 13px;
	color: red;
	padding-top : 5px;
	padding-left : 55px;
	padding-bottom : 0px;
}

.error_text_03 {
	text-align: left;
	font-size: 13px;
	color: red;
	padding-top : 5px;
	padding-left : 5px;
	padding-bottom : 0px;
}

.error_text_04 {
	text-align: left;
	font-size: 13px;
	color: red;
	padding-top : 5px;
	padding-left : 20px;
	padding-bottom : 0px;
}

.error_back_01 {
	background-color: #ff0000;
}

.error_back_02 {
	border-radius: 5px;
	padding-top : 2px;
	padding-left : 10px;
	padding-right : 10px;
	padding-bottom : 2px;
	background-color: #ff0000;
}

