@charset "UTF-8";

/* CSS Document */

* {
  margin: 0;
  padding: 0;
}

/*　フォントスタイルをリセット　*/

body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
table,
th,
td,
em,
strong,
address {
  font-family: Meiryo,"Hiragino Kaku Gothic ProN", "\6E38\30B4\30B7\30C3\30AF", YuGothic, sans-serif;
}

/*　リンクスタイルを指定　*/

.btn a {
  color: #FFFFFF !important;
}

/*　文字サイズ・行間を指定　*/

/*　文字カラーを指定　*/

li {
  list-style-type: none;
}

/*	**********************************************************************	*/

/*																			*/

/* 		flexbox関連															*/

/*																			*/

/*　**********************************************************************	*/

/*																			*/

/*　flexbox（コンテナ指定）　*/

.flexbox {
  display: -ms-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

/*																*/

/*	***********************************************************	*/

/* 		flex-direction（配置方向）								*/

/*　***********************************************************	*/

/*																*/

/*　flex_row（横並び：左→右）※基本省略可　*/

.flex_row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

/*　flex_row_reverse（横並び：右→左）　*/

.flex_direction_row_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/*　flex_column（縦並び：上→下）　*/

.flex_column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*　flex_column-reverse（縦並び：下→上）　*/

.flex_column_reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

/*																*/

/*	***********************************************************	*/

/* 		flex-wrap（折り返し設定）								*/

/*　***********************************************************	*/

/*																*/

/*　flex_nowrap（折り返しなし）※基本省略可　*/

.flex_nowrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/*　flex_wrap（折り返し）　*/

.flex_wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/*																*/

/*	***********************************************************	*/

/* 		justify-content（水平方向の揃え方）						*/

/*　***********************************************************	*/

/*																*/

/*　flex_justify_start（横配置：左揃え｜縦配置：上揃え）※基本省略可　*/

.flex_justify_start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/*　flex_justify_end（横配置：右揃え｜縦配置：下揃え）　*/

.flex_justify_end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/*　flex_justify_center（中央揃え）　*/

.flex_justify_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*　flex_justify_space_between（均等に間隔を空ける）　*/

.flex_justify_space_between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*　flex_justify_space_around（均等に間隔を空ける＋両端にも半分ずつの間隔を空ける）　*/

.flex_justify_space_around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

/*																*/

/*	***********************************************************	*/

/* 		align-items（垂直方向の揃え方）							*/

/*　***********************************************************	*/

/*																*/

/*　flex_align_items_start（横配置：上揃え｜縦配置：左揃え）※基本省略可　*/

.flex_align_items_start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/*　flex_align_items_end（横配置：下揃え｜縦配置：右揃え）　*/

.flex_align_items_end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/*　flex_align_items_center（中央揃え）　*/

.flex_align_items_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*　flex_align_items_baseline（ベースラインで揃える）　*/

.flex_align_items_baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

/*　flex_align_items_stretch（親アイテムに高さ指定がある：上下一杯まで広げる｜親アイテムに高さ指定がない：一番高いアイテムに合わせて広げる）　*/

.flex_align_items_stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/*																*/

/*	***********************************************************	*/

/* 		align-content（複数行の垂直方向の揃え方）				*/

/*　***********************************************************	*/

/*																*/

/*　flex_align_content_start（横配置：上揃え｜縦配置：左揃え）※基本省略可　*/

.flex_align_content_start {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

/*　flex_align_content_end（横配置：下揃え｜縦配置：右揃え）　*/

.flex_align_content_end {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

/*　flex_align_content_center（中央揃え）　*/

.flex_align_content_center {
  -ms-flex-line-pack: center;
      align-content: center;
}

/*　flex_align_content_space_between（均等に間隔を空ける）　*/

.flex_align_content_space_between {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

/*　flex_align_content_space_around（均等に間隔を空ける＋上下にも半分ずつの間隔を空ける）　*/

.flex_align_content_space_around {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

/*																			*/

/*	**********************************************************************	*/

/*																			*/

/* 		入力フォーム用設定													*/

/*																			*/

/*　**********************************************************************	*/

/*																			*/

/*	***********************************************************	*/

/* 		フォームデザイン										*/

/*　***********************************************************	*/

/*																*/

/*　ライン：フォーム上部　*/

.form_line_top {
  width: 100%;
  border: 1px solid;
}

/*　ライン：フォーム下部　*/

.form_line_bottom {
  width: 100%;
  border: 1px solid;
  margin-top: 2px;
}

/*　フォーム：ベース　*/

.form_base {
  width: 100%;
  margin-top: 2px;
  border-radius: 5px 0px 0px 5px;
  display: table;
}

/*　フォーム：タブ　*/

.form_tab {
  width: 7px;
  min-width: 7px;
  border-radius: 5px 0px 0px 5px;
  display: table-cell;
  vertical-align: middle;
}

/*　フォーム：ヘッダ　*/

.form_header {
  width: 178px;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1px;
  padding-left: 10px;
  display: table-cell;
  vertical-align: middle;
}

/*																*/

/*	***********************************************************	*/

/* 		フォームカラー											*/

/*　***********************************************************	*/

/*																*/

/*　ラインカラー：フォーム上部　*/

.form_line_top_color {
  border-color: #f7eef0;
}

/*　ラインカラー：フォーム下部　*/

.form_line_bottom_color {
  border-color: #f7eef0;
}

/*　フォームカラー：ベース　*/

.form_base_color {
  background-color: #faf5f1;
}

/*　フォームカラー：タブ　*/

.form_tab_color {
  background-color: #ead3d8;
}

/*　フォームカラー：ヘッダ　*/

.form_header_color {
  background-color: #f7eef0;
  color: #928083;
}

/*																*/

/*	***********************************************************	*/

/* 		入力エリアデザイン										*/

/*　***********************************************************	*/

/*																*/

/*　入力エリア01（マージンALL15px）　*/

.form_entry_area01 {
  width: 95%;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 1pt;
  margin: 15px;
  padding: 7px;
  border: 1px solid;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

/*　入力エリア02（マージン左以外15px）　*/

.form_entry_area02 {
  width: 95%;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 1pt;
  margin: 15px 15px 15px 0;
  padding: 7px;
  border: 1px solid;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

/*　表示エリア01｜テキスト用（マージンALL15px）　*/

.form_display_area01 {
  width: 95%;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1px;
  margin: 15px;
  padding: 5px 8px 5px 8px;
}

/*　表示エリア02｜テキスト用（マージン左以外15px）　*/

.form_display_area02 {
  width: 95%;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1px;
  margin: 15px 15px 15px 0;
  padding: 5px 8px 5px 8px;
}

/*　表示エリア03｜CSSボタン用（マージンALL15px）　*/

.form_display_area03 {
  width: 95%;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1px;
  margin: 15px;
  padding: 0 8px 0 8px;
}

/*　表示エリア05｜CSSボタン用（マージン左以外15px）　*/

.form_display_area05 {
  width: 95%;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1px;
  margin: 15px 15px 15px 0;
  padding: 0 8px 0 8px;
}

/*																*/

/*	***********************************************************	*/

/* 		入力エリアカラー										*/

/*　***********************************************************	*/

/*																*/

/*　入力エリアカラー　*/

.form_entry_area_color {
  border-color: #d3d3be;
  color: #432b2b;
}

/*　表示エリアカラー　*/

.form_display_area_color {
  color: #432b2b;
}

/*																*/

/*	***********************************************************	*/

/* 		入力モードの指定										*/

/*　***********************************************************	*/

/*																*/

/*　自動　*/

.ime_mode_auto {
  ime-mode: auto;
}

/*　英数字入力モード（変更不可）　*/

.ime_mode_disabled {
  ime-mode: disabled;
}

/*　英数字入力モード（変更可能）　*/

.ime_mode_inactive {
  ime-mode: inactive;
}

/*　日本語入力モード（変更可能）　*/

.ime_mode_active {
  ime-mode: active;
}

/*																*/

/*	***********************************************************	*/

/* 		CSSボタン（CSSで制作）									*/

/*　***********************************************************	*/

/*																*/

/*　CSSボタン01：ベース　*/

.bt_css_button01 {
  font-size: 13px;
  color: #f9fdff;
  text-align: center;
  text-decoration: none;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(154, 153, 188, 0.7)), to(rgba(127, 124, 191, 0.9)));
  background: linear-gradient(to bottom, rgba(154, 153, 188, 0.7), rgba(127, 124, 191, 0.9));
  border-radius: 5px;
  border: 1px solid #8785b1;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3), inset 0px 0px 1px rgba(255, 255, 255, 0.6);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3), inset 0px 0px 1px rgba(255, 255, 255, 0.6);
}

/*　CSSボタン01：ONマウス時　*/

.bt_css_button01:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(154, 153, 188, 0.8)), to(#7f7cbf));
  background: linear-gradient(to bottom, rgba(154, 153, 188, 0.8), #7f7cbf);
  cursor: pointer;
}

/*　CSSボタン02：ベース　*/

.bt_css_button02 {
  font-size: 13px;
  color: #f9fdff;
  text-align: center;
  text-decoration: none;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(157, 204, 138, 0.8)), to(rgba(51, 128, 93, 0.8)));
  background: linear-gradient(to bottom, rgba(157, 204, 138, 0.8), rgba(51, 128, 93, 0.8));
  border-radius: 5px;
  border: 1px solid rgba(90, 133, 112, 0.8);
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3), inset 0px 0px 1px rgba(255, 255, 255, 0.6);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3), inset 0px 0px 1px rgba(255, 255, 255, 0.6);
}

/*　CSSボタン02：ONマウス時　*/

.bt_css_button02:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#9dcc8a), to(rgba(51, 128, 93, 0.85)));
  background: linear-gradient(to bottom, #9dcc8a, rgba(51, 128, 93, 0.85));
  cursor: pointer;
}

/*　CSSボタン03：ベース　*/

.bt_css_button03 {
  font-size: 13px;
  color: white;
  text-align: center;
  text-decoration: none;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(204, 185, 178, 0.5)), to(rgba(176, 139, 125, 0.5)));
  background: linear-gradient(to bottom, rgba(204, 185, 178, 0.5), rgba(176, 139, 125, 0.5));
  border-radius: 5px;
  border: 1px solid rgba(156, 126, 116, 0.2);
  -webkit-box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4), inset 0px 0px 1px rgba(255, 255, 255, 0.4);
          box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4), inset 0px 0px 1px rgba(255, 255, 255, 0.4);
}

/*　CSSボタン03：ONマウス時　*/

.bt_css_button03:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(204, 185, 178, 0.4)), to(rgba(176, 139, 125, 0.4)));
  background: linear-gradient(to bottom, rgba(204, 185, 178, 0.4), rgba(176, 139, 125, 0.4));
  cursor: pointer;
}

/*　CSSボタン04：ベース　*/

.bt_css_button04 {
  font-size: 13px;
  color: white;
  text-align: center;
  text-decoration: none;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(219, 107, 107, 0.8)), to(rgba(163, 70, 70, 0.8)));
  background: linear-gradient(to bottom, rgba(219, 107, 107, 0.8), rgba(163, 70, 70, 0.8));
  border-radius: 5px;
  border: 1px solid rgba(156, 126, 116, 0.2);
  -webkit-box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4), inset 0px 0px 1px rgba(255, 255, 255, 0.4);
          box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4), inset 0px 0px 1px rgba(255, 255, 255, 0.4);
}

/*　CSSボタン04：ONマウス時　*/

.bt_css_button04:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(219, 107, 107, 0.9)), to(rgba(163, 70, 70, 0.9)));
  background: linear-gradient(to bottom, rgba(219, 107, 107, 0.9), rgba(163, 70, 70, 0.9));
  cursor: pointer;
}

/*　aリンクをボタン化した際の文字色設定　*/

.link_text_color a {
  color: #f9fdff;
}

/*																			*/

/*	**********************************************************************	*/

/*																			*/

/* 		テーブル用設定														*/

/*																			*/

/*　**********************************************************************	*/

/*																			*/

/*	***********************************************************	*/

/* 		テーブルデザイン										*/

/*　***********************************************************	*/

/*																*/

/*　テーブル：ヘッダ　*/

.table_header {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 1px;
  border: 1px solid;
}

/*　テーブル：データ　*/

.table_data {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 1px;
  border: 1px solid;
}

/*　テーブル等のボーダーを非表示　*/

.border_none {
  border-style: none;
}

/*	***********************************************************	*/

/* 		テーブルカラー											*/

/*　***********************************************************	*/

/*																*/

/*　テーブルカラー：ヘッダ　*/

.table_header_color {
  border-color: #d0d2dc;
  background-color: #fcf9fc;
  color: #61798c;
}

/*　テーブルカラー：データ　*/

.table_data_color {
  border-color: #d0d2dc;
  background-color: white;
  color: #918871;
}

/*																			*/

/*	**********************************************************************	*/

/*																			*/

/* 		タブ切り替えコンテンツ用設定										*/

/*																			*/

/*　**********************************************************************	*/

/*																			*/

/*	***********************************************************	*/

/* 		タブ・コンテンツデザイン								*/

/*　***********************************************************	*/

/*																*/

/*　タブ：ベース（通常時）　*/

.tab_base {
  width: 110px;
  height: 40px;
  padding-top: 8px;
  background-color: #46749f;
  -webkit-box-shadow: 1px 0px 2px white;
          box-shadow: 1px 0px 2px white;
  border-radius: 5px 5px 0 0;
  text-decoration: none;
  display: block;
  -webkit-transition-duration: 300ms;
  -moz-transition-duration: 300ms;
}

/*　タブ：ベース（選択時）　*/

.tab_base_target {
  width: 110px;
  height: 40px;
  color: #f9fdff;
  padding-top: 8px;
  background-color: #6695c1;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 5px 5px 0 0;
  text-decoration: none;
  display: block;
}

/*　タブ：文字カラー　*/

.tab_text_color {
  color: #f9fdff;
}

/*　タブ：ONマウス時　*/

.tab_base:hover {
  background-color: #6695c1;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*　タブ：コンテンツ　*/

.tab_main_content {
  width: auto;
  height: auto;
  border: 1px solid #d8e3ef;
  background-color: #f8fbff;
  border-radius: 0 5px 5px 5px;
}

/*																			*/

/*	**********************************************************************	*/

/*																			*/

/*		マージン＆パディング＆幅											*/

/*																			*/

/*　**********************************************************************	*/

/*																			*/

/*	***********************************************************	*/

/* 		マージン：上											*/

/*　***********************************************************	*/

/*																*/

.mg_t-5 {
  margin-top: -5px;
}

.mg_t5 {
  margin-top: 5px;
}

.mg_t10 {
  margin-top: 10px;
}

.mg_t15 {
  margin-top: 15px;
}

.mg_t20 {
  margin-top: 20px;
}

.mg_t25 {
  margin-top: 25px;
}

.mg_t30 {
  margin-top: 30px;
}

.mg_t35 {
  margin-top: 35px;
}

.mg_t40 {
  margin-top: 40px;
}

.mg_t45 {
  margin-top: 45px;
}

.mg_t50 {
  margin-top: 50px;
}

.mg_t55 {
  margin-top: 55px;
}

.mg_t60 {
  margin-top: 60px;
}

.mg_t65 {
  margin-top: 65px;
}

.mg_t70 {
  margin-top: 70px;
}

.mg_t75 {
  margin-top: 75px;
}

.mg_t80 {
  margin-top: 80px;
}

.mg_t85 {
  margin-top: 85px;
}

.mg_t90 {
  margin-top: 90px;
}

.mg_t95 {
  margin-top: 95px;
}

.mg_t100 {
  margin-top: 100px;
}

/*	***********************************************************	*/

/* 		マージン：下											*/

/*　***********************************************************	*/

/*																*/

.mg_b5 {
  margin-bottom: 5px;
}

.mg_b10 {
  margin-bottom: 10px;
}

.mg_b15 {
  margin-bottom: 15px;
}

.mg_b20 {
  margin-bottom: 20px;
}

.mg_b25 {
  margin-bottom: 25px;
}

.mg_b30 {
  margin-bottom: 30px;
}

.mg_b35 {
  margin-bottom: 35px;
}

.mg_b40 {
  margin-bottom: 40px;
}

.mg_b45 {
  margin-bottom: 45px;
}

.mg_b50 {
  margin-bottom: 50px;
}

.mg_b55 {
  margin-bottom: 55px;
}

.mg_b60 {
  margin-bottom: 60px;
}

.mg_b65 {
  margin-bottom: 65px;
}

.mg_b70 {
  margin-bottom: 70px;
}

.mg_b75 {
  margin-bottom: 75px;
}

.mg_b80 {
  margin-bottom: 80px;
}

.mg_b85 {
  margin-bottom: 85px;
}

.mg_b90 {
  margin-bottom: 90px;
}

.mg_b95 {
  margin-bottom: 95px;
}

.mg_b100 {
  margin-bottom: 100px;
}

/*	***********************************************************	*/

/* 		マージン：左											*/

/*　***********************************************************	*/

/*																*/

.mg_l5 {
  margin-left: 5px;
}

.mg_l10 {
  margin-left: 10px;
}

.mg_l15 {
  margin-left: 15px;
}

.mg_l20 {
  margin-left: 20px;
}

.mg_l25 {
  margin-left: 25px;
}

.mg_l30 {
  margin-left: 30px;
}

.mg_l35 {
  margin-left: 35px;
}

.mg_l40 {
  margin-left: 40px;
}

.mg_l45 {
  margin-left: 45px;
}

.mg_l50 {
  margin-left: 50px;
}

.mg_l55 {
  margin-left: 55px;
}

.mg_l60 {
  margin-left: 60px;
}

.mg_l65 {
  margin-left: 65px;
}

.mg_l70 {
  margin-left: 70px;
}

.mg_l75 {
  margin-left: 75px;
}

.mg_l80 {
  margin-left: 80px;
}

.mg_l85 {
  margin-left: 85px;
}

.mg_l90 {
  margin-left: 90px;
}

.mg_l95 {
  margin-left: 95px;
}

.mg_l100 {
  margin-left: 100px;
}

/*	***********************************************************	*/

/* 		マージン：右											*/

/*　***********************************************************	*/

/*																*/

.mg_r5 {
  margin-right: 5px;
}

.mg_r10 {
  margin-right: 10px;
}

.mg_r15 {
  margin-right: 15px;
}

.mg_r20 {
  margin-right: 20px;
}

.mg_r25 {
  margin-right: 25px;
}

.mg_r30 {
  margin-right: 30px;
}

.mg_r35 {
  margin-right: 35px;
}

.mg_r40 {
  margin-right: 40px;
}

.mg_r45 {
  margin-right: 45px;
}

.mg_r50 {
  margin-right: 50px;
}

.mg_r55 {
  margin-right: 55px;
}

.mg_r60 {
  margin-right: 60px;
}

.mg_r65 {
  margin-right: 65px;
}

.mg_r70 {
  margin-right: 70px;
}

.mg_r75 {
  margin-right: 75px;
}

.mg_r80 {
  margin-right: 80px;
}

.mg_r85 {
  margin-right: 85px;
}

.mg_r90 {
  margin-right: 90px;
}

.mg_r95 {
  margin-right: 95px;
}

.mg_r100 {
  margin-right: 100px;
}

/*																*/

/*	***********************************************************	*/

/* 		マージン：左（em）										*/

/*　***********************************************************	*/

/*																*/

.mg_l1em {
  margin-left: 1.0em;
}

.mg_l2em {
  margin-left: 2.0em;
}

.mg_l3em {
  margin-left: 3.0em;
}

.mg_l4em {
  margin-left: 4.0em;
}

.mg_l5em {
  margin-left: 5.0em;
}

/*																*/

/*	***********************************************************	*/

/* 		パディング：上											*/

/*　***********************************************************	*/

/*																*/

/*　パディング_上10px　*/

.padding_t10 {
  padding-top: 10px;
}

.pd_t5 {
  padding-top: 5px;
}

.pd_t10 {
  padding-top: 10px;
}

.pd_t15 {
  padding-top: 15px;
}

.pd_t20 {
  padding-top: 20px;
}

.pd_t25 {
  padding-top: 25px;
}

.pd_t30 {
  padding-top: 30px;
}

.pd_t35 {
  padding-top: 35px;
}

.pd_t40 {
  padding-top: 40px;
}

.pd_t45 {
  padding-top: 45px;
}

.pd_t50 {
  padding-top: 50px;
}

.pd_t55 {
  padding-top: 55px;
}

.pd_t60 {
  padding-top: 60px;
}

.pd_t65 {
  padding-top: 65px;
}

.pd_t70 {
  padding-top: 70px;
}

.pd_t75 {
  padding-top: 75px;
}

.pd_t80 {
  padding-top: 80px;
}

.pd_t85 {
  padding-top: 85px;
}

.pd_t90 {
  padding-top: 90px;
}

.pd_t95 {
  padding-top: 95px;
}

.pd_t100 {
  padding-top: 100px;
}

/*																*/

/*	***********************************************************	*/

/* 		パディング：下											*/

/*　***********************************************************	*/

/*																*/

.pd_b5 {
  padding-bottom: 5px;
}

.pd_b10 {
  padding-bottom: 10px;
}

.pd_b15 {
  padding-bottom: 15px;
}

.pd_b20 {
  padding-bottom: 20px;
}

.pd_b25 {
  padding-bottom: 25px;
}

.pd_b30 {
  padding-bottom: 30px;
}

.pd_b35 {
  padding-bottom: 35px;
}

.pd_b40 {
  padding-bottom: 40px;
}

.pd_b45 {
  padding-bottom: 45px;
}

.pd_b50 {
  padding-bottom: 50px;
}

.pd_b55 {
  padding-bottom: 55px;
}

.pd_b60 {
  padding-bottom: 60px;
}

.pd_b65 {
  padding-bottom: 65px;
}

.pd_b70 {
  padding-bottom: 70px;
}

.pd_b75 {
  padding-bottom: 75px;
}

.pd_b80 {
  padding-bottom: 80px;
}

.pd_b85 {
  padding-bottom: 85px;
}

.pd_l90 {
  padding-bottom: 90px;
}

.pd_b95 {
  padding-bottom: 95px;
}

.pd_b100 {
  padding-bottom: 100px;
}

/*																*/

/*	***********************************************************	*/

/* 		パディング：左											*/

/*　***********************************************************	*/

/*																*/

.pd_l5 {
  padding-left: 5px;
}

.pd_l10 {
  padding-left: 10px;
}

.pd_l15 {
  padding-left: 15px;
}

.pd_l20 {
  padding-left: 20px;
}

.pd_l25 {
  padding-left: 25px;
}

.pd_l30 {
  padding-left: 30px;
}

.pd_l35 {
  padding-left: 35px;
}

.pd_l40 {
  padding-left: 40px;
}

.pd_l45 {
  padding-left: 45px;
}

.pd_l50 {
  padding-left: 50px;
}

.pd_l55 {
  padding-left: 55px;
}

.pd_l60 {
  padding-left: 60px;
}

.pd_l65 {
  padding-left: 65px;
}

.pd_l70 {
  padding-left: 70px;
}

.pd_l75 {
  padding-left: 75px;
}

.pd_l80 {
  padding-left: 80px;
}

.pd_l85 {
  padding-left: 85px;
}

.pd_l90 {
  padding-left: 90px;
}

.pd_l95 {
  padding-left: 95px;
}

.pd_l100 {
  padding-left: 100px;
}

/*																*/

/*	***********************************************************	*/

/* 		パディング：右											*/

/*　***********************************************************	*/

/*																*/

.pd_r5 {
  padding-right: 5px;
}

.pd_r10 {
  padding-right: 10px;
}

.pd_r15 {
  padding-right: 15px;
}

.pd_r20 {
  padding-right: 20px;
}

.pd_r25 {
  padding-right: 25px;
}

.pd_r30 {
  padding-right: 30px;
}

.pd_r35 {
  padding-right: 35px;
}

.pd_r40 {
  padding-right: 40px;
}

.pd_r45 {
  padding-right: 45px;
}

.pd_r50 {
  padding-right: 50px;
}

.pd_r55 {
  padding-right: 55px;
}

.pd_r60 {
  padding-right: 60px;
}

.pd_r65 {
  padding-right: 65px;
}

.pd_r70 {
  padding-right: 70px;
}

.pd_r75 {
  padding-right: 75px;
}

.pd_r80 {
  padding-right: 80px;
}

.pd_r85 {
  padding-right: 85px;
}

.pd_r90 {
  padding-right: 90px;
}

.pd_r95 {
  padding-right: 95px;
}

.pd_r100 {
  padding-right: 100px;
}

/*																*/

/*	***********************************************************	*/

/* 		パディング：全方向										*/

/*　***********************************************************	*/

/*																*/

.pd_a5 {
  padding: 5px;
}

.pd_a10 {
  padding: 10px;
}

.pd_a15 {
  padding: 15px;
}

.pd_a20 {
  padding: 20px;
}

.pd_a25 {
  padding: 25px;
}

.pd_a30 {
  padding: 30px;
}

.pd_a35 {
  padding: 35px;
}

.pd_a40 {
  padding: 40px;
}

.pd_a45 {
  padding: 45px;
}

.pd_a50 {
  padding: 50px;
}

.pd_a55 {
  padding: 55px;
}

.pd_a60 {
  padding: 60px;
}

.pd_a65 {
  padding: 65px;
}

.pd_a70 {
  padding: 70px;
}

.pd_a75 {
  padding: 75px;
}

.pd_a80 {
  padding: 80px;
}

.pd_a85 {
  padding: 85px;
}

.pd_a90 {
  padding: 90px;
}

.pd_a95 {
  padding: 95px;
}

.pd_a100 {
  padding: 100px;
}

/*																*/

/*	***********************************************************	*/

/* 		幅														*/

/*　***********************************************************	*/

/*																*/

.w_10 {
  width: 10px;
}

.w_20 {
  width: 20px;
}

.w_30 {
  width: 30px;
}

.w_40 {
  width: 40px;
}

.w_50 {
  width: 50px;
}

.w_60 {
  width: 60px;
}

.w_70 {
  width: 70px;
}

.w_80 {
  width: 80px;
}

.w_90 {
  width: 90px;
}

.w_100 {
  width: 100px;
}

.w_150 {
  width: 150px;
}

.w_200 {
  width: 200px;
}

.w_250 {
  width: 250px;
}

.w_300 {
  width: 300px;
}

.w_350 {
  width: 350px;
}

.w_400 {
  width: 400px;
}

.w_450 {
  width: 450px;
}

.w_500 {
  width: 500px;
}

.w_550 {
  width: 550px;
}

.w_600 {
  width: 600px;
}

.w_650 {
  width: 650px;
}

.w_700 {
  width: 700px;
}

/*																			*/

/*	**********************************************************************	*/

/*																			*/

/*		罫線（ボーダー）													*/

/*																			*/

/*　**********************************************************************	*/

/*																			*/

/*	***********************************************************	*/

/* 		罫線：水平（線・影）									*/

/*　***********************************************************	*/

/*																*/

.bd_h_10_30 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.3);
          box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.3);
}

.bd_h_20_30 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.3);
          box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.3);
}

.bd_h_30_30 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.3);
          box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.3);
}

/*																*/

/*	***********************************************************	*/

/* 		罫線：垂直（線・影）									*/

/*　***********************************************************	*/

/*																*/

.bd_v_10_30 {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 1px 0px 0px rgba(255, 255, 255, 0.3);
          box-shadow: inset 1px 0px 0px rgba(255, 255, 255, 0.3);
}

.bd_v_20_30 {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 1px 0px 0px rgba(255, 255, 255, 0.3);
          box-shadow: inset 1px 0px 0px rgba(255, 255, 255, 0.3);
}

.bd_v_30_30 {
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 1px 0px 0px rgba(255, 255, 255, 0.3);
          box-shadow: inset 1px 0px 0px rgba(255, 255, 255, 0.3);
}

/*																			*/

/*	**********************************************************************	*/

/*																			*/

/*		テキスト設定														*/

/*																			*/

/*　**********************************************************************	*/

/*																			*/

/*	***********************************************************	*/

/* 		カラー													*/

/*　***********************************************************	*/

/*																*/

.p_red {
  color: #a95047;
}

.p_green {
  color: #619161;
}

.p_blue {
  color: #465f70;
}

.p_white {
  color: white !important;
}

/*********メディアクエリ************/

/* PC向けおよび大型タブレット向けのレイアウトの指定：769px～960px */

/* PC向けレイアウトの指定：961px以上では固定レイアウト */

/**************************************/

/*footerを最下部に固定用*/

/**************************************/

html {
  min-height: 100%;
  position: relative;
}

body {
  margin-bottom: 5em;
}

main {
  margin-bottom: 10em;
}

footer {
  width: 100%;
  bottom: 0;
  height: 4em;
  position: absolute;
  text-align: center;
  padding-top: 5px;
  background-color: #F5F5F5;
  border-top: 1px solid #E3E3E3;
}

/**************************************/

/*tableを等間隔にする*/

/**************************************/

.table_fixed {
  table-layout: fixed;
}

.table th {
  text-align: center;
}

.bg_total {
  background-color: #f6f9f4;
}

.ui-dialog-buttonset button {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

.ui-dialog-titlebar-close {
  background-image: url(/los/images/img_close.png);
  background-repeat: no-repeat;
  background-position: -2px -2px;
}

#asset_list {
  height: 200px;
  overflow: auto;
  margin-bottom: 20px;
}

#add_asset_list {
  height: 200px;
  overflow: auto;
}

.bg_white {
  background: white !important;
}

.info_massage {
  margin-bottom: 5px;
  padding: 10px;
  clear: both;
  border-bottom: 1px dotted #bfbfbf;
}

.float-r {
  float: right;
}

.float-l {
  float: left;
}

.dsp_tbl {
  display: table;
}

.dsp_tbl_c {
  display: table-cell;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  padding: 5px 10px;
  word-wrap: break-word;
}

.dsp_tbl_c_end {
  display: table-cell;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  padding: 5px 10px;
  word-wrap: break-word;
}

.dsp_tbl_header {
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
}

input,
select,
textarea {
  font-size: 16px !important;
}

.error {
  color: #ED1C24;
}

.print {
  visibility: collapse;
}

.noprint {
  visibility: visible;
}

.inline-file-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

