@charset "UTF-8";

/* ------------------------------------------ */
/* デザインチェックボックス（IE非対応）       */
/* inputタグに以下のclassを指定します。       */
/*                                            */
/* 例）青系のチェックボックス（枠14px）       */
/*     class="checkbox01"                     */
/*                                            */
/*     白系のチェックボックス（枠12px）       */
/*     class="checkbox02 checkbox_size12"     */
/* ------------------------------------------ */
/* 基本デザイン（14px） */
.checkbox01,
.checkbox02 {
	appearance: none;
	-webkit-appearance: none;
	-moz-apApearance: none;
	-o-appearance: none;
	box-sizing: border-box;
	position: relative;
	vertical-align: middle !important;
	border: 2px solid #888;
	background-color: #fff;
	cursor: pointer;
	width: 14px;
	height: 14px;
	margin-right: 3px;
}
.checkbox01:checked::before,
.checkbox02:checked::before {
 	box-sizing: border-box;
	position: absolute;
	content: '';
	display: block;
	border-width: 2px;
	border-style: solid;
	border-top: none;
	border-left: none;
	border-color: #fff;
	transform: rotate(45deg);
	top: 0;
	left: 2px;
	width: 6px;
	height: 7px;
}
/* 青 */
.checkbox01:checked {
	border-color: #007caa;
	background-color: #007caa;
}
/* 白 */
.checkbox02:checked::before {
	border-color: #444;
}
/* disabled */
.checkbox01:disabled,
.checkbox02:disabled {
	border-color: #ccc;
	background-color: #ccc;
	opacity: 0.5;
	cursor: default;
}
.checkbox01:disabled::before,
.checkbox02:disabled::before {
	border-color: #fff;
}
/* サイズ12px */
.checkbox01.checkbox_size12,
.checkbox02.checkbox_size12 {
	width: 12px;
	height: 12px;
	margin-right: 3px;
}
.checkbox01.checkbox_size12:checked::before,
.checkbox02.checkbox_size12:checked::before {
	border-right-width: 1px;
	border-bottom-width: 1px;
	top: 0;
	left: 2px;
	width: 4px;
	height: 5px;
}
/* サイズ10px */
.checkbox01.checkbox_size10,
.checkbox02.checkbox_size10 {
	width: 10px;
	height: 10px;
	margin-right: 2px;
}
.checkbox01.checkbox_size10:checked::before,
.checkbox02.checkbox_size10:checked::before {
	border-right-width: 1px;
	border-bottom-width: 1px;
	top: 0;
	left: 1px;
	width: 4px;
	height: 4px;
}

/* ------------------------------------------ */
/* デザインラジオ（IE非対応）                 */
/* inputタグに以下のclassを指定します。       */
/*                                            */
/* 例）青系のラジオ（円直径14px）             */
/*     class="radio01"                        */
/*                                            */
/*     白系のラジオ（円直径16px）             */
/*     class="radio02 checkbox_size16"        */
/* ------------------------------------------ */
/* 基本デザイン（14px） */
.radio01,
.radio02 {
	appearance: none;
	-webkit-appearance: none;
	-moz-apApearance: none;
	-o-appearance: none;
 	box-sizing: border-box;
	position: relative;
	border: 2px solid #888;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	width: 14px;
	height: 14px;
	margin-right: 2px;
	vertical-align: -2px !important;
}
.radio01:checked::before,
.radio02:checked::before {
 	box-sizing: border-box;
	position: absolute;
	content: '';
	display: block;
	border-width: 1px;
	border-style: solid;
	border-radius: 50%;
	top: 2px;
	left: 2px;
	width: 6px;
	height: 6px;
}
/* 青系 */
.radio01:checked::before {
	border-color: #007caa;
	background-color: #007caa;
}
/* 白系 */
.radio02:checked::before {
	border-color: #444;
	background-color: #444;
}
/* disabled */
.radio01:disabled,
.radio02:disabled {
	border-color: #ccc;
	background-color: #ccc;
	opacity: 0.5;
	cursor: default;
}
/* サイズ16px */
.radio01.radio_size16,
.radio02.radio_size16 {
	width: 16px;
	height: 16px;
	margin-right: 3px;
	vertical-align: -4px !important;
}
.radio01.radio_size16:checked::before,
.radio02.radio_size16:checked::before {
	top: 2px;
	left: 2px;
	width: 8px;
	height: 8px;
}

/* -------------------------------------------------- */
/* ツールチップ                                       */
/* hoverするアイコンを囲う要素に以下を指定します。    */
/*   class="tip_trigger01"                            */
/*   data-text="メッセージ文言"                       */
/* -------------------------------------------------- */
.tip_trigger01 {
	position: relative;
}
.tip_trigger01:hover::before {
	content: attr(data-text)"";
	display: block;
	position: absolute;
	z-index: 999;
	border-radius: 3px;
	background-color: #666;
	color: #fff;
	padding: 4px 8px;
	top: -28px;
	font-size: 13px;
	white-space: nowrap;
}
/* 固定幅（幅は個別指定する） */
.tip_trigger01.tip_width_fixed:hover::before {
	white-space: normal;
}

/* -------------------------------------------------- */
/* ツールチップ                                       */
/* hoverするアイコンなど自体に以下を指定します。    */
/*   class="tip_trigger02"                            */
/*   data-text="メッセージ文言"                       */
/* -------------------------------------------------- */
.tip_trigger02 {
	position: relative;
}
.tip_trigger02:hover::after {
	content: attr(data-text)"";
	display: block;
	position: absolute;
	z-index: 999;
	border-radius: 3px;
	background-color: #666;
	color: #fff;
	padding: 6px 8px;
	top: -28px;
	font-size: 13px;
	white-space: nowrap;
	box-sizing: border-box;
	line-height: 1.2;
}
/* FontAwesomeのタグにツールチップを付ける場合 */
.fas.tip_trigger02:hover::after,
.far.tip_trigger02:hover::after,
.fal.tip_trigger02:hover::after,
.fad.tip_trigger02:hover::after {
	font-family: "Meiryo UI", sans-serif;
}
/* 固定幅（幅は個別指定する） */
.tip_trigger02.tip_width_fixed:hover::after {
	white-space: normal;
}

/* 背景色白のツールチップ */
.tip_trigger02.tip_type_white:hover::after {
	background-color: #fff;
	border: 1px solid #777;
	color: #444;
	top: -42px;
	padding: 8px;
}

/* ----------------------------------------------- */
/* カラーパレット（業務の色）                      */
/* ※IDの前方、後方一致にしているのは画面内に      */
/*   複数のカラーパレットがある場合に対応するため  */
/* ----------------------------------------------- */
div[id^="button_color_"] * {
	box-sizing: border-box;
}
div[id^="button_color_"] {
	padding: 18px;
	background-color: #fff;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
	box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.3);
	animation: fade-show .2s linear 0s;
	z-index: 30010;
}
div[id^="button_color_"] .color-box {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid #bbb;
	cursor: pointer;
	margin-left: 5px;
}
div[id^="button_color_"] ul li {
	border: none;
}
div[id^="button_color_"] li[id$="_color-0"],
div[id^="button_color_"] li[id$="_color-9"] {
	margin-left: 0;
}
div[id^="button_color_"] li[id$="_color-8"] {
	margin-bottom: 5px;
}

/* ------------------------------------------ */
/* hoverで丸い背景が付くリンク                */
/* ------------------------------------------ */
.link_circle {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #007caa;
	width: 24px;
	height: 24px;
	border-radius: 100px;
	cursor: pointer;
}
.link_circle:hover {
	background-color: #e0e0e0;
}
a.link_circle:hover {
	text-decoration: none !important;
}

/* ------------------------------------------ */
/* デザインリンク                      */
/* ------------------------------------------ */
/* 薄いグレーのリンク */
a.link_gray01:link,
a.link_gray01:visited {
	color: #888;
}
a.link_gray01:hover {
	color: #069;
}
/* 青（#007caa）のリンク */
a.link_blue01:link,
a.link_blue01:visited {
	color: #007caa;
}
/* [>]が先頭に付くリンク   */
a.angle_mark {
	position: relative;
}
a.angle_mark::before {
	position: absolute;
	top: 6px;
	left: -11px;
	content: '';
	width: 5px;
	height: 5px;
	border: 0px;
	border-top: solid 1px #888;
	border-right: solid 1px #888;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* ------------------------------------------ */
/* ボタン                                     */
/* ------------------------------------------ */
/* 共通 */
.btn_main01,
.btn_main02,
.btn_main03,
.btn_main04,
.btn_sub01 {
	font: inherit;
	border: 1px solid;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	transition: all .15s ease-out;
	cursor: pointer;
}
.btn_main01:hover,
.btn_main02:hover,
.btn_main03:hover,
.btn_main04:hover,
.btn_sub01:hover {
	text-decoration: none;
}
.btn_main01:disabled,
.btn_main02:disabled,
.btn_main03:disabled,
.btn_main04:disabled,
.btn_sub01:disabled {
	cursor: default;
}
.btn_main01,
.btn_main02 {
	min-width: 100px;
}
/* 青 */
.btn_main01 {
	border-radius: 5px;
	border-color: #007caa;
	background-color: #007caa;
	color: #fff;
	padding: 7px 15px;
}
.btn_main01:not(:disabled):hover {
	border-color: #60b0ce;
	background-color: #60b0ce;
	color: #fff;
}
.btn_main01:disabled {
	border-color: #ccc;
	background-color: #ccc;
	color: #fff;
}
/* 背景色無し */
.btn_main02 {
	background-color: transparent;
	border-color: transparent;
	color: #007caa;
	padding: 7px 15px;
}
.btn_main02:not(:disabled):hover {
	border-radius: 5px;
	border-color: #e0e0e0;
	background-color: #e0e0e0;
}
.btn_main02:disabled {
	color: #ccc;
}
/* グレー薄  */
.btn_main03 {
	border: 1px solid #ddd;
	background-color: #ddd;
	border-radius: 5px;
	padding: 7px 15px;
}
.btn_main03:not(:disabled):hover {
	border-color: #eaeaea;
	background-color: #eaeaea;
}
.btn_main03:disabled {
	color: #999;
}
/* グレー濃（hoverで濃くなるデザイン）
   ※背景色グレーの上にグレーのボタンを乗せる場合はこれがおすすめ
*/
.btn_main04 {
	border: 1px solid #d0d0d0;
	background-color: #d0d0d0;
	border-radius: 5px;
	padding: 7px 15px;
}
.btn_main04:not(:disabled):hover {
	border-color: #bbb;
	background-color: #bbb;
}
.btn_main04:disabled {
	color: #777;
}
/* 白 */
.btn_sub01 {
	border: 1px solid #ccc;
	background-color: #fff;
	color: #007caa;
	border-radius: 5px;
	cursor: pointer;
	white-space: nowrap;
}
.btn_sub01:not(:disabled):hover {
	border-color: #ccc;
	background-color: #ddf6ff;
}
.btn_sub01:disabled {
	color: #ccc;
}
.btn_sub01.btn_size_s {
	font-size: 12px;
	padding: 1px 5px;
}

/* ------------------------------------------ */
/* その他のコントロール                       */
/* ------------------------------------------ */
/* input */
.input_text01,
.input_tel01,
.input_password01 {
	font: inherit;
	border-style: none;
	color: inherit;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	padding: 4px 10px;
	display: inline-block;
}
/* input（tel） */
.input_tel01 {
	text-align: right;
}
/* セレクト */
.select01 {
	font: inherit;
	text-transform: none;
	width: 100%;
	padding: 3px;
	border-radius: 5px;
	border: 1px solid #e0e0e0;
	background-color: #fff;
}
/* フォーカス時 */
.input_text01:focus-within,
.input_tel01:focus-within,
.input_password01:focus-within,
.textarea01:focus-within,
.select01:focus-within {
	border: 1px solid #b8dae2;
	background-color: #fff;
	box-shadow: 0 0 0 1px #b8dae2;
	outline: none;
}

/* ------------------------------------------ */
/* 検索バー（虫眼鏡アイコン）                 */
/* ------------------------------------------ */
.input_search_keyword_outer {
	box-sizing: border-box;
	position: relative;
	border: 1px solid #f3f3f3;
	padding: 0;
	border-radius: 5px;
}
.input_search_keyword_outer .input_search_keyword {
	font: inherit;
	border: none;
	border-radius: 5px;
	background-color: #f3f3f3;
	width: 100%;
	height: 100%;
	padding: 8px 35px 8px 15px;
}
.input_search_keyword_outer .input_search_keyword:focus-within {
	border: 1px solid #b8dae2;
	background-color: #fff;
	box-shadow: 0 0 0 1px #b8dae2;
	outline: none;
}
.input_search_keyword_outer .input_search_keyword + .btn_search {
	position: absolute;
	border: none;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	background: none;
	width: 35px;
	height: 100%;
	top: 0;
	right: 0;
	cursor: pointer;
}
.input_search_keyword + .btn_search .fa-search {
	font-size: 15px;
}

/* ---------------------------------------------------
  基本テーブルデザイン1（横罫線のみのテーブル）
  tableタグにclass="tb_des1"を指定してください。
  THが上の場合: class="type_th_top"も指定。
  THが左の場合: class="type_th_left"も指定。
 ----------------------------------------------------- */
.tb_des1 {
	table-layout: fixed;
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
	border-collapse: collapse;
}
.tb_des1 > thead > tr > th,
.tb_des1 > tbody > tr > th {
	background-color: #eee;
	font-weight: normal;
}
.tb_des1 .f_size12 {
	font-size: 12px;
}

/* THが上のデザイン */
.tb_des1.type_th_top > thead > tr > th,
.tb_des1.type_th_top > tbody > tr > th {
	text-align: left;
	border-bottom: 1px solid #999;
}
.tb_des1.type_th_top > thead > tr > th.type_center,
.tb_des1.type_th_top > tbody > tr > th.type_center {
	text-align: center;
}
.tb_des1.type_th_top > thead > tr > th,
.tb_des1.type_th_top > tbody > tr > th,
.tb_des1.type_th_top > tbody > tr > td {
	padding: 5px 10px;
}
.tb_des1.type_th_top > tbody > tr:not(:first-child) > td {
	border-top: 1px solid #aaa;
}

/* THが左のデザイン */
.tb_des1.type_th_left > thead > tr:not(:first-child) > th,
.tb_des1.type_th_left > tbody > tr:not(:first-child) > th,
.tb_des1.type_th_left > tbody > tr:not(:first-child) > td {
	border-top: 1px solid #aaa;
}
.tb_des1.type_th_left > thead > tr > th,
.tb_des1.type_th_left > tbody > tr > th {
	text-align: left;
	padding: 5px 10px;
	vertical-align: top;
}
.tb_des1.type_th_left > tbody > tr > td {
	padding: 5px;
}

/* ---------------------------------------------------
  基本テーブルデザイン2（縦横罫線ありのテーブル）
  tableタグにclass="tb_des2"を指定してください。
  THが上の場合: class="type_th_top"も指定。
  THが左の場合: class="type_th_left"も指定。
 ----------------------------------------------------- */
.tb_des2 {
	table-layout: fixed;
	border-top: 1px solid #999;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	border-collapse: collapse;
}
.tb_des2 > thead > tr > th,
.tb_des2 > tbody > tr > th {
	background-color: #f7f7f7;
	border-bottom: 1px solid #999;
	font-weight: normal;
}
.tb_des2 > thead > tr > th,
.tb_des2 > tbody > tr > th,
.tb_des2 > tbody > tr > td,
.tb_des2 > tfoot > tr > td {
	border-left: 1px solid #999;
}
.tb_des2 > tbody > tr > td,
.tb_des2 > tfoot > tr > td {
	padding: 5px;
}
.tb_des2 > tbody > tr:not(:first-child) > td,
.tb_des2 > tfoot > tr > td {
	border-top: 1px solid #999;
}
/* THが上のデザイン */
.tb_des2.type_th_top > thead > tr > th {
	padding: 5px;
}
/* THが左のデザイン */
.tb_des2.type_th_left > tbody > tr > th {
	padding: 5px;
	text-align: left;
}

/* THをcolspanして2段目の間に縦棒で区切るデザイン */
.type_th_top > thead > tr > th.th_col_pair {
	border-top: none;
	padding-left: 0;
	padding-right: 0;
	padding-top: 1px;
}
.type_th_top > thead > tr > th.th_col_pair .col_pair {
	display: inline-block;
	width: 100%;
}
.type_th_top > thead > tr > th.th_col_pair .col_pair.has_left_line {
	border-left: 1px solid #999;
}

/* ------------------------------------------ */
/* その他                                     */
/* ------------------------------------------ */
@keyframes fade-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
