@charset "UTF-8";

/*========================================================================================
  全般的なスタイル
========================================================================================*/
html {
	width: auto;
	margin:0 auto;
	height:100%;
}

body {
	margin: 0;
	width: auto;
  height:100%;
	background-color:#FFFFFF;
	line-height:1.65;
	font-family: Montserrat, "Avenir Next", 'Quicksand', Arial, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'MS ゴシック', 'MS Gothic', sans-serif;
	font-size:13px;
	font-weight: normal;
  color: #2C3E50;
  text-align:left;
}

/* 入力UI群の線の余白、線の色、角の形、影 */
input,
textarea,
select,
.imitate-input {
	padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
	border:solid 1px #ccc;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.2);
	-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-family: inherit;
  font-size: 100%;
  color: #546E7A;
  line-height: inherit;
}

input:focus,
textarea:focus,
select:focus
{
	border:solid 1px #EEA34A;
}

input[type="checkbox"],
input[type="radio"] {
	vertical-align: middle;
	margin: 3px 5px;
}

h1 {
  margin-left: 20px;
	margin-top: 0.5em;
	margin-bottom: 1em;
}

.font-awesome {
    font-family: Montserrat, "Avenir Next", 'Quicksand', Arial, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'MS ゴシック', 'MS Gothic', sans-serif, FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-font-size {
    font-size: 35px;
}

.fa-right-space10 {
    margin-right: 10px;
}

.fa-right-space8 {
    margin-right: 8px;
}

.fa-fw {
	width: 2em;
	text-align: left;
}

/* HTML5新要素に未対応のブラウザ対応 */
article,aside,details,footer,header,hgroup,menu,nav,section,summary {
	display: block;
}

.er-message-box {
    color: #e74c3c;
    font-size: 16px;
    text-align: left;
}

.er-icon {
    float: left;
    font-size: 40px;
}

.er-message {
    float: left;
    padding-top: 8px;
    padding-left: 20px;
}

.default-message-box {
    font-size: 13px;
    text-align: left;
    position: relative;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
}

.default-icon {
    float: left;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.default-message {
    float: left;
    padding-top: 8px;
    padding-left: 20px;
}

/* 項目名横の説明リンク */
a.info-link {
	margin-left: 5px;	
}
/*========================================================================================
  デザインフレーム
========================================================================================*/
/* body内の全コンテンツを覆うボックス */
.wrapper {
    position: relative;
		width:auto;
    height: auto !important;
    height: 100%;
    margin:0px;
    /* コンテンツが少ないページのために、
    　　フッターがウィンドウサイズの最下部にくるよう調整 */
    min-height: 100%;
}

#header,
#footer,
#contents {
		width: 100%;
}

#header,
#footer {
		background-color: #f2f2f2;
}

#header {
		position: relative;
		display: table;
		table-layout: fixed;
		line-height: 1.65;
}

#footer {
	position: absolute;
	overflow: hidden;
  bottom:0px;
  display:table;
	height:30px;
  line-height: 30px;
  margin-bottom: 0px;
}

/* ヘッダーフッター間にある本コンテンツ */
#contents {
	margin:0;
  /* 60px=フッタースペース30px + 余白30pxを確保 */
	padding-bottom:60px;
}

/*========================================================================================
  よく使うワイヤーフレーム
========================================================================================*/

/* 基本の親要素 */
.parent {
	display: table;
	width: 100%;
	border-collapse: collapse; /* 隣接セルのボーダーを重ねて表示 */
}

/* 中の子要素を均等幅にしたい時 */
.pr-divide-evenly {
	table-layout: fixed;
}

/* 子要素の間に隙間を開ける時 */
.pr-make-space {
	border-collapse: separate; /* 隣接セルのボーダーを間隔をあけて表示 */
	border-spacing:10px 5px;
}

/* 基本の子要素 */
.children {
	display: table-cell;
	vertical-align: middle;
}

/* 子要素を親要素内で下揃えにしたい時 */
.cld-align-bottom {
	vertical-align: bottom;
}

.cld-tablet {
}

.cld-mobile {

}

@media (max-width:768px) {
	.cld-tablet {
		display: block;
	}
}

@media (max-width:480px) {
	.cld-mobile {
		display: block;
	}
}

/*========================================================================================
  要素の共通設定
========================================================================================*/
a {
  color: #4682b4;
	text-decoration:none;
	cursor:pointer;
}

a:hover,
a:active {
	color: #b22222;
  /* text-decoration:underline; */
}

a:focus {
	outline: none;
}

img {
	border: none;
}

h3 {
	margin: 10px 0;
	padding: 10px 20px;
	background-color: #34495e;
	font-size: 16px;
	font-weight: normal;
	color: #fff;
}

/*========================================================================================
  ページ共有クラス
========================================================================================*/

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.contents-margin {
    margin: 10px;
}

.h1 {
	font-size: 32px;
	margin-top: 20px;
	margin-bottom: 20px;
}

/* 画面幅に応じて文字列を自動折り返しする場合に、適切な単語単位に折り返しさせたい時に使います */
/* 「もしもしカメよ」の文字列を「もしもし」と「カメよ」のブロックで折り返し表示したい場合 */
/* <span class="break-point">もしもし</span><span class="break-point">カメよ</span> */
.break-point {
	display: inline-block;
}

/* プロフィール画像は丸く表示する */
.profile-img {
		border-radius: 20px;
}

/* プロフィール画像の中サイズ */
.profile-img-m {
		width: 30px;
		height: 30px;
}

.profile-img-xs {
	width: 20px;
	height: 20px;
	vertical-align: middle;
}

/* ヘッダーの自分アイコン */
.profile-img-me {
		width: 45px;
		height: 45px;
}

/* Glmasterのリストで使用するアイコン */
.profile-img-li {
	display: inline-block;
  width: 40px;
  height: 40px;
	vertical-align: middle;
}

@media (max-width:480px) {
		.profile-img-me {
				width: 36px;
				height: 36px;
		}
}

/* 注釈の文字色 */
.annotation-color {
	color: #cccbac;
}

/* リストのマーカーに「※」を使いたい時 */
ul.kome-marker {
	list-style-type: none;
	margin-left: 1.5em;   /* マーカーを1.5文字寄せた分、ULにマージンを設定*/
}

ul.kome-marker li:before {
	content: "※";
	margin-left: -1.5em;  /* 1.5文字分左に寄せる */
}

.icon:before {
	font-family: FontAwesome;
	/* アイコンと文字の間の余白をフォントサイズに応じて調整するように修正しました。 */
	/*margin-right: 10px; */
	margin-right: 0.5em;
}

.icon:after {
	font-family: FontAwesome;
	margin-left: 10px;
}

.icon-user:before {
  content: "\f007";
}

.icon-comment:before {
	content: "\f075";
}

.icon-heart:before {
  content: "\f004";
}

.icon-edit:before {
	content: "\f044";
}

.icon-delete:before {
	content: "\f014";
}

.icon-lock:before {
	content: "\f023";
}

.icon-comments:before {
	content: "\f0e6";
}

.icon-back:before {
	content: "\f104";
}

.icon-cancel:before {
	content: "\f00d";
}

.icon-plus:before {
	content: "\f055";
}

.icon-minus:before {
	content: "\f056";
}

.icon-checkon:before {
	content: "\f046";
}

.icon-checkoff:before {
	content: "\f096";
}

.icon-copy:before {
	content: "\f24d";
}

.icon-send:before {
	content: "\f1d9";
}

.icon-share-send:after {
	content: "\f1d9";
}

.icon-download:before {
	content: "\f019";
}

.icon-search:before {
	content: "\f002";
}

.icon-upload:before {
	content: "\f093";
}

.icon-exchange:before {
	content: "\f0ec";
}

.icon-time:before {
	content: "\f017";
}

.icon-refresh:before {
	content: "\f021";
}

.icon-cloud-download:before {
	content: "\f0ed";
}

.icon-cloud-upload:before {
	content: "\f0ee";
}

.icon-home:before {
	content: "\f015";
}

.icon-eye:before {
	content: "\f06e";
}

.icon-angle-right:before {
  content: "\f105";
}

.icon-search-plus:before {
  content: "\f00e";
}

.icon-search-minus:before {
  content: "\f010";
}

.icon-gear:before {
  content: "\f013";
}

.icon-ban:before {
  content: "\f05e";
}

.icon-calendar:before {
  content: "\f073";
}

.icon-calendar-o:before {
  content: "\f133";
}

.icon-calendar-plus:before {
  content: "\f271";
}

.icon-book:before {
  content: "\f02d";
}

.icon-exclamation:before {
  content: "\f12a";
}

.icon-database:before {
  content: "\f1c0";
}

.icon-unlock:before {
  content: "\f09c";
}

.icon-stop:before {
  content: "\f056";
  color: orangered;
  font-size: 14px;
}

.icon-list:before {
  content: "\f03a";
}

/* メールアイコン */
.icon-mail:before {
	content: "\f003";
}

/* 円のなかに＞アイコン */
.icon-circle-right:before {
	content: "\f138";
}

/*========================================================================================
  各種ボタン
========================================================================================*/
/* ボタンの共通デザイン　※2018/08/27 SOMPO仕様に余白、フォントサイズ調整 */
.btn {
	margin: 0.5em;
	padding: 1em 2em;
	border: none;
	border-radius: 5px;
	-webkit-transition: border .20s linear, color .20s linear, background-color .20s linear;
	transition: border .20s linear, color .20s linear, background-color .20s linear;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.4;
	-webkit-font-smoothing: subpixel-antialiased;
	cursor: pointer;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

/* 2018/08/27 SOMPO仕様で新たに追加：
　全ボタン共通のhoverアクション */
.btn:hover {
	filter:alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}

/* GLMaster用の設定 */
.glbtn {
    padding: 1px 10px;
/*    border-radius: 5px;
    -webkit-transition: border .25s linear,color .25s linear,background-color .25s linear;
    transition: border .25s linear,color .25s linear,background-color .25s linear;
    border: 1px solid #DDD;
    color: #FFF;*/
    margin-bottom:2px;
    margin-right:2px;
    cursor:pointer;
    min-width:100px;    /* 戻る等の短い文字時のバランスを考慮 */
    vertical-align:top;
}

/* 何らかの変化を伴う機能実行ボタン */
.btn-submit {
/*	padding:10px 40px;*/
	background-color:#036EB7;
	min-width: 150px;
  color:#FFF;
}

/* 2018/08/27 SOMPO仕様でhover時のアクションは共通とするため削除 */
/*
.btn-submit:hover {
    background-color:#1279bf;
}
*/

/* システムメニューの「登録・変更」ボタン */
.btn-action {
	min-width: 150px;
	background-color:#1abc9c;
  color: #FFF;
}

/* 2018/08/27 SOMPO仕様でhover時のアクションは共通とするため削除 */
/*
.btn-action:hover {
  background-color: #1ecba9;
}
*/

/* シンプルなボタン */
.btn-simple {
  background-color: #34495e;
  color: #fff;
/*  padding: 5px 20px;
  margin: 5px;*/
}

/* 2018/08/27 SOMPO仕様でhover時のアクションは共通とするため削除 */
/*
.btn-simple:hover {
  background-color: #406081;
}
*/

.btn-simple-gray {
  background-color: #bdc3c7;
  color: #34495e;
/*  padding: 5px 20px;
  margin: 5px;*/
}

/* 2018/08/27 SOMPO仕様でhover時のアクションは共通とするため削除 */
/*
.btn-simple-gray:hover {
	background-color: #c7cacc;
}
*/

/* 日報週報用の機能実行ボタン */
/* wedi専用ボタンのCSSにつき、削除 */
/*
.btn-update {
	min-width: 150px;
  background-color: #f7c331;
	padding-left: 60px;
	padding-right: 60px;
  color: #FFF;
}
*/

/* 2018/08/27 SOMPO仕様でhover時のアクションは共通とするため削除 */
/*
.btn-update:hover {
  background-color: #ffcd41;
}
*/

.btn-portlet {
  width: 46%;
  padding: 20px;
	margin: 5px;
	background-color: #fff;
	border: 3px solid #f7c331;
  border-radius: 10px;
	color: #f7c331;
  font-size: 18px;
  text-align: center;
	white-space: normal;
}

/* 2018/08/27 SOMPO仕様でhover時のアクションは共通とするため削除 */
/*
.btn-portlet:hover {
	background-color: #f7c331;
	color: #fff;
}
*/

.portlet-link {
	color: #f7c331;
}

/* 2018/08/27 SOMPO仕様でhover時のアクションは共通とするため削除 */
/*
.portlet-link:hover {
	color: #fff;
}
*/

.btn-swfbtn {
  text-decoration: none;
  border-bottom: 1px dotted;
  font-size: 14px;
  margin-left: 43px;
}
/* 2018/08/27 SOMPO仕様でhover時のアクションは共通とするため削除 */
/*
.btn-swfbtn:hover {
  text-decoration: none;
}
*/

/* キャンセルボタン */
/* SOMPO仕様に合わせてデザイン調整 */
.csbtn {
	border: solid 1px #6b7a8f;
  background-color: #fff;
  color: #6b7a8f;
}
.csbtnup {
	border: solid 1px #73539A;
  background-color: #73539A;
  color: #fff;
  width: 500px;
}

.backbtn {
	background-image:url(../images/yazirusi.png);
	background-repeat:no-repeat;
	background-position:10px 50%;
}

.btn_gray {
	background-color:#4C4B55;
	color:#FFF;
/*	padding:10px 20px;*/
	border:0;
	cursor:pointer;
	margin:5px;
	border-radius:5px;
}

/* 2018/08/27 SOMPO仕様でhover時のアクションは共通とするため削除 */
/*
.btn_gray:hover {
    background-color:#5a5965;
}
*/

/*リンクボタン（ユーザ一覧の「パスワード再発行」で使用*/
.btn-link {
	display: inline-block;
	margin: 2px 0;
	padding: 1px 15px;
	background-color: #4682b4;
	border-radius: 3px;
	color: #fff;
}

/* 2018/08/27 SOMPO仕様でhover時のアクションは共通とするため削除 */
/*
.btn-link:hover {
	background-color: #b22222;
}
*/

.submit_button_area {
    float:right;
}

button {
	white-space:nowrap;
}

button img {
	vertical-align:middle;
}

/* 480px以下用（スマホ用）の記述 */
@media (max-width:480px) {
  .submit_button_area {
    float: none;
  }

	.btn-submit,
	.btn-action,
	.btn-update,
  .csbtn {
    width:95%;
  }
  .csbtnup {
    width:95%;
  }
	
	.btn-submit,
	.btn-action,
	.btn-update {
		padding-top: 20px;
		padding-bottom: 20px;
		/* letter-spacing: 0.5em; */
	}

	.btn-portlet {
		margin: 10px 0;
    width: 100%;
  }
}

/*========================================================================================
  ヘッダー内で使用する定義
========================================================================================*/
.logo {
	position: static;
	display: table-cell;
  width: 100%;
  height: auto;
  margin: 5px;
  vertical-align: middle;
	text-align: center;
}

.logo h1 {
    margin: 0;
		padding-top: 5px;
    padding-bottom: 5px;
    line-height: 10px;
    font-size: 10.5px;
    font-weight: normal;
}

.logo img {
    height: 40px;
}

/* ヘッダーの左右アイコンメニュー */
.nav-menu {
    position: relative;
		display: table-cell;
		width: 220px;
		padding: 0;
}

/* 左右アイコンメニューの追加属性 */
.nav-menu-right {
		text-align: right;
}

/* ヘッダーのulリスト */
.nav_list {
	display:inline-block;
  margin: 0;
	padding: 0;
	list-style:none;
	vertical-align: inherit;
}

.nav_list li {
	position: relative;
	display: block;
	float: left;
	margin-top: 6px;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 10px;
	padding: 0;
	width: auto;
	vertical-align: middle;
	color: #999;
}

.nav_list li a {
		color: #999;
}

.nav-child-center {
    display: inline-block;
    text-align: center;
		font-size: 12px;
}

.nav_list li:hover > .nav-child-center,
.nav_list li:hover > a {
    color: #7e9a8c;
		cursor: pointer;
	  font-weight: bold;
}

.nav-child-desctiption {
    margin-top: 3px;
}

.nav-child-desctiption,
.nav-child-desctiption div {
	font-size: 12px;
	vertical-align: baseline;
}

/* ナビアイコンの入れ子リスト */
.nav_list li ul {
	list-style:none;
	position:absolute;
	top:64px;
	left:-300%;
	margin:0;
	padding:0;
  z-index:100;
}

.nav_list li ul li {
	overflow:hidden;
	width:100%;
	height:0;
	margin:0;
	color:#565b56;
	background:#ecf0f1;
	text-align:left;
	font-size:16px;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
	-ms-transition: .3s;
	transition: .3s;
	vertical-align:middle;
}

.nav_list li ul li>span {
	display:inline-block;
	vertical-align:middle;
	font-size:16px;
	padding: 6px;
	font-weight: bold;
}

.nav_list li:hover ul li {
	overflow:visible;
	height: 45px;
	border-bottom:1px dotted #999;
}

.nav_list li:hover .user_name{
	overflow:visible;
	height: 80px;
}

/* 「.nav_list li ul li a」だと「.nav_list li a」に勝てなかったので、
　入れ子リストに「nav_nest_list」クラス名つけた */
.nav_nest_list li a {
	display:block;
	padding:13px 15px;
	font-size:16px;
	font-weight:normal;
	color: #4b525a;
}

.nav_list li ul li:hover>a {
	background:#4b525a;
	color:#FFF;
	text-decoration: none;
}

.nav_list li:hover ul li:first-child {
	border-top:0;
}

.nav_list li:hover ul li:last-child {
	border-bottom:0;
}

/* Mobile以下のサイズ */
@media (max-width:480px) {
		#header {
			table-layout: auto;
		}

		.nav-menu {
				width: auto;
		}

    .nav_list li {
			/* SOMPO仕様のヘッダーに合わせて余白調整 */
			/*
    	margin-left: 10px;
    	margin-right: 10px;
			*/
			margin-top: 12px;
			margin-bottom: 0;
    }

    .nav-child-desctiption,
		.nav-child-desctiption div {
        font-size: 10px;
    }

    .fa-font-size {
        font-size: 28px;
    }
	
		.nav_list li ul {
				/* SOMPOのヘッダー仕様に合わせて位置調整 */
				top: 63px;
		}
}

/* 767px以下用（タブレット／スマートフォン用）の記述 */
@media (max-width:767px) {
    .hidden-xs {
        display:none !important;
    }
}

/* 768px以上用の記述 */
@media (min-width:768px) {
    .hidden-md {
        display:none !important;
    }
}

/*========================================================================================
  フッター内で使用する定義
========================================================================================*/
.copyright {
	/* SOMPOのコピーライトが長文なので、フッターの構成をfloatからtableに変えました。
	float: left;*/
	display: table-cell;
	padding-left: 5px;
	vertical-align: middle;
	line-height: 14px;
	font-size: 12px;
	color:#757575;
}

.frameworkimg {
	display: table-cell;
	padding-right: 10px;
	text-align:right;
	white-space: nowrap;
}

.frameworkimg img {
    vertical-align: middle;
		/* 178pxはSOMPOリスケア画像の長さに直に合わせているので、可変にしました。 */
		width: 100%;
    max-width: 178px;
}

@media (max-width:480px) {
	.copyright {
		display: block;
		font-size: 10px;
	}
	
	.frameworkimg {
		display: block;
	}
}


/*========================================================================================
　フレームワークナビメニュー関連
========================================================================================*/
#mainmenu {
	background-color: #34495e;
    border: none;
}

/* スマホサイズの時はアイコン表示に切り替わる */
#menu-icon {
	display: none;
}

#nav {
	margin: 0;
	padding: 0;
}

/* ナビメニュー親カテゴリのリスト */
#nav li {
	float: left;
  position: relative;
  display: block;
  box-sizing: border-box;
	margin-right: 5px;
  list-style: none;
}

#nav a {
	position: relative;
	display: block;
  padding: 15px 21px;
  font-size: 16px;
  line-height: 23px;
  color: #fff;
	text-decoration: none;
}

#nav a:hover {
  background-color: #1abc9c;
}

/* 親カテゴリhover時のドロップダウンリスト */
#nav ul {
	position: absolute;
	display: none;
	width: 250px;
  background: #34495e;
  z-index:100;
}

#nav ul li {
	float: none;
	margin: 0;
	padding: 0;
}

#nav ul li a {
    padding: 10px;
}

#nav ul li:first-child > a {
    padding-top: 15px;
}

#nav ul li:last-child > a {
    padding-bottom: 15px;
}

/* 親カテゴリhover時のみ子カテゴリリストを表示させる */
#nav li:hover > ul {
	display: block;
}

@media screen and (min-width: 0px) and (max-width:480px) {
	#mainmenu {
		position: relative;
	}

  /* スマホの時のみ表示させる（縮小版メニュー） */
	#menu-icon {
    display: block;
		padding: 10px;
	  background-color: #34495e;
    font-size: 16px;
		color: #fff;
		cursor: pointer;
	}

    #menu-icon:before {
      content: "\f0c9";
      font-family: FontAwesome;
      margin-right: 5px;
    }

	#menu-icon:hover,
  #menu-icon:active {
      background-color: #1abc9c;
	}

	#nav {
		clear: both;
		position: absolute;
		top: 46px;
		width: 230px;
		z-index: 10000;
		background: #34495e;
		display: none; /* visibility will be toggled with jquery */
    color: #fff;
	}
	
	#nav li {
		clear: both;
		float: none;
    font-size: 16px;
    font-weight: bold;
    margin-right: 0;
	}

	#nav a,
	#nav ul a {
		font: inherit;
		background: none;
		display: block;
		padding: 5px 0 5px 10px;
		color: inherit;
		border: none;
	}

	#nav a:hover {
		background: #1abc9c;
	}

	#nav ul {
		width: auto;
		position: static;
		display: block;
		border: none;
		background: inherit;
	}

	#nav ul li {
		width: 100%;
		margin:0;
        font-weight: normal;
	}

    #nav ul li:hover {
        background-color: #1abc9c;
    }
	
		#nav ul li:first-child > a {
			padding-top: 0;
		}

    #nav ul li a {
        padding: 5px;
        padding-left: 10px;
    }

}

/*========================================================================================
パンくずリスト
========================================================================================*/
#topicPath {
    width: auto;
    margin-top: 5px;
}

#topicPath:after {
    content: "";
    display: block;
    clear: both;
}

#topicPath ul {
	overflow: hidden;
	padding:3px 10px;
}

#topicPath ul li {
	display:inline;
	font-size:12px;
	line-height:110%;
	color:#888;
    list-style:none;
}

#topicPath a {
    text-decoration:none;
    font-size: 12px;
    border-bottom: 1px dotted;
}

#topicPath ul li:after {
    content: "\f105";
    font-family: FontAwesome;
    margin-left: 5px;
    margin-right: 5px;
}

#topicPath ul li:last-child:after {
    content: none;
}

#topicPath a:hover {
	color: #1abc9c;
}

/*========================================================================================
  コンテンツ内のヘッダーエリア関連
========================================================================================*/
/* ページタイトル */
.subTitle {
	font-size: 24px;
	margin: 20px;
}

/*一覧上部のメニューエリア */
#listHeaderArea {
    margin: 10px;
}

/* 左側のメニューボタンエリア */
.menuButtonL {
	float: left;
}

/* 右側のメニューボタンエリア */
.menuButtonR {
	text-align:right;
}

/* 左側配置の機能エリア */
.annotation {
	float: left;
	font-size: 12px;
  margin-top: 3px;
}

/* 右側配置のボタンエリア */
.requestlistnotes {
	float: right;
}

.requestlistnotes img {
	vertical-align:middle;
	margin:0;
}

/* 480px以下用（スマホ用）の記述 */
@media (max-width:480px) {
    .menuButtonL {
        float: none;
    }

    .annotation {
        display: none;
    }

    .requestlistnotes {
        float: none;
        display: none;
    }
}

.searchBox {
	border:1px solid #CCCCCC;
	background-color:#f2f2f2;
	padding:10px;
	margin:10px 5px 20px 5px;
	width:60%;
}

.hissu {
	color:red;
}

/* 申請経路の設定の所で使ってた　いずれ消す */
.comment {
	margin:10px;
}

/*========================================================================================
  ページ固有のスタイル
========================================================================================*/
#menu {
    margin: 10px;
}

#topAnnai dl {
	border-bottom:1px dotted #CCC;
    line-height:1.5em;
	margin:5px;
}

#topAnnai dt {
	clear:both;
	min-width:150px;
}

#topAnnai dd {
	margin:5px;
}

#topAnnai .listTitle a {
	color:#399CCD;
    text-decoration:underline;
	font-size:14px;
	font-weight:bold;
}

/* input属性の背景色を目立たせる */
.key-input {
    background-color: rgba(255, 197, 198, 0.46);
}

/* セクションごとに左ボーダーにラインを入れる */
.section-line {
    border-left-width: 10px;
    border-left-style: solid;
    padding-top: 10px;
    padding-left: 20px;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

.section-line-blue {
    border-left-color: #2980b9;
}

.section-line-green {
     border-left-color: #1abc9c;
}

/* ※マークの注釈リスト */
ul.note {
	margin: 1em;
}

ul.note li {
	margin: 0 0 0 1em;
	padding: 0 0 5px;
	background: none;
	text-indent: -1em;
	line-height: 130%;
}

ul.note li:before {
	content: "※";
	margin-right: 10px;
}


/*============================================
　大ボックス
============================================*/
.new_ixcaption {
	font-size:28px;
	margin:10px 0 20px 10px;
	padding-left:10px;
	border-left:20px solid #88B04B;
}

.new_ixcontext {
	padding: 8px;
	background: #FFF;
}

.designTable {
	margin-top:5px;
	border:none;
	border-spacing:0;
	border-collapse: collapse;
	width:100%;
}

.designTable tr {
	padding:2px;
}

.designTable th {
	text-align:left;
	margin-left:5px;
	padding-left:10px;
	border:none;
	border-left:10px solid #88B04B;
}

.designTable td {
	background-color:#FFF;
	border:none;
	padding:5px;
	padding-bottom: 10px;

}

.Label_Greenery {
	color:#88B04B;
	font-size:20px;
}

.Area_sender {
	padding: 10px;
	background-color: #efefef;
	color:#666;
}

#boxbuttonframe	{
	margin-top:20px;
}

/*============================================
　テーブル
============================================*/

.width100 {
  width: 100%;
}

.width100px {
	width:100px;
}

.width95 {
	width:95%;
}


.width80 {
	width:80%;
}

.width50 {
	width:50%;
}

.width200 {
	width:200px;
}

#topSearchFooter {
	margin:10px;
}

/*============================================
　一覧テーブル
============================================*/
@media (max-width:480px) {
    .display-mobile {
        display: none;
    }
}

#requestList {
	margin: 0 10px;
}

#zero {
	margin: 10px;
  margin-left: 20px;
  font-size: 16px;
}

#requestList table,
#requestList td,
#requestList th {
	margin:0px;
/*	border:1px #bfbfbf solid;*/
	border-spacing:0;
	border-collapse: collapse;
	text-align:left;

}

#requestList,
.ufad-datagrid table {
	width:98%;
	word-wrap: break-word;
}

.ufad-datagrid th,
.ufad-datagrid td,
#requestList th,
#requestList td {
	padding:3px 5px;
}

.ufad-datagrid th,
#requestList th {
	background-color:#c9d5e6;
}

.ufad-datagrid td,
#requestList td {
	white-space:nowrap;
}

.ufad-datagrid img,
#requestList img {
	margin-top:2px;
}

#requestList .narrow,
#requestList .narrow_osirase {
	background-color:#6b7a8f;
	color:#FFF;
    padding:10px;
}

.shortcol {
	width:1%;
	white-space:nowrap;
}

.center {
	vertical-align:middle;
	text-align:center;
}

.syoninmati {
	background-color:#f2dcdb;
}

.kisuLine {
	background-color:#f2f2f2;
}

.syoninmatiKisuLine {
	background-color:#e6b9b8;
}
.siborikomi {
	display: inline-block;
	padding:0 5px;
	margin-right: 20px;
}

.default-table {
    margin: 10px;
}

.default-table td {
    width: 1%;
    padding: 5px 10px;
    text-align: left;
    white-space: nowrap;
}

/* 本当は「.default-table th」って指定できればいいんだけれど、ソースでtr出力してて変えられないので、
　　trに該当する部分にこのクラスを指定しています。将来的に th に変えられたら消します */
.default-table .default-table-th {
    background-color: #9faecc;
    font-weight: bold;
}

.default-table .default-table-th td {
    padding: 10px;
}


/*============================================
　ページコントロールナビ
============================================*/
#pageControl {

}

#pageControl ul.pageNav01 {
	margin: 5px;
	padding: 0px;
	text-align: left;
}

#pageControl ul.pageNav01 li {
	display: inline;
	margin: 0 2px;
	padding: 0;
}

#pageControl ul.pageNav01 li span,
#pageControl ul.pageNav01 li a {
	display: inline-block;
	margin-bottom: 5px;
	padding: 1px 8px;
	background: #fff;
	border: 1px solid #aaa;
	text-decoration: none;
	vertical-align: middle;
}

#pageControl ul.pageNav01 li a:hover {
	background: #eeeff7;
	border-color: #00f;
}

/*============================================
　階層指定の部品
============================================*/
.edit-area {
    margin-bottom: 5px;
}

.editbutton {
	float:left;
	width:40px;
	cursor: pointer;
  text-align: center;
  color: #00ABA9;
}

.editbutton-sm {
	width: 35px;
	margin-right: 2px;
}

.editbutton:hover {
    color: #f7882f;
}

.editbutton i {
    font-size: 35px;
}

.editbuttonlabel {
}

.editbuttonlabel-sm {
	padding: 2px;
	font-size: 11px;
}



/*============================================
　ボックスデザイン
============================================*/
.box {
	width:95%;
	border:1px #7f7f7f solid;
	margin:10px auto;
}

.boxTitle {
	background-color:#f2f2f2;
	padding:10px;
	font-size:18px;
	font-weight:bold;
	text-align:center;
}

.slideUpDownDlg {
    cursor: pointer;
}

.slideUpDownDlg img {
    vertical-align: middle;
    padding: 0;
    margin-right: 10px;
}

.box table tr td{
	border:0;
	border-spacing:0;
	padding:3px;
}

.boxContents {
	padding:10px;
 /*	background-color:#FFF;*/
	height:60%;
}

.boxContents table,th,td {
	padding:2px;
}

.boxButton {
	padding:10px;
}

.smallbox {
	float:left;
	width:250px;
	height:280px;
	border:1px #7f7f7f solid;
	margin:10px;
}

.smallboxButton {
	text-align:center;
}

.boxnomarginL {
	width:700px;
	border:1px #7f7f7f solid;
	margin:0 0 10px 0;
	float:left;
}

.boxnomarginR {
	width:300px;
	border:1px #7f7f7f solid;
	margin:0 0 10px 0;
	float:right;
}

.boxnomarginL table tr td{
	border:0;
	border-spacing:0;
}

.boxnomarginR table tr td{
	border:0;
	border-spacing:0;
}

/*============================================
　カードデザイン
============================================*/
.card {
  float: left;
  margin: 10px;
  width: 230px;
  background: #fbfbfb;
  border-radius: 5px;
  box-shadow: 0 2px 5px #ccc;
}

.card-img {
	height: 100px;
  font-size: 80px;
  text-align: center;
}

.img-sl {
    font-size: 60px;
}

.card-content {
  padding: 20px;
  height: 150px;
}

.card-title {
  font-size: 20px;
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
}

.card-text {
  font-size: 14px;
  line-height: 1.5;
}

.card-link {
  text-decoration: none;
}

.card-link:hover {
  text-decoration: none;
  color: #0090aa;
}

.card:hover {
   margin: 5px;
   padding: 5px;
   background-color: #fcfcfc;
   box-shadow: 0 5px 10px #ccc;
}

@media (max-width:480px) {
    .card {
        float: none;
        box-sizing: border-box;
        width: 95%;
        margin: 10px auto;
        margin-bottom: 30px;
    }

		.card-img,
    .card-content {
      height: auto;
    }
}

/*========================================================================================
　レスポインシブ対応のdl,dt,ddの疑似テーブルデザイン
========================================================================================*/
.tbl-common01 {
  background-color: #fafafa;
	padding: 10px;
}

.tbl-common01,
.tbl-common01 dt,
.tbl-common01 dd,
.tbl-common01 input[type=text] {
  font-size: 13px;
	display: block;
}

.tbl-common01 dt {
    font-weight: bold;
}

.tbl-common01 input[type=text] {
  margin: 5px 0;
	max-width: 500px;
}

/* タブレット以下のサイズ
------------- */
@media only screen and (max-width:768px) {
    .tbl-common01 {
        padding-top: 10px;
    }

    .tbl-common01 dt,
    .tbl-common01 dd {
        padding: 8px 20px;
        padding-top: 0px;
    }

    .tbl-common01 dt {
        float: none;
        font-size: 16px;
    }

    .tbl-common01 dt span {
        font-size: 16px;
    }
}

------------- */
/* PC
------------- */
@media only screen and (min-width: 769px) {
    .tbl-common01 dt,
    .tbl-common01 dd {
        padding: 15px;
    }

    .tbl-common01 dt span {
        display: inline-block;
        padding-top: 5px;
    }

    .tbl-common01 dt {
        clear: both;
        float: left;
        width: 210px; /* 幅を指定 */
    }

    .tbl-common01 dd {
        padding-left: 240px; /* dtの分、左にpaddingを取る */
        width: 450px;
    }
}

/*============================================
　タブレット表示
============================================*/
@media screen and (min-width: 481px) and (max-width:768px) {
	.searchBox {
		width:95%;
	}

    .width100px {
	    width:80px;
    }

}

/*============================================
スマホ表示
============================================*/
@media screen and (min-width: 0px) and (max-width:480px) {
	#pcMenu {
		display:none;
	}


/*	.smallbox {
		width:95%;
		height:auto;
	}
*/
	.searchBox {
		width:95%;
	}

/**/}

/*============================================
　PC表示
============================================*/
@media screen and (min-width: 768px) {
	#gallery .grid{
        width:230px;
    }

	#subpage #sub .grid{
	    width:100%;
	    float:none;
	    padding-bottom:30px;
	}
}

@media print {
	html {
		margin: 0;
	}
}

/*============================================
　アカウント詳細表示画面
============================================*/
/* 「ユーザー基本情報エリア」の列ラベル */
#profile_table .label_em {
	padding-bottom: 0;
	font-weight: bold;
	font-size: 14px;
}

/* スマホ時はテーブルからブロックへ変換（横並び→縦並び） */
@media screen and (max-width: 468px) {
	#profile_table td {
		display: block;
	}
}


/*============================================
　ストレスチェックメニューボタン用CSS 2015/06/18追加
============================================*/

/*=================
　受検者用メニューボタン
===================*/
.menu-button {
  max-width:300px;
  min-width:100px;
  width:80%;
  color:#ffffff;
  background:#3c6fa2;
  font-size:18px;
  font-weight:bold;
  text-shadow:0 -1px 0px #225588,0 -2px 0px #225588;
  text-align:left;
  display:block;
  text-decoration:none;
  border:1px solid #225588;
  padding:12px 0 8px 20px;
  margin:10px;
  border-radius:5px;
  background:-moz-linear-gradient(rgba(34,85,136,0.5), rgba(34,85,136,1));
  background:-webkit-gradient(linear, 100% 0%, 100% 100%, from(rgba(34,85,136,0.5)), to(rgba(34,85,136,1)));
  /* InternetExplorer */
  /* IE8-9 */
  /*-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(34,85,136,0.5)', endColorstr='rgba(34,85,136,0.5)',GradientType=0)"; */
  /* IE10 */
  background: -ms-linear-gradient(rgba(34,85,136,0.5), rgba(34,85,136,1));

  box-shadow:1px 2px 2px rgba(0,0,0,0.3), 0px 1px 0px rgba(255,255,255,0.5) inset, 0px -1px 0px rgba(255,255,255,0.2) inset;
}


a.menu-button:hover {
    text-decoration: none;
  color:#ffffff;
  background:#6495be;
  background:-moz-linear-gradient(rgba(34,85,136,0.4), rgba(34,85,136,0.9));
  background:-webkit-gradient(linear, 100% 0%, 100% 100%, from(rgba(34,85,136,0.4)), to(rgba(34,85,136,0.9)));
  /* InternetExplorer */
  /* IE8-9 */
/*  -ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='rgba(34,85,136,0.4)',endColorstr='rgba(34,85,136,0.9)')"; */
/*  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(34,85,136,0.4)', endColorstr='rgba(34,85,136,0.9)', GradientType=0)"; */

  /* IE10 */
  background: -ms-linear-gradient(rgba(34,85,136,0.4), rgba(34,85,136,0.9));
}

.menu-icon {
  float:left;
}

.menu-icon img {
	vertical-align:middle;
	width:30px;
	padding-right:10px;
}

.menu-text {
  float:left;
}

.menu-text p {
  margin:0;
  padding:0;
}

/*=================
　緑ボタン
===================*/
.menu-button-green {
  width:300px;
  color:#ffffff;
  background:#98be11;
  font-size:14px;
  font-weight:bold;
  text-shadow:0 -1px 0px #98be11,0 -2px 0px #98be11;
  text-align:left;
  display:block;
  text-decoration:none;
  border:1px solid #98be11;
  padding:12px 0 8px 20px;
  margin:10px;
  margin-bottom:0px;
  border-radius:5px;
  background:-moz-linear-gradient(rgba(152,190,17,0.5), rgba(152,190,17,1));
  background:-webkit-gradient(linear, 100% 0%, 100% 100%, from(rgba(152,190,17,0.5)), to(rgba(152,190,17,1)));
  /* InternetExplorer */
  /* IE8-9 */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(152,190,17,0.5)', endColorstr='rgba(152,190,17,1)', GradientType=0)";

  /* IE10 */
  background: -ms-linear-gradient(rgba(152,190,17,0.5), rgba(152,190,17,1));

  box-shadow:1px 2px 2px rgba(0,0,0,0.3), 0px 1px 0px rgba(255,255,255,0.5) inset, 0px -1px 0px rgba(255,255,255,0.2) inset;
}

a.menu-button-green:hover {
    text-decoration: none;
  color:#ffffff;
  background:-moz-linear-gradient(rgba(152,190,17,0.4), rgba(152,190,17,0.9));
  background:-webkit-gradient(linear, 100% 0%, 100% 100%, from(rgba(152,190,17,0.4)), to(rgba(152,190,17,0.9)));
  /* InternetExplorer */
  /* IE8-9 */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(152,190,17,0.4)', endColorstr='rgba(152,190,17,0.9)', GradientType=0)";

  /* IE10 */
  background: -ms-linear-gradient(rgba(152,190,17,0.4), rgba(152,190,17,0.9));

}

.menu-button-green img {
	vertical-align:middle;
	width:20px;
	margin-left:10px;
}

/*=================
　緑中抜き白ボタン
===================*/
.menu-button-green-white {
  width:300px;
  color:#595959;
  background-color:#f4f4f4;
  font-size:14px;
  font-weight:bold;
  text-align:left;
  display:block;
  text-decoration:none;
  border:1px solid #98be11;
  padding:12px 0 8px 20px;
  margin:10px;
  border-radius:5px;

  box-shadow:1px 2px 2px rgba(0,0,0,0.3), 0px 1px 0px rgba(255,255,255,0.5) inset, 0px -1px 0px rgba(255,255,255,0.2) inset;
}

a.menu-button-green-white:hover {
    text-decoration: none;
  color:#98be11;
}



/*=================
　青ボタン
===================*/
.menu-button-blue {
  width:300px;
  color:#ffffff;
  background:#3ca4d8;
  font-size:14px;
  font-weight:bold;
  text-shadow:0 -1px 0px #3ca4d8,0 -2px 0px #3ca4d8;
  text-align:left;
  vartical-align:middle;
  display:block;
  text-decoration:none;
  border:1px solid #3ca4d8;
  padding:12px 8px 8px 15px;
  margin:10px;
  border-radius:5px;
  background:-moz-linear-gradient(rgba(60,164,216,0.5), rgba(60,164,216,1));
  background:-webkit-gradient(linear, 100% 0%, 100% 100%, from(rgba(60,164,216,0.5)), to(rgba(60,164,216,1)));
  /* InternetExplorer */
  /* IE8-9 */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(60,164,216,0.5)', endColorstr='rgba(60,164,216,1)', GradientType=0)";

  /* IE10 */
  background: -ms-linear-gradient(rgba(60,164,216,0.5), rgba(60,164,216,1));

  box-shadow:1px 2px 2px rgba(0,0,0,0.3), 0px 1px 0px rgba(255,255,255,0.5) inset, 0px -1px 0px rgba(255,255,255,0.2) inset;
}

a.menu-button-blue:hover {
    text-decoration: none;
  color:#ffffff;
  background:-moz-linear-gradient(rgba(60,164,216,0.4), rgba(60,164,216,0.9));
  background:-webkit-gradient(linear, 100% 0%, 100% 100%, from(rgba(60,164,216,0.4)), to(rgba(60,164,216,0.9)));
  /* InternetExplorer */
  /* IE8-9 */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(60,164,216,0.4)', endColorstr='rgba(60,164,216,0.9)', GradientType=0)";

  /* IE10 */
  background: -ms-linear-gradient(rgba(60,164,216,0.4), rgba(60,164,216,0.9));

}

.menu-button-blue img {
	vertical-align:middle;
	width:20px;
	margin-left:10px;
}


/*=================
　青ボタン（小）
===================*/
.menu-button-blue-small {
  width:125px;
  heifht:40px;
  color:#ffffff;
  float:left;
  background:#3ca4d8;
  font-size:14px;
  font-weight:bold;
  text-shadow:0 -1px 0px #3ca4d8,0 -2px 0px #3ca4d8;
  text-align:center;
  vartical-align:middle;
  display:block;
  text-decoration:none;
  border:1px solid #3ca4d8;
  padding:12px 8px 8px 15px;
  margin:10px 7px;
  border-radius:5px;
  background:-moz-linear-gradient(rgba(60,164,216,0.5), rgba(60,164,216,1));
  background:-webkit-gradient(linear, 100% 0%, 100% 100%, from(rgba(60,164,216,0.5)), to(rgba(60,164,216,1)));
  /* InternetExplorer */
  /* IE8-9 */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(60,164,216,0.5)', endColorstr='rgba(60,164,216,1)', GradientType=0)";

  /* IE10 */
  background: -ms-linear-gradient(rgba(60,164,216,0.5), rgba(60,164,216,1));

  box-shadow:1px 2px 2px rgba(0,0,0,0.3), 0px 1px 0px rgba(255,255,255,0.5) inset, 0px -1px 0px rgba(255,255,255,0.2) inset;
}

a.menu-button-blue-small:hover {
    text-decoration: none;
  color:#ffffff;
  background:-moz-linear-gradient(rgba(60,164,216,0.4), rgba(60,164,216,0.9));
  background:-webkit-gradient(linear, 100% 0%, 100% 100%, from(rgba(60,164,216,0.4)), to(rgba(60,164,216,0.9)));
  /* InternetExplorer */
  /* IE8-9 */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(60,164,216,0.4)', endColorstr='rgba(60,164,216,0.9)', GradientType=0)";

  /* IE10 */
  background: -ms-linear-gradient(rgba(60,164,216,0.4), rgba(60,164,216,0.9));

}

.menu-button-blue-small img {
	vertical-align:middle;
	width:20px;
	margin-left:10px;
}


/*=================
　オレンジボタン
===================*/
.menu-button-orange {
  width:300px;
  color:#ffffff;
  background:#ec9105;
  font-size:14px;
  font-weight:bold;
  text-shadow:0 -1px 0px #ec9105,0 -2px 0px #ec9105;
  text-align:left;
  display:block;
  text-decoration:none;
  border:1px solid #ec9105;
  padding:12px 0 8px 20px;
  margin:10px;
  margin-bottom:0px;
  border-radius:5px;
  background:-moz-linear-gradient(rgba(236,145,5,0.5), rgba(236,145,5,1));
  background:-webkit-gradient(linear, 100% 0%, 100% 100%, from(rgba(236,145,5,0.5)), to(rgba(236,145,5,1)));
  /* InternetExplorer */
  /* IE8-9 */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(236,145,5,0.5)', endColorstr='rgba(236,145,5,1)', GradientType=0)";

  /* IE10 */
  background: -ms-linear-gradient(rgba(236,145,5,0.5), rgba(236,145,5,1));

  box-shadow:1px 2px 2px rgba(0,0,0,0.3), 0px 1px 0px rgba(255,255,255,0.5) inset, 0px -1px 0px rgba(255,255,255,0.2) inset;
}

a.menu-button-orange:hover {
    text-decoration: none;
  color:#ffffff;
  background:-moz-linear-gradient(rgba(236,145,5,0.4), rgba(236,145,5,0.9));
  background:-webkit-gradient(linear, 100% 0%, 100% 100%, from(rgba(236,145,5,0.4)), to(rgba(236,145,5,0.9)));
  /* InternetExplorer */
  /* IE8-9 */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(236,145,5,0.4)', endColorstr='rgba(236,145,5,0.9)', GradientType=0)";

  /* IE10 */
  background: -ms-linear-gradient(rgba(236,145,5,0.4), rgba(236,145,5,0.9));

}

.menu-button-orange img {
	vertical-align:middle;
	width:20px;
	margin-left:10px;
}


/*=================
　ダークピンクボタン
===================*/
.menu-button-pink {
  width:300px;
  color:#ffffff;
  background:#c53573;
  font-size:14px;
  font-weight:bold;
  text-shadow:0 -1px 0px #c53573,0 -2px 0px #c53573;
  text-align:left;
  display:block;
  text-decoration:none;
  border:1px solid #c53573;
  padding:12px 0 8px 20px;
  margin:10px;
  border-radius:5px;
  background:-moz-linear-gradient(rgba(197,53,115,0.5), rgba(197,53,115,1));
  background:-webkit-gradient(linear, 100% 0%, 100% 100%, from(rgba(197,53,115,0.5)), to(rgba(197,53,115,1)));
  /* InternetExplorer */
  /* IE8-9 */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(197,53,115,0.5)', endColorstr='rgba(197,53,115,1)', GradientType=0)";

  /* IE10 */
  background: -ms-linear-gradient(rgba(197,53,115,0.5), rgba(197,53,115,1));

  box-shadow:1px 2px 2px rgba(0,0,0,0.3), 0px 1px 0px rgba(255,255,255,0.5) inset, 0px -1px 0px rgba(255,255,255,0.2) inset;
}

a.menu-button-pink:hover {
    text-decoration: none;
  color:#ffffff;
  background:-moz-linear-gradient(rgba(197,53,115,0.4), rgba(197,53,115,0.9));
  background:-webkit-gradient(linear, 100% 0%, 100% 100%, from(rgba(197,53,115,0.4)), to(rgba(197,53,115,0.9)));
  /* InternetExplorer */
  /* IE8-9 */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(197,53,115,0.4)', endColorstr='rgba(197,53,115,0.9)', GradientType=0)";

  /* IE10 */
  background: -ms-linear-gradient(rgba(197,53,115,0.4), rgba(197,53,115,0.9));

}

.menu-button-pink img {
	vertical-align:middle;
	width:20px;
	margin-left:10px;
}


/*=================
　ダークピンク中抜き白ボタン
===================*/
.menu-button-pink-white {
  width:300px;
  color:#595959;
  background-color:#f4f4f4;
  font-size:14px;
  font-weight:bold;
  text-align:left;
  display:block;
  text-decoration:none;
  border:1px solid #c53573;
  padding:12px 0 8px 20px;
  margin:10px;
  border-radius:5px;
  box-shadow:1px 2px 2px rgba(0,0,0,0.3), 0px 1px 0px rgba(255,255,255,0.5) inset, 0px -1px 0px rgba(255,255,255,0.2) inset;
}

a.menu-button-pink-white:hover {
    text-decoration: none;
  color:#c53573;
}


/*=================
　グレーボタン
===================*/
.menu-button-gray {
  width:90%;
  max-width:300px;
  color:#ffffff;
  background:#737373;
  font-size:14px;
  font-weight:normal;
  text-shadow:0 -1px 0px #595959,0 -2px 0px #595959;
  text-align:left;
  display:block;
  text-decoration:none;
  border:1px solid #595959;
  padding:12px 0 8px;
  margin:0 auto;
  margin-top:10px;
  border-radius:5px;
  background:-moz-linear-gradient(rgba(89,89,89,0.5), rgba(89,89,89,1));
  background:-webkit-gradient(linear, 100% 0%, 100% 100%, from(rgba(89,89,89,0.5)), to(rgba(89,89,89,1)));
  /* InternetExplorer */
  /* IE8-9 */
  /*-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(89,89,89,0.5)', endColorstr='rgba(89,89,89,1)', GradientType=0)"; */

  /* IE10 */
  background: -ms-linear-gradient(rgba(89,89,89,0.5), rgba(89,89,89,1));

  box-shadow:1px 2px 2px rgba(0,0,0,0.3), 0px 1px 0px rgba(255,255,255,0.5) inset, 0px -1px 0px rgba(255,255,255,0.2) inset;
}

a.menu-button-gray:hover {
    text-decoration: none;
  color:#ffffff;
  background:#8d8d8d;
  background:-moz-linear-gradient(rgba(89,89,89,0.4), rgba(89,89,89,0.9));
  background:-webkit-gradient(linear, 100% 0%, 100% 100%, from(rgba(89,89,89,0.4)), to(rgba(89,89,89,0.9)));
  /* InternetExplorer */
  /* IE8-9 */
  /* -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(89,89,89,0.4)', endColorstr='rgba(89,89,89,0.9)', GradientType=0)"; */

  /* IE10 */
  background: -ms-linear-gradient(rgba(89,89,89,0.4), rgba(89,89,89,0.9));
}

.menu-button-gray img {
	vertical-align:middle;
	width:20px;
	margin:0 10px 3px 10px;
}

/*=================
　ボタン下注記
===================*/
.menu-description {
  margin:0;
  width:90%;
  max-width:400px;
  padding:0 10px 0 20px;
  font-size:12px;
  text-align:left;
  color:#595959;
}


/*=================
　管理メニュー共通グレーボタン
===================*/
.menu-button-kanri {
  width:90%;
  max-width:400px;
  color:#254B5F;
  background:#BDBDBD;
  font-size:14px;
  font-weight:normal;
  text-align:left;
  display:block;
  text-decoration:none;
  padding:12px 0 8px 20px;
  margin:0 auto;
  margin-top:10px;
  border-radius:5px;
}

.hover-orange {
}

.hover-green {
}

.hover-blue {
}

.hover-red {
}

.hover-navy {
}

a.hover-orange:hover {
    text-decoration: none;
  color:#ffffff;
  background:#f9b263;
}

a.hover-green:hover {
    text-decoration: none;
  color:#ffffff;
  background:#8DCE91;
}

a.hover-blue:hover {
    text-decoration: none;
  color:#ffffff;
  background:#6ec7e6;
}

a.hover-red:hover {
    text-decoration: none;
  color:#ffffff;
  background:#EA919D;
}

a.hover-navy:hover {
    text-decoration: none;
  color:#ffffff;
  background:#6B7A8E;
}

.menu-button-kanri img {
	vertical-align:middle;
	width:20px;
	margin:0 10px 3px 0;
}

/*=================
　管理メニュー共通グレーボタン（小）
===================*/
.menu-button-kanri-small {
  width:125px;
  display:block;
  float:left;
  color:#254B5F;
  background:#BDBDBD;
  font-size:14px;
  font-weight:normal;
  text-align:center;
  vertical-align:middle;
  text-decoration:none;
  padding:8px 5px;
  margin:5px;
  border-radius:5px;
}

/*=================
　管理メニュー共通グレーボタン（中）
===================*/
.menu-button-kanri-middle {
  max-width:250px;
  width:44%;
  color:#254B5F;
  float:left;
  background:#BDBDBD;
  font-size:14px;
  text-align:left;
  vertical-align:middle;
  display:block;
  text-decoration:none;
  padding:10px;
  margin:5px;
  border-radius:5px;
}

.menu-button-kanri-middle img {
	vertical-align:middle;
	width:20px;
	margin:0 10px 3px 10px;
}

/*=================
　管理メニュー共通グレーボタン（中2）
===================*/
.menu-button-kanri-middle2 {
  width:185px;
  color:#254B5F;
  float:left;
  background:#BDBDBD;
  font-size:14px;
  font-weight:normal;
  text-align:left;
  vertical-align:middle;
  display:block;
  text-decoration:none;
  padding:10px;
  margin:5px 9px;
  border-radius:8px;
}

.menu-button-kanri-middle2 img {
	vertical-align:middle;
	width:20px;
	margin:0 10px 3px 10px;
}

.second_title {
	font-weight:normal;
	margin:10px 0 0 0;
	font-size:16px;
}

.category_base {
	font-size:16px;
	font-weight:normal;
}

.category_base_white {
	color:white;
	text-shadow:1px 1px 0 rgba(0,0,0,.2);
}


.category_header_button {
	height:auto;
	font-size:11.5px;
	display:inline-block;
	color:#444;
	background:#F6F6F6;
	padding:4px 25px;
	border-radius:5px;
	border:1px solid rgba(0,0,0,0.1);
	box-shadow:rgba(0,0,0,.05) -1px 1px 0, rgba(255,255,255,1) -1px 1px 0 inset;
}

.category_haeder_link {
	height:auto;
	display:inline-block;
	color:white;
	background:transparent;
	text-decoration:underline;
	cursor:pointer;
	float:none;
}

.category_inner_box {
	width:90%;
	max-width:420px;
	margin: 0 auto;
	padding: 0px 10px 10px 10px;
	background-color:#DFF1E0;
	margin-top:10px;
	margin-bottom:20px;
}

.mobile_display {
  width:48%;
  float:left;
}

@media(max-width:480px){
	.mobile_display {
	  width:95%;
	  margin:0;
	  float:none;
	}

	.menu-button-kanri-middle {
	  max-width:400px;
	  width:90%;
	}

	.menu-button-kanri-middle {
  		max-width:400px;
  		width:90%;
  		float:none;
		margin:10px;
	}

}

.seed-screen-title {
    font-weight: bold;
}
/*=================
　エラーメッセージテキストエリアのブラウザ解釈違いを吸収
===================*/
#ErrorMessage {
	min-height:72px;
}