/* ==========================================================================
main.css
========================================================================== */

/* -----------------------------------
	基本構成
----------------------------------- */
body {
	width: 100%;
	text-align: center;
	font-size: 14px;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	word-break: break-all;
}

table {
	width: 85%;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;

}
.for-pc {
	display: block;
}
.for-sp {
	display: none;
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: center;
}
.text-right {
	text-align: center;
}
/* テキストエリアの初期設定文字 */
.search-text::placeholder {
	color: #bbb;
	font-size: 14px;
}
.search-text::-ms-input-placeholder {
	color: #bbb;
	font-size: 14px;
}
.search-text::-ms-input-placeholder {
	color: #bbb;
	font-size: 14px;
}
.file-upload {
	display: inline-block;
/*	overflow: hidden;*/
	position: relative;
	padding: 8px 20px;
	border: 1px solid #dd0000;
	background: #dd0000;
	color:#fff;
}
.file-upload input[type="file"] {
	opacity: 0;
	height: 37px;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
	position: absolute;
	right: 0;
	top: 0;
	margin: 0;
	font-size: 14px;
	cursor: pointer;
	width: 100%;
}
.file-download {
	display: inline-block;
/*	overflow: hidden;*/
	position: relative;
	padding: 8px 20px;
	border: 1px solid #000;
	background: #000;
	color:#fff;
}
.upload-file-name {
	display: inline-block;
	padding: 10px 0 10px 10px;
	font-size: 14px;
	text-align: left;
}
.file-download-anchor {
	display : block;
	width : 100%;
	font-weight : 400 !important;
	color : #fff !important;
	}
.hr-pending {
	height: 6px;
	background: url(/bootstrap/img/hr-srash.png) repeat-x 0 0;
	border: 0;
	margin-top: 0;
	margin-bottom: 0;
	background-color: #FFE2A8;
}
/* 簡易バリデーション */
input.focused:invalid {
	border-color: red;
	color: red;
	&:focus {
		box-shadow: 0 1px 0 0 red;
	}
}
/* -----------------------------------
	アニメーション
----------------------------------- */
/* 画像をふわっと表示 */
.fuwatAnime {
	-webkit-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1.5s;
	-ms-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-name: fuwatAnime;
	-ms-animation-name: fuwatAnime;
	animation-name: fuwatAnime;
	visibility: visible !important;
}
@-webkit-keyframes fuwatAnime {
0% { opacity: 0; -webkit-transform: translateY(-20px); }
100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fuwatAnime {
0% { opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}
/* スライドイン（右->左） */
.slidein-to-left {
	animation-duration: 1s;
	animation-name: slideRightToLeft;
}
@keyframes slideRightToLeft {
	0% { opacity: 0; transform: translateX(200px); }
100% { opacity: 1; transform: translateX(0px); }
}
/* スライドイン（左->右） */
.slidein-to-right {
	animation-duration: 1s;
	animation-name: slideLeftToRight;
}
@keyframes slideLeftToRight {
	0% { opacity: 0; transform: translateX(-200px); }
100% { opacity: 1; transform: translateX(0px); }
}

/* -----------------------------------
	ヘッダー関連
----------------------------------- */
.header-container {
	background-color: #f3640f;
	height: auto;
	z-index: 2000;
	position: fixed;
	width: 100%;
}
.header-back {
	background-color: #f3640f;
	height: 140px;
	width: 100%;
	z-index: 1;
}
.header-container-bk {
	height: 100px;
	width: 90%;
	margin: 0 auto;
	max-width: 1000px;
}
.logo {
	width: 60px;
	float: left;
	top: 0;
	bottom: 0;
	margin: 10px;
}
/* メニュー */
.logo-navi {
	width: 470px;
	float: right;
	vertical-align: middle;
}
.logo-navi-sp {
	display: none;
}
.logo-navi li {
	display: inline-block;
	font-size: 14px;
	list-style: none;
	overflow: hidden;
	width: 45%;
	text-align: center;
}
.navi-container {
	list-style: none;
	overflow: hidden;
	width: 85%;
	max-width: 1000px;
	margin: 0 auto;
}
.navi-container nav {
	height: 40px;
	float: left;
	display: block;
	width: 100%;
	margin: 0 auto;
	background: #f36417;
	border: 0;
}
.navi-container ul {
	font-size: 0;
	padding-left: 0;
}
.navi-container li {
	display: inline-block;
	font-size: 14px;
	width: 16%;
	text-align: center;
	position: relative;
}
.navi-container li a {
	display: block;
	text-decoration: none;
	font-weight: bold;
	color: #ffffff;
	padding: 8px 0;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
}
.navi-container li a:hover {
	border-bottom: solid 4px #eee;
}
.navi-container li a:hover:before {
	font-family: FontAwesome;
	content: "\f0da";
	position: absolute;
	left: 50%;
	bottom: -4px;
	color: #eee;
	transform: rotate(-90deg);
}

.navi-container li.active a {
	border-bottom: solid 4px #333;
}

.navi-container li.active a:before {
	font-family: FontAwesome;
	content: "\f0da";
	position: absolute;
	left: 50%;
	bottom: -4px;
	color: #333;
	transform: rotate(-90deg);
}

.navi-container-li {
	color: #ffffff;
}
.navi-li-contact {
	background-color: #ffae00;
	color: #ffffff;
	display: block;
	font-weight: bold;
	padding: 16px 0;
	letter-spacing: 1px;
}
.navi-li-contact .fa {
	padding: 0 5px 0 0;
}

/* ハンバーガーメニュー（スマホ用） */
#menu-sp {
	position: relative;
}
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 32px;
	height: 30px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #fff;
	border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
top: 2px;
}
.menu-trigger span:nth-of-type(2) {
top: 14px;
}
.menu-trigger span:nth-of-type(3) {
bottom: 0;
}
/* ハンバーガーメニュー変化アニメーション */
.menu-trigger span:nth-of-type(1) {
-webkit-animation: menu-bar01 .75s forwards;
animation: menu-bar01 .75s forwards;
}
@-webkit-keyframes menu-bar01 {
0% {
	-webkit-transform: translateY(12px) rotate(45deg);
}
50% {
	-webkit-transform: translateY(12px) rotate(0);
}
100% {
	-webkit-transform: translateY(0) rotate(0);
}
}
@keyframes menu-bar01 {
0% {
	transform: translateY(12px) rotate(45deg);
}
50% {
	transform: translateY(12px) rotate(0);
}
100% {
	transform: translateY(0) rotate(0);
}
}
.menu-trigger span:nth-of-type(2) {
transition: all .25s .25s;
opacity: 1;
}
.menu-trigger span:nth-of-type(3) {
-webkit-animation: menu-bar02 .75s forwards;
animation: menu-bar02 .75s forwards;
}
@-webkit-keyframes menu-bar02 {
0% {
	-webkit-transform: translateY(-12px) rotate(-45deg);
}
50% {
	-webkit-transform: translateY(-12px) rotate(0);
}
100% {
	-webkit-transform: translateY(0) rotate(0);
}
}
@keyframes menu-bar02 {
0% {
	transform: translateY(-12px) rotate(-45deg);
}
50% {
	transform: translateY(-12px) rotate(0);
}
100% {
	transform: translateY(0) rotate(0);
}
}
.menu-trigger.active span:nth-of-type(1) {
-webkit-animation: active-menu-bar01 .75s forwards;
animation: active-menu-bar01 .75s forwards;
}
@-webkit-keyframes active-menu-bar01 {
0% {
	-webkit-transform: translateY(0) rotate(0);
}
50% {
	-webkit-transform: translateY(12px) rotate(0);
}
100% {
	-webkit-transform: translateY(12px) rotate(45deg);
}
}
@keyframes active-menu-bar01 {
0% {
	transform: translateY(0) rotate(0);
}
50% {
	transform: translateY(12px) rotate(0);
}
100% {
	transform: translateY(12px) rotate(45deg);
}
}
.menu-trigger.active span:nth-of-type(2) {
opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
-webkit-animation: active-menu-bar03 .75s forwards;
animation: active-menu-bar03 .75s forwards;
}
@-webkit-keyframes active-menu-bar03 {
0% {
	-webkit-transform: translateY(0) rotate(0);
}
50% {
	-webkit-transform: translateY(-12px) rotate(0);
}
100% {
	-webkit-transform: translateY(-12px) rotate(-45deg);
}
}
@keyframes active-menu-bar03 {
0% {
	transform: translateY(0) rotate(0);
}
50% {
	transform: translateY(-12px) rotate(0);
}
100% {
	transform: translateY(-12px) rotate(-45deg);
}
}
/*----------ナビゲーション----------*/
#navigation {
	position: fixed;
	display: none;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: #f3640f;
	z-index: 1000;
}
#navigation .navigation_inner {
	display: table;
	width: 100%;
	height: 100%;
}
#navigation .navigation_inner .navigation_menu {
	display: table-cell;
	vertical-align: middle;
	list-style: none;
	padding-left : 0;
}
#navigation .navigation_inner .navigation_menu .navigation_item {
	width: 300px;
	height: 40px;
	margin: 16px auto 0 auto;
	border-bottom: 1px solid #fff;
	position: relative;
}
#navigation .navigation_inner .navigation_menu .navigation_item:first-child {
	margin-top: 0;
}
#navigation .navigation_inner .navigation_menu .navigation_item a {
	display: block;
	position: relative;
	text-decoration: none;
	font-size: 16px;
	color: #fff;
	line-height: 20px;
	text-align: left;
}
#navigation .navigation_inner .navigation_menu .navigation_item a .fa {
	position  : absolute;
	font-size : 14px;
	top       : 4px;
	right     : 2px;
}

/* -----------------------------------
	フッター関連
----------------------------------- */
.footer-container {
	background-color    : #000000;
	padding             : 20px 0;
}
.footer-container-bk {
	margin: 0 auto;
	width: 90%;
}
.footer-navi {
	list-style      : none;
	overflow        : hidden;
	margin          : 10px auto;
}
.footer-navi li {
	text-align      : center;
	float           : left;
	padding-left    : 10px;
	padding-right   : 25px;
	color           : #ffffff;
	display         : -webkit-box-align: center; /* safari, Chrome */
	display         : -moz-box-align: center;    /* Firefox */
	display         : -o-box-align: center;      /* Opera */
	display         : -ms-box-align: center;     /* IE */
	display         : box-align: center;         /*　その他 */
}
.footer-navi li+ li {
	text-align      : center;
	padding-left    : 25px;
	padding-right   : 25px;
	color           : #ffffff;
	border-left     : 1px solid #ffffff;
	display         : -webkit-box-align: center; /* safari, Chrome */
	display         : -moz-box-align: center;    /* Firefox */
	display         : -o-box-align: center;      /* Opera */
	display         : -ms-box-align: center;     /* IE */
	display         : box-align: center;         /* その他 */
}
.footer-navi li a {
	display         : block;
	text-decoration : none;
	font-weight     : bold;
	color           : #ffffff;
}
.footer-label {
	color   : #ffcc66;
}
.footer-logo {
	clear   : both;
}
.footer-logo img {
	width   : 150px;
	margin  : 10px 0;
}

/* SNS */
.follow-me {
list-style: none;
margin: 0 0 -8px;
overflow: hidden;
padding: 0;
}
.follow-me ul {
text-align: center;
}
.follow-me li {
margin: 0 8px 8px 0;
padding: 0;
display: inline-block;
}
.follow-me li a::before {
background-color: #ffe3aa;
-webkit-border-radius: 2px;
border-radius: 2px;
color: #333;
display: inline-block;
font-family: FontAwesome;
font-size: 16px;
height: 30px; /* Button height */
line-height: 30px; /* Button height */
-webkit-transition: all .3s ease;
transition: all .3s ease;
text-align: center;
width: 30px; /* Button width */
}
.follow-me li a:hover::before {
color: #fff;
}
.follow-me li a[href*="facebook.com"]::before       { content: "\f09a"; }
.follow-me li a[href*="twitter.com"]::before        { content: "\f099"; }

.follow-me li a[href*="facebook.com"]:hover::before       { background-color: #3b5998; }
.follow-me li a[href*="twitter.com"]:hover::before        { background-color: #55acee; }

/* 外部リンク */
.links {
list-style: none;
margin: 0 0 -8px;
overflow: hidden;
padding: 0;
}
.links ul {
text-align: center;
}
.links li {
margin: 0 8px 8px 0;
padding: 0;
display: inline-block;
}

/* -----------------------------------
	共通レイアウト
----------------------------------- */
/* レイアウト */
.container {
	height: 500px;
}
/* パンくずリスト */
.pankuzu {
	background-color    : #ffe3aa;
	font-size           : 12px;
	letter-spacing      : .5px;
	margin              : 0 auto;
	padding-top         : 13px;
	padding-bottom      : 4px;
	width               : 85%;
	max-width           : 1000px;
	text-align          : left;
}
.pankuzu ul {
	list-style          : none;
	padding-left        : 0;
}
.pankuzu li {
	display               : inline;
	list-style            : none;
}
.pankuzu li:after {
	content : '>';
	color   : #000000;
}
.pankuzu li:last-child:after {
	content : '';
}
.pankuzu li a {
	text-decoration : none;
	color           : #d8521e;
}
.pankuzu li a:hover {
	text-decoration : underline;
}
/* 配置調整用 */
.anken-detail-container {
	background-color    : #ffe3aa;
	letter-spacing      : 1px;
}
.about-detail-container {
	background-color    : #ffe3aa;
	letter-spacing      : 1px;
}

.main {
	margin              : 0 auto;
	width               : 100%;
	font-size           : 16px;
}

/* 画像 */
.img-100 {
	width   : 100%;
	height  : 200px;
}

/* 「お問い合わせ」ボタン */
.contract-30 {
	width       : 40%;
	text-align  : right;
}
.contact-btn {
	color               : #ffffff;
	display             : block;
	padding             : 8px;
	background-color    : #ffd700;
}

/* 「ページトップ」ボタン */
.pagetop_button {
	width       : 100%;
	height      : 40px;
	background  : #ffad03;
	cursor      : pointer;
}
.pagetop_button:hover {
	background              : #e19811 !important;
}
.pagetop_button a{
	display     : block;
	background  : #efa92a;
	color       : #000000;
	font-size   : 14px;
	padding     : 15px;
	width       : 100%;
}
.pagetop_button span{
	color       : #000000;
	position    : relative;
	padding     : 15px 80px;
	top         : 6px;
}
.pagetop_button span::before{
	content     : "";
	position    : absolute;
	top         : 50%;
	width       : 15px;
	height      : 15px;
	border-top  : 4px solid #000000;
	border-left : 4px solid #000000;
	transform   : rotate(45deg);
}

/* 「登録」ボタン */
.submit-button {
	display                 : block;
	text-align              : center;
	width                   : 300px;
	height                  : 40px;
	line-height             : 20px;
	background-color        : #FFAD03;
	margin                  : 30px auto 0 auto;
	-moz-border-radius      : 20px;
	-webkit-border-radius   : 20px;
	border-radius           : 20px;
	padding                 : 12px 0 !important;
	position                : relative;
	text-decoration         : none;
	box-shadow              : 0;
}
.submit-button:active {
	box-shadow: 0 0 #aaa;
	top: 2px;
}
.submit-button :before {
	content                 : "";
	position                : absolute;
	top                     : 50%;
	right                   : 20px;
	width                   : 10px;
	height                  : 10px;
	border-top              : 2px solid #000000;
	border-right            : 2px solid #000000;
	transform               : rotate(135deg);
	margin-top              : -7px;
}
.submit-button span {
	color                   : #000000;
	font-size               : 16px;
	font-weight             : bold;
	padding                 : 0 15px;
}
.submit-button:hover {
	text-decoration         : none !important;
	background              : #e19811 !important;
	cursor                  : pointer;
}
/* 「送信」ボタン */
.send-button {
	display                 : block;
	text-align              : center;
	width                   : auto;
	max-width               : 300px;
	mix-width               : 200px;
	height                  : 40px;
	line-height             : 20px;
	background-color        : #efa92a;
	margin                  : 40px auto;
	-moz-border-radius      : 20px;
	-webkit-border-radius   : 20px;
	border-radius           : 20px;
	padding                 : 12px 0 !important;
	position                : relative;
	text-decoration         : none;
}
.send-button :before {
	content                 : "";
	position                : absolute;
	top                     : 50%;
	right                   : 20px;
	width                   : 10px;
	height                  : 10px;
	border-top              : 2px solid #000000;
	border-right            : 2px solid #000000;
	transform               : rotate(45deg);
	margin-top              : -7px;
}
.send-button span {
	color                   : #000000;
	font-size               : 16px;
	font-weight             : bold;
	padding                 : 0 15px;
}
.send-button:hover {
	text-decoration         : none !important;
	background              : #e19811;
	cursor                  : pointer;
}
#top-detail-close-area {
	width                   : 100%;
	height                  : 50px;
	margin                  : 0 auto;
	background              : #70737A;
	border                  : 0;
	display                 : flex;    /* 中央寄せ用 */
	justify-content         : center;  /* 中央寄せ用 */
	align-items             : center;  /* 中央寄せ用 */
}
#top-detail-close-area:hover {
	cursor                  : pointer;
}
.close-area-div {
	margin                  : 0 auto;
	color                   : #fff;
	font-weight             : bold;
	position                : relative;
	width                   : 150px;
}
.close-area-div :before {
	content                 : "";
	position                : absolute;
	top                     : 50%;
	right                   : 20px;
	width                   : 10px;
	height                  : 10px;
	border-top              : 2px solid #fff;
	border-right            : 2px solid #fff;
	transform               : rotate(-45deg);
	margin-top              : -4px;
}


/* テキストボックス */
.input-text {
	width   : 97%;
	height  : 35px;
	border  : 1px solid #ccc;
	padding-left : 5px;
}
.input-text-area {
	width   : 97%;
	height  : 90px;
	border  : 1px solid #ccc;
	padding-left : 5px;
}
.input-name {
	width   : 48%;
	height  : 35px;
	border  : 1px solid #ccc;
	padding-left : 5px;
}

/* チェックボックス */
.search-yakuwari-checkbox,
.search-kodawari-checkbox {
	width: 100%;
	text-align: left;
	overflow: hidden;
}
.search-yakuwari-checkbox ul,
.search-kodawari-checkbox ul {
	margin: 0.5rem 0 2rem 0;
	padding: 0.5rem 0;
	list-style: none;
	border: none;
}
.search-yakuwari-checkbox .list_item,
.search-kodawari-checkbox .list_item {
	margin: 0 0 0.5rem 0;
	padding: 0;
	float: left;
}
.search-yakuwari-checkbox label,
.search-kodawari-checkbox label {
	line-height: 135%;
	position: relative;
	margin: 0.5rem 7rem 1.5rem 0rem;
	cursor: pointer;
	font-weight: unset;
}
.search-yakuwari-checkbox .option-input01,
.search-kodawari-checkbox .option-input01 {
	position: relative;
	margin: 0 1rem 0 0;
	cursor: pointer;
}
.search-yakuwari-checkbox .option-input01:before,
.search-kodawari-checkbox .option-input01:before {
	position: absolute;
	z-index: 1;
	top: 0.125rem;
	left: 0.19rem;
	width: 1rem;
	height: 0.6rem;
	content: '';
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	transition:         transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	-webkit-transform: rotate(-45deg) scale(0, 0);
	transform: rotate(-45deg) scale(0, 0);
	border: 2px solid #da3c41;
	border-top-style: none;
	border-right-style: none;
}
.search-yakuwari-checkbox .option-input01:checked:before,
.search-kodawari-checkbox .option-input01:checked:before {
	-webkit-transform: rotate(-45deg) scale(1, 1);
	transform: rotate(-45deg) scale(1, 1);
}
.search-yakuwari-checkbox .option-input01:after,
.search-kodawari-checkbox .option-input01:after {
	position: absolute;
	top: -0.25px;
	left: -0.25px;
	width: 15px;
	height: 15px;
	content: '';
	cursor: pointer;
	border: 2px solid #f2f2f2;
	background: #ffffff;
}
/* 個人情報保護の同意チェックボックス */
.privacy-checkbox-input {
display: none;
}
.privacy-checkbox-parts {
padding-left: 20px;
position:relative;
margin-right: 20px;
}
.privacy-checkbox-parts::before{
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
width: 15px;
height: 15px;
border: 1px solid #999;
border-radius: 4px;
}
.privacy-checkbox-input:checked + .privacy-checkbox-parts{
color: #f36417;
}
.privacy-checkbox-input:checked + .privacy-checkbox-parts::after{
content: "";
display: block;
position: absolute;
top: -5px;
left: 5px;
width: 7px;
height: 14px;
transform: rotate(40deg);
border-bottom: 3px solid #f36417;
border-right: 3px solid #f36417;
}

/* 文字入力エリア（非編集） */
.case-detail-comment-area {
	width               : 85%;
	max-width           : 1000px;
	height              : auto;
	min-height          : 200px;
	background-color    : #fff;
	border              : solid 2px #e8822a;
	margin              : 0 auto;
	text-align          : left;
	padding             : 20px;
	font-size           : 12px;
	color               : #373434;
}
.case-detail-comment-header {
	width: 100%;
	margin-bottom       : 10px;
	font-size           : 16px;
	color               : #333;
}
.case-detail-comment-body {
	width: 100%;
	font-size           : 16px;
	color               : #333;
}
.case-detail-comment-title {
	font-size           : 20px;
	font-weight         : bold;
	color               : #f26f1f;
	margin-right        : 10px;
}
.case-detail-comment-tanto {
	font-weight         : bold;
}
/* 左寄せ文字 */
.text-left {
	text-align  :left;
}
/* 右寄せ文字 */
.text-right {
	text-align  :right;
}
/* センター寄せ文字 */
.text-center {
	text-align  :center;
}

/* 余白 調整用 */
.pad-side-20 {
	padding-left    : 20px;
	padding-right   : 20px;
	padding-top     : 10px;
	padding-bottom  : 10px;
}
.pad-side-30 {
	padding-left    : 30px;
	padding-right   : 30px;
}

/* 幅 調整用 */
.w-70　{
	width   : 70%;
}


/* -----------------------------------
	『トップ』画面
----------------------------------- */
/* トップ背景 */
.top-image-container {
	background        : #ffe3aa;
}
.top-image-container-bk {
	background        : #f3640f;
	height            : 170px;
	position          : relative;
}
.top-image-back {
	width             : 100%;
	height            : 500px;
	overflow          : hidden;
	position          : relative;
}
.top-image-back img {
	left              : 0;
	top               : 100px;
	height            : 500px;
	width             : 100%;
	z-index : 0;
}
.top-message-container {
	width     : 800px;
	height    : 100%;
	position  : absolute;
	top       : 0;
	left      : 0;
	right     : 0;
	bottom    : 0;
	margin    : 0 auto;
	display   : none;
}
#top-image-rotation .active {
	display   : block;
}
#top-image-rotation .last-active {
	animation-duration: 1s;
	animation-name: lastActive;
}
@keyframes lastActive {
	0% { opacity: 1; transform: translateY(0px); }
100% { opacity: 0; transform: translateY(20px); }
}
/* トップイメージ 画像が左、文字が右寄せ */
.top-message-char-left {
	height   : 100%;
	width    : 50%;
	position : relative;
	float    : left;
}
.top-message-char-left img {
	width     : 350px;
	height    : auto;
	top       : 0;
	left      : 0;
	right     : 0;
	bottom    : 100px;
	margin    : auto;
	position  : absolute;
}
.top-message-word-right {
	height         : 350px;
	width          : 50%;
	vartical-align : middle;
	padding        : 20px;
	float          : right;
	text-align     : right;
}
.balloon-right-btm {
	position       : relative;
	display        : inline-block;
	margin         : 20px 225px 15px 0;
	padding        : 0 5px;
	width          : 90px;
	height         : 90px;
	line-height    : 90px;
	vertical-align : middle;
	text-align     : center;
	color          : #FFF;
	font-size      : 36px;
	font-weight    : bold;
	background     : #e92619;
	border         : 3px solid #ffe3aa;
	border-radius  : 50%;
	box-sizing     : border-box;
	z-index        : 1;
}
.balloon-right-btm:before {
	content            : "";
	position           : absolute;
	bottom             : -8px;
	right              : -8px;
	margin-top         : -15px;
	border             : 15px solid transparent;
	border-left        : 15px solid #e92619;
	-ms-transform      : rotate(45deg);
	-webkit-transform  : rotate(45deg);
	transform          : rotate(45deg);
	z-index            : 2;
}
.top-message-word-right-top {
	height         : 40%;
	margin         : 10px;
	font-size      : 20px;
	color          : #e92619;
	position       : relative;
}
.top-message-word-right-top span {
	border          : 2px solid #e92619;
	border-radius   : 10px;
	display         : block;
	margin          : 20px 0 10px 0;
	padding         : 10px 20px;
	bottom          : 0;
	right           : 0;
	position        : absolute;
}
.top-message-word-right-middle {
	height          : 30%;
	margin          : 10px;
	font-size       : 30px;
	color           : #e92619;
}
.top-message-word-right-bottom {
	height          : 30%;
	margin          : 10px;
	font-size       : 16px;
}
/* トップイメージ 画像が右、文字が左寄せ */
.top-message-char-right {
	height   : 100%;
	width    : 50%;
	position : relative;
	float    : right;
}
.top-message-char-right img {
	width     : 350px;
	height    : auto;
	top       : 0;
	left      : 0;
	right     : 0;
	bottom    : 100px;
	margin    : auto;
	position  : absolute;
}
.top-message-word-left {
	height         : 350px;
	width          : 50%;
	vartical-align : middle;
	padding        : 20px;
	float          : left;
	text-align     : left;
}
.balloon-left-btm {
	position       : relative;
	display        : inline-block;
	margin         : 20px 225px 15px 0;
	padding        : 0 5px;
	width          : 90px;
	height         : 90px;
	line-height    : 90px;
	vertical-align : middle;
	text-align     : center;
	color          : #FFF;
	font-size      : 36px;
	font-weight    : bold;
	background     : #e92619;
	border         : 3px solid #ffe3aa;
	border-radius  : 50%;
	box-sizing     : border-box;
	z-index        : 1;
}
.balloon-left-btm:before {
	content            : "";
	position           : absolute;
	bottom             : -8px;
	right              : -8px;
	margin-top         : -15px;
	border             : 15px solid transparent;
	border-left        : 15px solid #e92619;
	-ms-transform      : rotate(45deg);
	-webkit-transform  : rotate(45deg);
	transform          : rotate(45deg);
	z-index            : 2;
}
.top-message-word-left-top {
	height         : 40%;
	margin         : 10px;
	font-size      : 20px;
	color          : #e92619;
	position       : relative;
}
.top-message-word-left-top span {
	border          : 2px solid #e92619;
	border-radius   : 10px;
	display         : block;
	margin          : 20px 0 10px 0;
	padding         : 10px 20px;
	bottom          : 0;
	left            : 70px;
	position        : absolute;
}
.top-message-word-left-middle {
	height          : 30%;
	margin          : 10px;
	font-size       : 30px;
	color           : #e92619;
}
.top-message-word-left-bottom {
	height          : 30%;
	margin          : 10px;
	font-size       : 16px;
}

/* ピックアップ案件エリア */
.top-pickup-container {
	height            : 256px;
	width             : 75%;
	max-width         : 950px;
	position          : absolute;
	top               : -120px;
	left              : 0;
	right             : 0;
	bottom            : 0;
	margin            : 0 auto;
	text-align        : left;
	background-color  : #f36417;
}
.top-pickup-container section {
	height            : auto;
	max-height        : 250px;
	min-height        : 200px;
	width             : 98%;
	margin            : 8px auto;
	background-color  : #fff;
	padding           : 20px 10px 20px 40px;
	overflow          : hidden;
	position          : relative;
}
.triangle {
	background        : #e92519;
	color             : #FFF;
	font-size         : 14px;
	padding           : 70px 0px 3px;
	position          : absolute;
	left              : -107px;
	top               : -52px;
	text-align        : center;
	width             : 200px;
	transform         : rotate(-45deg);
	-ms-transform     : rotate(-45deg);
	-moz-transform    : rotate(-45deg);
	-webkit-transform : rotate(-45deg);
	-o-transform      : rotate(-45deg);
}

/* 検索テキストボックス */
.top-search-container {
	background        : #f3640f;
	padding           : 10px 0 10px 0;
	color             : #fff;
}
.font-white {
	color             : #ffffff;
	letter-spacing    : 1px;
}
.font-orange {
	color             : #f3640f;
}
.area-title-search-en {
	font-size         : 22px;
}
.area-title-search-ja {
	font-size         : 32px;
	font-weight       : bold;
}
.top-search-container .search-header-container {
	min-height        : 500px;
	height            : auto;
}
.top-search-container .search-header-form {
	padding           : 30px 0;
}

.top-latest-container {
	background        : #ffe3aa;
	/*height            : 900px;*/
	padding           : 30px 0;
	position          : relative;
}

.top-all-age-container {
	background        : #f3640f;
	padding           : 30px 0;
	height            : auto;
	overflow          : hidden;
}
.top-Feature-container {
	background        : #ffe3aa;
	height            : auto;
	overflow          : hidden;
	padding           : 30px 0;
}
.feature-area {
	background        : #fff;
	display           : table;
	height            : auto;
	min-height        : 250px;
	width             : 100%;
	max-width         : 950px;
	margin            : 30px auto;
	position          : relative;
}
.feature-area-left {
	background        : #ffffff;
	float             : left;
	position          : absolute;
	height            : 100%;
	width             : 50%;
}
.feature-area-left img {
	margin            : auto;
	display           : block;
	position          : absolute;
	height            : auto;
	width             : 300px;
	top               : 0;
	left              : 0;
	right             : 0;
	bottom            : 0;
	position          : absolute;
}
.feature-area-right {
	background        : #ffffff;
	float             : right;
	height            : 100%;
	min-height        : 300px;
	width             : 50%;
}
.feature-area-right-all {
	height            : auto;
	text-align        : left;
	margin            : auto 10px;
}
.feature-area-right-bottom {
	height            : auto;
	padding-left      : 0;
}
.feature-area-right-bottom li {
	float             : left;
	width             : 100%;
	list-style        : none;
	border-top        : 1px solid #ddd;
	padding           : 5px 0;
}
.feature-area-right-bottom-li p {
	margin            : 2px 0;
}
.back-no {
	position : relative;
	width    : 100%;
	height   : 25px;
}
.back-no-title {
	position : absolute;
	left     : 0;
}
.back-no-view-count {
	position : absolute;
	right    : 0;
	color    : #aaa;
}

.top-concept-container {
	background      : #ffe3aa;
	padding         : 50px 0;
}
.top-concept-area {
	margin          : 50px auto;
	width           : 85%;
	max-width       : 1000px;
}
.top-concept-area p {
	color           : #fff;
	margin          : 20px 0;
	letter-spacing  : 1px;
	line-height     : 35px;
}

/* -----------------------------------
	『案件を探す』画面
----------------------------------- */
/* ヘッダー画像 */
.img-container {
	background: #F36417;
	width: 100%;  /* トリミングしたい幅 */
	height: 200px;  /* トリミングしたい高さ */
	overflow: hidden;
	position: relative;
}
.img-container img {
	position: absolute;
	top: 0%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	opacity: .6;
}
.img-container p {
	position: absolute;
	color: #fff;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	display:block;
	letter-spacing: 1px;
}
.img-container-msg-en {
	top: 40%;
	font-size: 20px;
}
.img-container-msg-ja {
	top: 60%;
	font-weight: bold;
	font-size: 30px;
}


/* -----------------------------------
	『案件詳細』画面
----------------------------------- */
.comment-face-img {
	width: 100px;
	height: auto;
	min-height: 100px;
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
	position: relative;
}
.comment-face-img img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 95%;
}
/* 「戻る」ボタン */
.back-button {
	display: block;
	text-align: center;
	width: 300px;
	height: 40px;
	line-height: 20px;
	background: #6e747a;
	margin: 40px 10px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	padding: 12px 0 !important;
	position: relative;
	text-decoration: none;
	box-shadow: 0;
}
.back-button:hover {
	background-color: #656565 !important;
}

.back-button span{
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	padding: 0 15px;
}
.back-button span::before{
	content         : "";
	position        : absolute;
	top             : 50%;
	left            : 15px;
	width           : 9px;
	height          : 9px;
	border-bottom   : 2px solid #ffffff;
	border-left     : 2px solid #ffffff;
	color           : #ffffff;
	transform       : rotate(45deg);
	margin-top      : -5px;
}
.case-relation-tag-area {
	background: #fff;
	padding: 80px 0;
}
.case-relation-skill {
	width: 85%;
	max-width: 1000px;
	margin: 20px auto;
	text-align: center;
	padding-left: 0;
}
.case-relation-skill li {
	display: inline-block;
	float: unset;
	margin: 0 10px;
	zoom: 1;
}
/* ボタン配置調整用 */
ul.nav{
padding: 30px;

}
ul.nav li{
	display         : inline-block;
	/* padding-left    :25px; */
}

/* -----------------------------------
	『indecoについて』画面
----------------------------------- */
.case-about-container {
	min-height: 1000px;
	background-color: #ffe3aa;
	letter-spacing: 1px;
}
.about-contents {
	width: 90%;
	max-width: 950px;
	margin: 0 auto;
	text-align: left;
}
.about-contents-image {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 500px;
}
.about-contents-image img {
	position:absolute;
	height:720px;
	margin-top:-100px;
	margin-left:-640px;
	left:50%;
}
.about-contents h3 {
	background-color: #f3640f;
	color: #FFF;
	height: 30px;
	padding: 0 15px;
	font-weight: 700;
	font-size: 16px;
	line-height: 32px;
	margin: 40px 0 20px;
}
.about-contents h4 {
	font-weight: 700;
	margin-top: 20px;
}
.about-contents p {
	font-weight: normal;
	margin: 10px 0;
	line-height: 26px;
}
.about-contents ol,
.about-contents ul {
	counter-reset: my-counter;
	list-style: none;
	padding: 0;
}
.about-contents ol > li {
	margin: 30px 0 20px;
	padding-left: 30px;
	position: relative;
	font-weight: 700;
}
.about-contents ol > li:before {
	content: counter(my-counter);
	counter-increment: my-counter;
	color: #FFF;
	display: block;
	float: left;
	line-height: 24px;
	margin-left: -30px;
	text-align: center;
	height: 24px;
	width: 24px;
	border-radius: 50%;
	background-color: #f3640f;
	top: -2px;
	position: absolute;
}
.about-contents ul > li {
	margin: 10px 0;
	margin-bottom: 10px;
	padding-left: 0px;
	position: relative;
}
.about-contents ul > li:before {
	content: "";
	width: 10px;
	height: 10px;
	display: inline-block;
	background-color: #F44336;
	border-radius: 50%;
	position: relative;
	top: -1px;
	margin-right: 5px;
}
.about-contents-comment {
	position: relative;
	padding: 10px 12px;
	margin: 10px 0;
	background: #FFF;
	color: #888;
	font-weight: bold;
	display: inline-block;
	width: 100%;
}
.about-contents-comment p {
	margin: 0;
	padding: 0;
}
.about-contents-comment-by {
	color: #F3640F;
	font-weight: bold;
	margin-top: 10px !important;
	float: right;
}

/* -----------------------------------
	『お問い合わせ』画面
----------------------------------- */
/* 「個人情報保護方針へ同意します」チェック のレイアウト調整 */
.agree-type {
	background-color    : #ffffff;
	margin              : 0 auto;
	width               : 85%;
	max-width           : 1000px;
	text-align          : left;
	padding             : 20px;
}
.agree-type label {
	margin-bottom: 0;
}
/* -----------------------------------
	『お問い合わせ内容確認』画面
----------------------------------- */
/* 問い合わせ者の情報テーブル */
.member-table {
	border              : 0;
}
.member-table th {
	width               : 30%;
	height              : auto;
	color               : #ffffff;
	padding-left        : 15px;
	background-color    : #f36417;
	border-bottom       : solid 1px #fff;
}
.member-table td {
	width               : 70%;
	background-color    : #ffffff;
	border-bottom       : solid 1px #ccc;
	padding             : 20px 10px;
}
.member-table tr:last-child td {
	border-bottom       : 0;
}

/* -----------------------------------
	『お問い合わせ内容確認』画面
----------------------------------- */
/* 「問い合わせ内容」テーブル */
.contact-table {
	border  : solid 1px #ccc;
}
.contact-table-th {
	height              : auto;
	width               : 30%;
	color               : #ffffff;
	padding-left        : 15px;
	background-color    : #f36417;
	border-bottom       : 1px solid #fff;
	border-color        : #ffffff;
}
.contact-table-td {
	width               : 70%;
	background-color    : #ffffff;
	border-bottom       : 1px solid #ccc;
	padding             : 20px 10px;
}
.contact-table-td-label {
	font-weight         : normal;

}
/* チェックボックス */
.contact-table-td-radio {
	display             : none;
}
.contact-table-td-radio + label{
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	font-weight:normal;
	margin-left: 10px;
	margin-top: 5px;
}
.contact-table-td-radio + label::before{
	content: "";
	display: block;
	position: absolute;
	top: 1.5px;
	left: 0;
	width: 17.5px;
	height: 17.5px;
	border: 1px solid #aaa;
	border-radius: 50%;
	color:#333;
}
.contact-table-td-radio:checked + label{
	color:#333;
}
.contact-table-td-radio:checked + label::after{
	content: "";
	display: block;
	position: absolute;
	top: 4.5px;
	left: 3.25px;
	width: 11px;
	height: 11px;
	background: #f36417;
	border-radius: 50%;
}

/* -----------------------------------
	『会員登録』画面
----------------------------------- */
/* 「会員情報」テーブル */
.entry-table {
	border  : 0;
}
.entry-table-th {
	height              : auto;
	width               : 40%;
	color               : #ffffff;
	padding-left        : 15px;
	background-color    : #f36417;
	border-bottom       : 1px solid #fff;
	border-color        : #ffffff;
}
.entry-table-td {
	width               : 60%;
	background-color    : #ffffff;
	border-bottom       : 1px solid #ccc;
	padding             : 20px 20px;
	text-align          : left;
}
.entry-table-td-label {
	font-weight         : normal;
}
/* 個人情報保護法エリア */
.contact-message-area,
.entry-message-area {
	background-color: #fff;
	border: 2px solid #F36417;
	max-width: 1000px;
	margin: 0 auto;
	height: 250px;
	overflow: auto;
	padding: 20px;
	text-align: left;
	width: 85%;
}
.entry-message-area p {
	margin: 15px 0;
	letter-spacing: 1px;
}
/*スクロールバーの横幅指定*/
.contact-message-area::-webkit-scrollbar,
.entry-message-area::-webkit-scrollbar {
	width: 6px;
}
/*スクロールバーの背景色・角丸指定*/
.contact-message-area::-webkit-scrollbar-track,
.entry-message-area::-webkit-scrollbar-track {
	border-radius: 10px;
	background: #fff	;
}
/*スクロールバーの色・角丸指定*/
.contact-message-area::-webkit-scrollbar-thumb,
.entry-message-area::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: #F36417;
}
/* チェックボックス */
.entry-table-td-radio {
	display             : none;
}
.entry-table-td-radio + label{
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	font-weight:normal;
	margin-left: 10px;
	margin-top: 5px;
}
.entry-table-td-radio + label::before{
	content: "";
	display: block;
	position: absolute;
	top: 1.5px;
	left: 0;
	width: 17.5px;
	height: 17.5px;
	border: 1px solid #aaa;
	border-radius: 50%;
	color:#333;
}
.entry-table-td-radio:checked + label{
	color:#333;
}
.entry-table-td-radio:checked + label::after{
	content: "";
	display: block;
	position: absolute;
	top: 4.5px;
	left: 3.25px;
	width: 11px;
	height: 11px;
	background: #f36417;
	border-radius: 50%;
}

/* 入力必須項目 */
.required {
	font-size               : 10px;
	text-align              : center;
	width                   : 40px;
	padding                 : 3px 10px;
	margin-left             : 10px;
	background-color        : #ffffff;
	color                   : #e8822a;
	-moz-border-radius      :  20px;
	-webkit-border-radius   : 20px;
	border-radius           : 20px;
}


/* -----------------------------------
	ポップアップ画面
----------------------------------- */
/* レイアウト調整 */
.body-container-bk {
	background-color    : #d8521e;
}

.body-container {
	width           : 85%;
	margin-left     : auto;
	margin-right    : auto;
	padding-left    : 15px;
	padding-right   : 15px;
	padding-top     : 30px;
	padding-bottom  : 30px;
}

/* =======================================
「案件を探す」画面
======================================= */
.search-header-container {
	background-color    : #f3640f;
	height              : auto;
	padding             : 50px 0 0 0;
}
.search-caregory-container {
	background-color    : #f3640f;
	color               : #FFF;
	height              : 30px;
	padding             : 0 15px;
}

/* 検索窓 */
.search-header-container .search-header-form {
	width          : 100%;
	padding        : 30px 0;
}
.search-header-form input　{
	width          : 100%;
	height         : 24px;
	margin         : auto;
	letter-spacing : 0.1em;
	font-weight    : bold;
	line-height    : 0;
}
.search-area {
	margin         : 0 auto;
	position       : relative;
	width          : 55%;
	max-width      : 600px;
	height         : 30px;
}
.search-detail {
	display        : block;
	width          : 75%;
	min-width      : 300px;
	margin         : 0 auto;
}
.search-detail-area {
	width          : 100%;
}
.search-detail-head {
	width          : 100%;
	margin         : 30px 0 0 0;
	background     : #000;
	height         : 30px;
	display        : flex;
	align-items    : center;
	text-align     : left;
	text-indent    : 15px;
	letter-spacing : 1px;
	font-size      : 16px;
	color          : #fff;
}
.search-detail-body {
	margin         : 10px 0 0 0;
	text-align     : left;
}
.tanka-text {
	width          : 80%;
	max-width      : 200px;
	height         : 32px;
}
.tanka-pull {
	display        : inline-block;
}
.select-wrap {
	position       : relative;
	margin-top     : 10px;
}
.select-wrap:before {
	z-index: 1;
	position: absolute;
	right: 15px;
	top: 0;
	content: "\f123";
	font-family: "IonIcons";
	line-height: 43px;
	color: #7F878C;
	pointer-events: none;
}
select {
	outline:none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	background: #fff;
	vertical-align: middle;
	font-size: inherit;
	color: inherit;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	height: 40px;
	padding: 8px 12px;
	border:1px solid #ddd;
	color:#121212;
	width:100%;
	border-radius:3px;
}
select option{
background-color: #fff;
color: #333;
}
select::-ms-expand {
display: none;
}
select:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #828c9a;
}
.select-wrap.select-primary:before{
color:#fff;
}
.select-wrap.select-primary > select{
background:#0084B4;
color:#fff;
border-color:#0084B4;
}
.select-wrap.select-primary > select:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #fff;
}

.select-wrap.select-inverse:before{
color:#fff;
}
.select-wrap.select-inverse > select{
color:#fff;
border-color: #fff;
}

.select-wrap.select-inverse > select:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #fff;
}
.form-group {
	display        : inline-block;
	width          : 75%;
	max-width      : 200px;
}
.tanka-label {
	padding        : 0 5px;
}

.search-footer-form {
	margin         : 0 auto;
	width          : 85%;
	max-width      : 900px;
}
.search-footer-text {
	position       : relative;
	width          : 25%;
	height         : 30px;
	float          : left;
}
.search-footer-navi {
	margin         : 0 auto;
	position       : relative;
	width          : 75%;
	min-width      : 630px;
	float          : right;
}
.search-footer-form .search-text,
.search-header-form .search-text {
	display        : block;
	float          : left;
	box-sizing     : border-box;
	height         : 30px;
	width          : 100%;
	margin         : 0;
	padding        : 0 20px;
	border         : 0;
	border-radius  : 30px;
	color          : #666;
	outline        : 0;
	font-size      : 18px;
}
.search-footer-form .search-button,
.search-header-form .search-button {
float          : left;
box-sizing     : border-box;
height         : 30px;
margin         : 0;
padding        : 6px 10px;
border         : none;
border-radius  : 0 12px 12px 0;
cursor         : pointer;
line-height    : 12px;
font-size      : 12px;
position       : absolute;
right          : 8px;
}
.search-footer-form .search-text:focus,
.search-header-form .search-text:focus {
background     : #fff;
}
.search-footer-form .search-text::-ms-clear,
.search-header-form .search-text::-ms-clear {
display        : none;
}

.search-button span {
	height:16px;
	width:16px;
	display:block;
	position:relative;
}

.search-button-icon:before,
.search-button-icon:after {
	content:'';
	display:block;
	position:absolute;
	top:0;
	left:0;
}
.search-button-icon:before {
	width:17px;
	height:17px;
	border:3px #FF7E03 solid;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
			border-radius:100%;
}
.search-button-icon:after {
	width:4px;
	height:10px;
	background:#FF7E03;
	transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	-moz-transform:rotate(-45deg);
		-o-transform:rotate(-45deg);
		-ms-transform:rotate(-45deg);
	top:11px;
	left:14px;
}

/* テーブルヘッダー */
.table-head {
	margin    : 2em auto;
	width     : 85%;
	max-width : 950px;
}
.search-count {
	font-family: 'sans-serif';
	font-size: 16px;
	font-weight: bold;
}
.font-search-count {
	color: #ff7f00;
}
/* ソートプルダウン */
.select-sort {
	width          : 150px;
	height         : 30px;
	border-radius  : 20px;
	padding        : 0 10px;
	border         : 1.5px solid #999;
}
/* リストスタイル選択 */
.list-style-buttons {
	padding        : 40px 0;
	display        : block;
}
.list-style-buttons a.active {
	font-size      : 16px;
	font-weight    : bold;
	color          : #333;
	margin         : 20px;
	padding        : 10px 35px;
	border-bottom  : 4px solid #ffae00;
	text-decoration: none !important;
}
.switcher {
	font-size      : 16px;
	font-weight    : bold;
	color          : #BBB;
	margin         : 20px;
	padding        : 10px 35px;
	text-decoration: none !important;
}
.switcher:hover {
	color          : #333;
	cursor         : pointer;

}
.switcher:hover .fa {
	color          : #333;
}
.list-style-buttons a .fa {
	color          : #bbb;
	padding        : 0 5px 0 0;
}
.list-style-buttons a.active .fa {
	color          : #333;
}

/* 案件リスト */
.anken-ul {
	width          : 100%;
	max-width      : 950px;
	list-style     : none;
	margin         : 0 auto;
	padding        : 0;
}

.anken-li {
	background     : #FFF;
	box-shadow     : 0 0 8px rgba(0, 0, 0, 0.3);
	color          : #999;
	font-size      : 16px;
	margin         : 16px 0;
	padding        : 10px 10px 10px 40px;
	text-align     : left;
	position       : relative;	/* 「NEW」表示用 */
	overflow       : hidden;	/* 「NEW」表示用 */
}
.anken-li h1 {
	font-size      : 26px;
	font-weight    : bold;
	color          : #000;
	margin         : 8px 0;
}
.anken-li a,
.anken-li-thum-slide a {
	color          : #000;
}
.anken-li a:focus,
.anken-li a:hover,
.anken-li-thum-slide a:focus,
.anken-li-thum-slide a:hover {
	color           : #f00;
	text-decoration : none;
}
.anken-name {
	position       : relative;
}
.circle-h1 { /* 案件名の横の丸 */
	border-radius         : 20px;
	-webkit-border-radius : 20px;
	-moz-border-radius    : 20px;
	height                : 28px;
	width                 : 28px;
	border                : 4px solid #ffae00;
	position              : absolute;
	left                  : -30px;
	top                   : -1px;
}
.anken-date {
	margin         : 8px 0;
}
.anken-tanka {
	margin         : 8px 0;
}
.anken-tanka span {
	folat          : left;
}
.anken-price {
	font-size      : 30px;
	font-weight    : bold;
	color          : #e72619;
	margin         : 8px 0;
}
.anken-info {
	display        : table;
	width          : 100%;
}
.anken-joken {
	display        : table-cell;
	margin         : 8px 0;
	width          : 50%;
	vertical-align : top;
	color          : #0d0d0d;
}
.anken-joken-job {
	position       : relative;
	padding        : 0 10px 0 20px;
	width          : 50%;
	float          : left;
}
.anken-joken-area {
	position       : relative;
	padding        : 0 0 0 20px;
	width          : 50%;
	float          : right;
}
/* 案件サムネイル 表示 */
/*.anken-latest-thum {
	height         : 500px;
	position       : absolute;
}*/
.anken-ul-thum-slide {
	width          : 100%;
	list-style     : none;
	margin         : 0 auto;
	margin-bottom  : 0;
	padding        : 0;
}
.anken-li-thum-slide {
	background     : #fff;
	box-shadow     : 0 0 8px rgba(0, 0, 0, 0.3);
	color          : #999;
	font-size      : 16px;
	height         : auto !important;
	min-height     : 380px;
	padding        : 20px 10px 10px 40px;
	text-align     : left;
	position       : relative;
	box-sizing     : border-box;
	overflow       : hidden;
}
.anken-li-thum-slide .anken-date {
	font-size      : 14px;
	letter-spacing : 0.5px;
}
.anken-li-thum-slide h1 {
	font-size      : 26px;
	font-weight    : bold;
	color          : #000;
	margin         : 8px 0;
}
.anken-joken-thum {
	width          : 100%;
}
.anken-joken-job-thum,
.anken-joken-area-thum,
.anken-joken-skill-thum {
	color          : #080808;
	display        : block;
	float          : left;
	margin         : 0 0 10px;
	padding        : 0 10px 0 20px;
	position       : relative;
	width          : 100%;
}

/* CSSアイコン */
/* 人 */
.icon-man {
	width          : 22px;
	float          : left;
}
.icon-man:before {
	content               : '';
	height                : 12px;
	width                 : 12px;
	display               : block;
	border                : 1px solid #fff;
	position              : absolute;
	top                   : 0px;
	left                  : 0px;
	z-index               : 2;
	background            : #00c2d1;
	line-height           : 26px;
	border-radius         : 35px;
	-webkit-border-radius : 35px;
	-moz-border-radius    : 35px;
	color                 : #fff;
	text-align            : center;
}
.icon-man:after {
	content               : '';
	background            : #00c2d1;
	width                 : 12px;
	height                : 10px;
	border-radius         : 35px 35px 0 0;
	position              : absolute;
	top                   : 10px;
	left                  : 0px;
	z-index               : 1;
}
/* ドロップポイント */
.icon-map {
	width          : 22px;
	float          : left;
}
.icon-map:before {
	content               : '';
	height                : 12px;
	width                 : 12px;
	border                : 4px solid #00c2d1;
	display               : block;
	position              : absolute;
	top                   : 2px;
	left                  : 0px;
	z-index               : 1;
	background            : #fff;
	line-height           : 26px;
	border-radius         : 35px;
	-webkit-border-radius : 35px;
	-moz-border-radius    : 35px;
	color                 : #fff;
	text-align            : center;
}
.icon-map:after {
	content          : '';
	height           : 0px;
	width            : 0px;
	display          : block;
	position         : absolute;
	left             : 1px;
	top              : 10px;
	border           : 10px transparent solid;
	border-top-color : #00c2d1;
	border-width     : 10px 5.3px 0px 5.3px;
}
.anken-skill {
	display          : table-cell;
	width            : 50%;
}
.anken-gaiyo {
	padding: 10px 10px 10px 0;
}

.skill-language {
	height         : 22px;
	padding        : 1px 10px;
	border-radius  : 15px;
	background     : #57d1df;
	color          : #fff;
	float          : left;
	margin         : 0 2px 5px;
}
.skill-joken {
	height         : 22px;
	padding        : 1px 10px;
	border-radius  : 15px;
	background     : #ef8591;
	color          : #fff;
	float          : left;
	margin         : 0 2px 5px;
}
.skill-language a,
.skill-joken a {
	color          : #fff;
}


/*ページャー */
.pager {
	overflow: hidden;
}

.pager ul {
	list-style: none;
	position: relative;
	left: 50%;
	float: left;
}

.pager ul li {
	margin: 0 1px;
	position: relative;
	left: -58%;
	float: left;
}

.pager ul li span,
.pager ul li a {
	border-radius: 50px;
	border-style: none;
	display: block;
	font-size: 14px;
	padding: 0.6em 1em;
	margin: 0 0.8em;
}

.pager ul li a {
	background: #FFF;
	border-style: none;
	color: #ff7e03;
	text-decoration: none;
}

.pager ul li a:hover {
	background: #ff7e03;
	color: #FFF;
	font-weight: bold;
}

.pager .active a {
	background: #ff7e03;
	color: #fff;
	font-weight: bold;
	pointer-events: none;
}

.pager-arrow a {
	background: transparent !important;
	color: #000 !important;
	font-weight: bold !important;
	font-size: 16px !important;
}

/*****************************
管理画面
 *****************************/
/* 共通 */
.admin-checkbox-input {
display: none;
}
.admin-checkbox-parts {
padding-left: 20px;
position:relative;
margin-right: 20px;
}
.admin-checkbox-parts::before{
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
width: 15px;
height: 15px;
border: 1px solid #999;
border-radius: 4px;
}
.admin-checkbox-input:checked + .admin-checkbox-parts{
color: #f36417;
}
.admin-checkbox-input:checked + .admin-checkbox-parts::after{
content: "";
display: block;
position: absolute;
top: -5px;
left: 5px;
width: 7px;
height: 14px;
transform: rotate(40deg);
border-bottom: 3px solid #f36417;
border-right: 3px solid #f36417;
}
.error-msg {
	color: #FF0000;
}

/* 管理者ログイン画面 */
/* Form Layout */
.admin-container-bk {
	overflow: hidden;
	width: 95%;
	margin: 0 auto;
	padding: 20px 0;
	letter-spacing: 1px;
	min-height: 1000px;
	height: auto;
}
.admin-container-bk .form-wrapper {
	background: #fafafa;
	border: 1.5px solid #f3640f;
	border-radius: 10px;
	margin: 30px auto;
	padding: 0 1em;
	max-width: 370px;
	width: 90%;
}

.admin-container-bk h1 {
text-align: center;
padding: 1em 0;
}

.admin-container-bk form {
padding: 0;
}

.admin-container-bk .form-item {
margin-bottom: 0.75em;
width: 100%;
}

.admin-container-bk .form-item input {
background: #fafafa;
border: none;
border-bottom: 2px solid #e9e9e9;
color: #666;
font-family: 'Open Sans', sans-serif;
font-size: 1em;
height: 50px;
transition: border-color 0.3s;
width: 100%;
}

.admin-container-bk .form-item input:focus {
border-bottom: 2px solid #c0c0c0;
outline: none;
}

.admin-container-bk .button-panel {
margin: 2em 0 0;
width: 100%;
}

.admin-container-bk .button-panel .button {
	background: #f3640f;
	border: none;
	color: #fff;
	cursor: pointer;
	height: 50px;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.2em;
	letter-spacing: 0.05em;
	text-align: center;
	text-transform: uppercase;
	transition: background 0.3s ease-in-out;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.admin-container-bk .button-panel .button:hover {
	background: #da540c;
}
.admin-container-bk a:hover {
	text-decoration: none;
}
.admin-container-bk .form-footer {
font-size: 1em;
padding: 2em 0;
text-align: center;
}

.admin-container-bk .form-footer a {
color: #8c8c8c;
text-decoration: none;
transition: border-color 0.3s;
}

.admin-container-bk .form-footer a:hover {
border-bottom: 1px dotted #8c8c8c;
}

.admin-container-left {
	float: left;
	width: 25%;
	height: auto;
	min-height: 700px;
	position: fixed;
	padding-right: 20px;
}
.admin-container-right {
	float: left;
	width: 71%;
	margin: 0 2%;
	position: absolute;
	right: 0;
}
.admin-message-area {
	width: 100%;
	margin: 10px 0;
	text-align: left;
	height: auto;
	padding: 20px;
	display: inline-table;
	background: #fed;
}
.admin-user-info {
	float: left;
	height: 100px;
	width: 100%;
	display: inline-table;
}
.admin-user-info p {
	display: block;
	margin-bottom: 5px;
}
.login-user {
	font-size: 16px;
	font-weight: bold;
	color: #ff0000;
}
#view_time {
	font-size: 16px;
}
.admin-contents-area {
	width: 100%;
	margin: 30px auto;
	text-align: left;
	overflow: hidden;
}
.admin-menu {
	width: 100%;
	min-width: 200px;
}
.logout-button {
	color: #fff;
	font-weight: bold;
	margin: 10px 0;
	border-radius: 20px;
	background: #f36417;
	text-align: center;
	display: inline-block;
	width: 100%;
}
.logout-button:hover {
	text-decoration: none !important;
	background: #da540c;
	cursor: pointer;
}
.logout-button a {
	height: 40px;
	padding: 10px 20px;
	display: block;
	color: #fff;
}
.admin-menu ul {
	list-style: none;
	padding-left: 0;
	position: relative;
}
.admin-menu li {
	border-left: solid 5px #f36417;
	background: #f5f5f5;
	margin-bottom: 5px;
	line-height: 1.5;
	border-radius: 0 15px 15px 0;
	list-style-type: none!important;
	height: 56px;
	display: inline-block;
	width: 100%;
	transition-property: all;
	transition: 0.3s linear;
}
.admin-menu a {
	display: block;
	width: 100%;
	padding: 17.5px 0 17.5px 20px;
	color: #333;
	font-weight: bold;
}
.admin-menu li:hover {
	background: #c6c6c6;
	cursor: pointer;
}
.admin-edit {
	float: right;
	width: 100%;
	text-align: left;
}
.admin-title {
	color: #f36417;
	border-radius: 5px;
	margin: 0 auto;
	height: 50px;
	width: 99%;
}
.admin-title h2 {
	margin-top: 10px;
}
.admin-title-left {
	float: left;
	width: 60%;
	height: 50px;
}
.admin-title-right {
	float: right;
	width: 40%;
	height: 50px;
}
.admin-title-right a:hover {
	text-decoration: none;
}
.change-button {
	width: 200px;
	color: #fff;
	font-weight: bold;
	height: 40px;
	margin: 5px 0;
	margin-left: auto;
	border-radius: 5px;
	background: #f36417;
	text-align: center;
	padding: 10px;
	position: relative;
}
.change-button:hover {
	background: #da540c;
}
.change-button .fa {
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	font-size: 20px;
	margin: auto;
	height: 22.5px;
}
/********************************
	エリア設定（案件・会員・トピック）
 ********************************/
.admin-anken-search,
.admin-anken-result,
.admin-member-search,
.admin-member-result,
.admin-topic-search,
.admin-topic-result,
.admin-user-search,
.admin-user-result {
	border: 1.5px solid #f36417;
	border-radius: 5px;
	margin: 10px auto;
	padding: 10px;
	width: 99%;
	min-height: 50px;
}
.admin-anken-search ul,
.admin-member-search ul,
.admin-topic-search ul,
.admin-user-search ul {
	list-style: none;
	padding-left: 0;
}
.admin-button {
	-moz-border-radius      : 20px;
	-webkit-border-radius   : 20px;
	border-radius           : 20px;
	font-size               : 16px;
	font-weight             : bold;
	line-height             : 20px;
	width                   : 200px;
	height                  : 40px;
	background-color        : #efa92a;
	margin                  : 30px auto;
	padding                 : 12px 0;
	position                : relative;
	text-align              : center;
	text-decoration         : none;
	box-shadow              : 0;
	color                   : #fff;
}

.admin-anken-search li,
.admin-member-search li,
.admin-user-search li {
	margin: 5px 0;
}
.admin-anken-search label,
.admin-member-search label,
.admin-user-search label {
	margin-right: 10px;
	width:100px;
	text-align: right;
	padding: 3px 0;
	float: left;
}
.admin-anken-search input,
.admin-member-search input,
.admin-user-search input {
	color: #333;
	height: 28px;
	padding: 1px 5px;
}
#admin-anken-bunrui,
#admin-anken-tankin,
#admin-anken-rank,
#admin-member-tankin,
#admin-member-status,
#admin-member-user-rank {
	color: #333;
	width: 80px;
	height: 28px;
	padding: 1px 5px;
}
#admin-anken-bunrui {
	color: #333;
	width: 120px;
	height: 28px;
	padding: 1px 5px;
}
#admin-anken-bunrui:-webkit-autofill {
	background-color: rgb(250, 255, 189) !important;
	background-image: none !important;
	color: rgb(0, 0, 0) !important;
}

/* ページャー（管理画面用） */
.admin-pager {
	overflow: hidden;
}
.admin-pager ul {
	list-style: none;
	position: relative;
	left: 50%;
	float: left;
}
.admin-pager ul li {
	margin: 0 1px;
	position: relative;
	left: -58%;
	float: left;
}
.admin-pager ul li span,
.admin-pager ul li a {
	border-radius: 50px;
	border-style: none;
	display: block;
	font-size: 14px;
	padding: 0.6em 1em;
	margin: 0 0.8em;
}
.admin-pager ul li a {
	background: #FFF;
	border-style: none;
	color: #ff7e03;
	text-decoration: none;
}
.admin-pager ul li.active a {
	border: 1px solid #ff7e03;
}
.admin-pager ul li a:hover {
	background: #ff7e03;
	color: #FFF;
	font-weight: bold;
}
.admin-pager-arrow a {
	background: transparent !important;
	color: #000 !important;
	font-weight: bold !important;
	font-size: 16px !important;
}

/* -------------------
	「案件一覧」テーブル
------------------- */
.admin-anken-list-table a:link {
	font-weight: bold;
	text-decoration:none;
}
.admin-anken-list-table a:visited {
	color: #f00;
	font-weight:bold;
	text-decoration:none;
}
.admin-anken-list-table a:active,
.admin-anken-list-table a:hover {
	color: #bd5a35;
	text-decoration:underline;
}
.admin-anken-list-table {
	color:#333;
	font-size: 14px;
	border: #ccc 1px solid;
	margin: 0 0 20px 0;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	width: 100%;
	table-layout: fixed;
	max-width: none;
}
.admin-anken-list-table p {
	padding: 5px 2px;
	margin: 0;
}
.admin-anken-list-table th p {
	border-bottom: 1px dashed #fff;
}
.admin-anken-list-table td p {
	border-bottom: 1px dashed #aaa;
}
.admin-anken-list-table p:last-child {
	border-bottom: none;
}
.admin-anken-list-table th {
	color:#fff;
	padding:10px 10px;
	border-top:1px solid #fafafa;
	border-bottom:1px solid #e0e0e0;

	background: #F36417;
	background: -webkit-gradient(linear, left top, left bottom, from(#F47528), to(#F36417));
	background: -moz-linear-gradient(top,  #F47528,  #F36417);
	text-align: left;
}
.admin-anken-table-id {
	width: 60px;
}
.admin-anken-table-overview {
}
.admin-anken-table-kind {
	width: 120px;
}
.admin-anken-table-detail {
}
.admin-anken-table-delete {
	width: 55px;
	color: #f00;
}
.admin-anken-list-table th {
	border-right: 1px solid #fff;
}
.admin-anken-list-table th:first-child {
	text-align: left;
	padding-left: 10px;
}
.admin-anken-list-table tr:first-child th:first-child {
	-moz-border-radius-topleft:3px;
	-webkit-border-top-left-radius:3px;
	border-top-left-radius:3px;
}
.admin-anken-list-table tr:first-child th:last-child {
	-moz-border-radius-topright:3px;
	-webkit-border-top-right-radius:3px;
	border-top-right-radius:3px;
	border-right: none;
}
.admin-anken-list-table tr {
	text-align: left;
	padding-left:10px;
}
.admin-anken-list-table td:first-child {
	text-align: left;
	padding-left:10px;
	border-left: 0;
}
.admin-anken-list-table td {
	padding:10px;
	border-top: 1px solid #ffffff;
	border-bottom:1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;

	background: #fff;
}
.admin-anken-list-table tr:nth-child(even) td {
	background: #ffeddc;
}
.admin-anken-list-table tr:last-child td {
	border-bottom:0;
}
.admin-anken-list-table tr:last-child td:first-child {
	-moz-border-radius-bottomleft:3px;
	-webkit-border-bottom-left-radius:3px;
	border-bottom-left-radius:3px;
}
.admin-anken-list-table tr:last-child td:last-child {
	-moz-border-radius-bottomright:3px;
	-webkit-border-bottom-right-radius:3px;
	border-bottom-right-radius:3px;
}
.admin-anken-list-table tr:hover td {
	background: #f2f2f2;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
	background: -moz-linear-gradient(top,  #f2f2f2,  #f0f0f0);
}

/* ------------------------
	「新規案件登録」テーブル
------------------------ */
.admin-anken-register {
	border: 1.5px solid #f36417;
	border-radius: 5px;
	margin: 10px auto;
	padding: 10px;
	width: 99%;
	min-height: 100px;
}
.admin-anken-register ul {
	list-style: none;
	padding-left: 0;
}
.admin-anken-register li {
	margin: 5px 0;
}
.admin-anken-register input {
	color: #333;
	height: 28px;
	padding: 1px 5px;
}
.admin-anken-register-table a:link {
	font-weight: bold;
	text-decoration:none;
}
.admin-anken-register-table a:visited {
	color: #f00;
	font-weight:bold;
	text-decoration:none;
}
.admin-anken-register-table a:active,
.admin-anken-register-table a:hover {
	color: #bd5a35;
	text-decoration:underline;
}
.admin-anken-register-table {
	color:#333;
	font-size: 14px;
	border: #ccc 1px solid;
	margin: 0 0 20px 0;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	width: 100%;
	table-layout: fixed;
}
.admin-anken-register-table p {
	padding: 5px 2px;
	margin: 0;
}
.admin-anken-register-table th p {
	border-bottom: 1px dashed #fff;
}
.admin-anken-register-table td p {
	border-bottom: 1px dashed #aaa;
}
.admin-anken-register-table {
	color: #333;
	font-size: 14px;
	border: #ccc 1px solid;
	margin: 0 0 20px 0;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	width: 100%;
	max-width: none;
}
.admin-anken-register-table th {
	width: 30%;
	color:#fff;
	padding:10px 10px;
	border-top:1px solid #fafafa;
	border-bottom:1px solid #e0e0e0;

	background: #F36417;
	background: -webkit-gradient(linear, left top, left bottom, from(#F47528), to(#F36417));
	background: -moz-linear-gradient(top,  #F47528,  #F36417);
	text-align: left;
}
.admin-anken-register-table td {
	width: 70%;
	padding:10px;
	border-top: 1px solid #ddd;
	border-bottom:1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;

	background: #fff;
}
/* スキル：チェックボックス */
.admin-check-input,
.admin-radio-input {
	display: none;
}
.admin-check-label,
.admin-radio-label {
	display: block;
	float: left;
	margin: 5px;
	min-width: 100px;
	width: auto;
	height: 25px;
	text-align: center;
	line-height: 25px;
	padding-left: 10px;
	padding-right: 10px;
	cursor: pointer;
	color: #333;
	border: 1px solid #e0e0e0;
	border-radius: 20px;
}
.admin-check-input:checked + .admin-check-label,
.admin-radio-input:checked + .admin-radio-label {
	background: #31A9EE;/* マウス選択時の背景色を指定する */
	color: #ffffff; 	/* マウス選択時のフォント色を指定する */
}
.admin-check-label:hover,
.admin-radio-label:hover {
	background-color: #E2EDF9; 	/* マウスオーバー時の背景色を指定する */
}
.admin-anken-register-input {
	width: 100%;
}
.admin-anken-register-input-num {
	width: 80px;
}
.admin-anken-register-textarea {
	resize: vertical;
	width: 100%;
}

/* -------------------
	「会員一覧」テーブル
------------------- */
.admin-member-list-table a:link {
	font-weight: bold;
	text-decoration:none;
}
.admin-member-list-table a:visited {
	color: #f00;
	font-weight:bold;
	text-decoration:none;
}
.admin-member-list-table a:active,
.admin-member-list-table a:hover {
	color: #bd5a35;
	text-decoration:underline;
}
.admin-member-list-table {
	color:#333;
	font-size: 14px;
	border: #ccc 1px solid;
	margin: 0 0 20px 0;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	width: 100%;
	table-layout: fixed;
	max-width: none;
}
.admin-member-list-table p {
	padding: 5px 2px;
	margin: 0;
}
.admin-member-list-table th p {
	border-bottom: 1px dashed #fff;
}
.admin-member-list-table td p {
	border-bottom: 1px dashed #aaa;
}
.admin-member-list-table p:last-child {
	border-bottom: none;
	white-space: pre-wrap;
}
.admin-member-list-table th {
	color:#fff;
	padding:10px 10px;
	border-top:1px solid #fafafa;
	border-bottom:1px solid #e0e0e0;

	background: #F36417;
	background: -webkit-gradient(linear, left top, left bottom, from(#F47528), to(#F36417));
	background: -moz-linear-gradient(top,  #F47528,  #F36417);
	text-align: left;
}
.admin-member-table-id {
	width: 60px;
}
.admin-member-table-personal {
}
.admin-member-table-kind {
	width: 120px;
}
.admin-member-table-status {
	width: 80px;
}
.admin-member-table-rank {
	width: 35px;
}
.admin-member-table-skill {
	width: 80px;
}
.admin-member-table-delete {
	width: 55px;
}
.admin-member-list-table th {
	border-right: 1px solid #fff;
}
.admin-member-list-table th:first-child {
	text-align: left;
	padding-left: 10px;
}
.admin-member-list-table tr:first-child th:first-child {
	-moz-border-radius-topleft:3px;
	-webkit-border-top-left-radius:3px;
	border-top-left-radius:3px;
}
.admin-member-list-table tr:first-child th:last-child {
	-moz-border-radius-topright:3px;
	-webkit-border-top-right-radius:3px;
	border-top-right-radius:3px;
	border-right: none;
}
.admin-member-list-table tr {
	text-align: left;
	padding-left:10px;
}
.admin-member-list-table td:first-child {
	text-align: left;
	padding-left:10px;
	border-left: 0;
}
.admin-member-list-table td {
	padding:10px;
	border-top: 1px solid #ffffff;
	border-bottom:1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;

	background: #fff;
}
.admin-member-list-table tr:nth-child(even) td {
	background: #ffeddc;
}
.admin-member-list-table tr:last-child td {
	border-bottom:0;
}
.admin-member-list-table tr:last-child td:first-child {
	-moz-border-radius-bottomleft:3px;
	-webkit-border-bottom-left-radius:3px;
	border-bottom-left-radius:3px;
}
.admin-member-list-table tr:last-child td:last-child {
	-moz-border-radius-bottomright:3px;
	-webkit-border-bottom-right-radius:3px;
	border-bottom-right-radius:3px;
}
.admin-member-list-table tr:hover td {
	background: #f2f2f2;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
	background: -moz-linear-gradient(top,  #f2f2f2,  #f0f0f0);
}
/* ------------------------
	「新規会員登録」テーブル
------------------------ */
.admin-member-register {
	border: 1.5px solid #f36417;
	border-radius: 5px;
	margin: 10px auto;
	padding: 10px;
	width: 99%;
	min-height: 100px;
}
.admin-member-register ul {
	list-style: none;
	padding-left: 0;
}
.admin-member-register li {
	margin: 5px 0;
}
.admin-member-register input {
	color: #333;
	height: 28px;
	padding: 1px 5px;
}
.admin-member-register-table a:link {
	font-weight: bold;
	text-decoration:none;
}
.admin-member-register-table a:visited {
	color: #f00;
	font-weight:bold;
	text-decoration:none;
}
.admin-member-register-table a:active,
.admin-member-register-table a:hover {
	color: #bd5a35;
	text-decoration:underline;
}
.admin-member-register-table {
	color:#333;
	font-size: 14px;
	border: #ccc 1px solid;
	margin: 0 0 20px 0;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	width: 100%;
	table-layout: fixed;
}
.admin-member-register-table p {
	padding: 5px 2px;
	margin: 0;
}
.admin-member-register-table th p {
	border-bottom: 1px dashed #fff;
}
.admin-member-register-table td p {
	border-bottom: 1px dashed #aaa;
}
.admin-member-register-table {
	color: #333;
	font-size: 14px;
	border: #ccc 1px solid;
	margin: 0 0 20px 0;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	width: 100%;
	max-width: none;
}
.admin-member-register-table th {
	width: 30%;
	color:#fff;
	padding:10px 10px;
	border-top:1px solid #fafafa;
	border-bottom:1px solid #e0e0e0;
	font-weight: normal;

	background: #F36417;
	background: -webkit-gradient(linear, left top, left bottom, from(#F47528), to(#F36417));
	background: -moz-linear-gradient(top,  #F47528,  #F36417);
	text-align: left;
}
.admin-member-register-table td {
	width: 70%;
	padding:10px;
	border-top: 1px solid #ddd;
	border-bottom:1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;

	background: #fff;
}
.admin-member-border-bold {
	/*項目を目立たせるための配慮*/
	border: 1.5px solid #f36417;
}
.admin-anken-th-thin,
.admin-member-th-thin {
	background: #f9ae86 !important;
	background: -webkit-gradient(linear, left top, left bottom, from(#f9ae86), to(#f89661)) !important;
	background: -moz-linear-gradient(top,  #f9ae86,  #f89661) !important;
}
/* スキル：チェックボックス */
.admin-check-input,
.admin-radio-input {
	display: none;
}
.admin-check-label,
.admin-radio-label {
	display: block;
	float: left;
	margin: 5px;
	min-width: 100px;
	width: auto;
	height: 25px;
	text-align: center;
	line-height: 25px;
	padding-left: 10px;
	padding-right: 10px;
	cursor: pointer;
	color: #333;
	border: 1px solid #e0e0e0;
	border-radius: 20px;
}
.admin-check-input:checked + .admin-check-label,
.admin-radio-input:checked + .admin-radio-label {
	background: #31A9EE;/* マウス選択時の背景色を指定する */
	color: #ffffff; 	/* マウス選択時のフォント色を指定する */
}
.admin-check-label:hover,
.admin-radio-label:hover {
	background-color: #E2EDF9; 	/* マウスオーバー時の背景色を指定する */
}
.admin-member-register-input {
	width: 100%;
}
.admin-member-register-input-num {
	width: 80px;
}
.admin-member-register-textarea {
	resize: vertical;
	width: 100%;
}
.input-date {
	width: 70px;
	margin: 5px;
	text-align: right;
	height: 30px;
	padding: 0 10px;
}
.admin-member-syugyojiki-check,
.admin-member-syugyojiki-date {
	display: table;
}
.admin-member-short {
	width: 80px;
}
.admin-member-middle {
	width: 200px;
}
.upload-button {
	height: 30px;
	width: 160px;
	background: #ddd;
	border-radius: 5px;
	text-align: center;
	padding: 5px;
	float: left;
}
.upload-button:hover {
	background: #aaa;
	cursor: pointer;
}
.upload-message {
	float: left;
	margin: 5px 10px;
}
input#calculateAgeButton {
	width: 100px;
	color: #fff;
	height: 35px;
	background-color: #f36417;
	text-align: center;
	margin-left: 5px;
	font-weight: bold;
}
/* 「案件詳細」画面 */
.case-title-bk {
	background-color    : #ffffff;
	margin              : 0 auto;
}
.case-title {
	background-color    : #ffffff;
	padding             : 10px 0;
	margin              : 0 auto;
	text-align          : left;
	font-size           : 10px;
	width               : 85%;
	max-width           : 1000px;
	letter-spacing      : 1px;
}
.case-title h1 {
	font-size           : 24px;
	font-weight         : bold;
}
.case-title span {
	font-size           : 14px;
	color               : #999;
	margin-top          : 2px;
}
.sub-title {
	font-size   : 18px;
	color       : #d8521e;
	margin      : 20px 0;
}
.case-detail-new {
	height: 20px;
	width: 50px;
	background: #f00;
	color: #fff;
	float: left;
	text-align: center;
	padding: 3px 0;
	margin-right: 10px;
}
.case-detail-old-message {
	color: #f00 !important;
	margin-left: 50px;
}

/* ------------------------
	「管理者一覧」テーブル
--------------------------- */
.admin-user-list-table a:link {
	font-weight: bold;
	text-decoration:none;
}
.admin-user-list-table a:visited {
	color: #f00;
	font-weight:bold;
	text-decoration:none;
}
.admin-user-list-table a:active,
.admin-user-list-table a:hover {
	color: #bd5a35;
	text-decoration:underline;
}
.admin-user-list-table {
	color:#333;
	font-size: 14px;
	border: #ccc 1px solid;
	margin: 0 0 20px 0;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	width: 100%;
	table-layout: fixed;
	max-width: none;
}
.admin-user-list-table p {
	padding: 5px 2px;
	margin: 0;
}
.admin-user-list-table th p {
	border-bottom: 1px dashed #fff;
}
.admin-user-list-table td p {
	border-bottom: 1px dashed #aaa;
}
.admin-user-list-table p:last-child {
	border-bottom: none;
}
.admin-user-list-table th {
	color:#fff;
	padding:10px 10px;
	border-top:1px solid #fafafa;
	border-bottom:1px solid #e0e0e0;

	background: #F36417;
	background: -webkit-gradient(linear, left top, left bottom, from(#F47528), to(#F36417));
	background: -moz-linear-gradient(top,  #F47528,  #F36417);
	text-align: left;
}
.admin-user-table-id {
	width: 55px;
}
.admin-user-table-rogin-id {
	width: 120px;
}
.admin-user-table-name {
	width: 120px;
}
.admin-user-table-delete {
	width: 55px;
	color: #f00;
}
.admin-user-list-table th {
	border-right: 1px solid #fff;
}
.admin-user-list-table th:first-child {
	text-align: left;
	padding-left: 10px;
}
.admin-user-list-table tr:first-child th:first-child {
	-moz-border-radius-topleft:3px;
	-webkit-border-top-left-radius:3px;
	border-top-left-radius:3px;
}
.admin-user-list-table tr:first-child th:last-child {
	-moz-border-radius-topright:3px;
	-webkit-border-top-right-radius:3px;
	border-top-right-radius:3px;
	border-right: none;
}
.admin-user-list-table tr {
	text-align: left;
	padding-left:10px;
}
.admin-user-list-table td:first-child {
	text-align: left;
	padding-left:10px;
	border-left: 0;
}
.admin-user-list-table td {
	padding:10px;
	border-top: 1px solid #ffffff;
	border-bottom:1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;

	background: #fff;
}
.admin-user-list-table tr:nth-child(even) td {
	background: #ffeddc;
}
.admin-user-list-table tr:last-child td {
	border-bottom:0;
}
.admin-user-list-table tr:last-child td:first-child {
	-moz-border-radius-bottomleft:3px;
	-webkit-border-bottom-left-radius:3px;
	border-bottom-left-radius:3px;
}
.admin-user-list-table tr:last-child td:last-child {
	-moz-border-radius-bottomright:3px;
	-webkit-border-bottom-right-radius:3px;
	border-bottom-right-radius:3px;
}
.admin-user-list-table tr:hover td {
	background: #f2f2f2;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
	background: -moz-linear-gradient(top,  #f2f2f2,  #f0f0f0);
}
/* -----------------------
	「管理者一覧」テーブル
-------------------------- */
.admin-user-list-table a:link {
	font-weight: bold;
	text-decoration:none;
}
.admin-user-list-table a:visited {
	color: #f00;
	font-weight:bold;
	text-decoration:none;
}
.admin-user-list-table a:active,
.admin-user-list-table a:hover {
	color: #bd5a35;
	text-decoration:underline;
}
.admin-user-list-table {
	color:#333;
	font-size: 14px;
	border: #ccc 1px solid;
	margin: 0 0 20px 0;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	width: 100%;
	table-layout: fixed;
	max-width: none;
}
.admin-user-list-table p {
	padding: 5px 2px;
	margin: 0;
}
.admin-user-list-table th p {
	border-bottom: 1px dashed #fff;
}
.admin-user-list-table td p {
	border-bottom: 1px dashed #aaa;
}
.admin-user-list-table p:last-child {
	border-bottom: none;
}
.admin-user-list-table th {
	color:#fff;
	padding:10px 10px;
	border-top:1px solid #fafafa;
	border-bottom:1px solid #e0e0e0;

	background: #F36417;
	background: -webkit-gradient(linear, left top, left bottom, from(#F47528), to(#F36417));
	background: -moz-linear-gradient(top,  #F47528,  #F36417);
	text-align: left;
}
.admin-user-table-id {
	width: 60px;
}
.admin-user-table-overview {
}
.admin-user-table-kind {
	width: 120px;
}
.admin-user-table-detail {
}
.admin-user-table-delete {
	width: 55px;
	color: #f00;
}
.admin-user-list-table th {
	border-right: 1px solid #fff;
}
.admin-user-list-table th:first-child {
	text-align: left;
	padding-left: 10px;
}
.admin-user-list-table tr:first-child th:first-child {
	-moz-border-radius-topleft:3px;
	-webkit-border-top-left-radius:3px;
	border-top-left-radius:3px;
}
.admin-user-list-table tr:first-child th:last-child {
	-moz-border-radius-topright:3px;
	-webkit-border-top-right-radius:3px;
	border-top-right-radius:3px;
	border-right: none;
}
.admin-user-list-table tr {
	text-align: left;
	padding-left:10px;
}
.admin-user-list-table td:first-child {
	text-align: left;
	padding-left:10px;
	border-left: 0;
}
.admin-user-list-table td {
	padding:10px;
	border-top: 1px solid #ffffff;
	border-bottom:1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;

	background: #fff;
}
.admin-user-list-table tr:nth-child(even) td {
	background: #ffeddc;
}
.admin-user-list-table tr:last-child td {
	border-bottom:0;
}
.admin-user-list-table tr:last-child td:first-child {
	-moz-border-radius-bottomleft:3px;
	-webkit-border-bottom-left-radius:3px;
	border-bottom-left-radius:3px;
}
.admin-user-list-table tr:last-child td:last-child {
	-moz-border-radius-bottomright:3px;
	-webkit-border-bottom-right-radius:3px;
	border-bottom-right-radius:3px;
}
.admin-user-list-table tr:hover td {
	background: #f2f2f2;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
	background: -moz-linear-gradient(top,  #f2f2f2,  #f0f0f0);
}

/* ------------------------
	「営業一覧」テーブル
------------------------ */
.admin-sales-table-id {
	width: 60px;
}
.admin-sales-table-name {
	width: 120px;
}
.admin-sales-table-flg {
	width: 60px;
}
.admin-sales-table-delete {
	width: 55px;
	color: #f00;
}

/* ------------------------
	「新規営業登録」テーブル
------------------------ */
.admin-sales-register {
	border: 1.5px solid #f36417;
	border-radius: 5px;
	margin: 10px auto;
	padding: 10px;
	width: 99%;
	min-height: 100px;
}
.admin-sales-register ul {
	list-style: none;
	padding-left: 0;
}
.admin-sales-register li {
	margin: 5px 0;
}
.admin-sales-register input {
	color: #333;
	height: 28px;
	padding: 1px 5px;
}
.admin-sales-register-table a:link {
	font-weight: bold;
	text-decoration:none;
}
.admin-sales-register-table a:visited {
	color: #f00;
	font-weight:bold;
	text-decoration:none;
}
.admin-sales-register-table a:active,
.admin-sales-register-table a:hover {
	color: #bd5a35;
	text-decoration:underline;
}
.admin-sales-register-table {
	color:#333;
	font-size: 14px;
	border: #ccc 1px solid;
	margin: 0 0 20px 0;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	width: 100%;
	table-layout: fixed;
}
.admin-sales-register-table p {
	padding: 5px 2px;
	margin: 0;
}
.admin-sales-register-table th p {
	border-bottom: 1px dashed #fff;
}
.admin-sales-register-table td p {
	border-bottom: 1px dashed #aaa;
}
.admin-sales-register-table {
	color: #333;
	font-size: 14px;
	border: #ccc 1px solid;
	margin: 0 0 20px 0;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	width: 100%;
	max-width: none;
}
.admin-sales-register-table th {
	width: 30%;
	color:#fff;
	padding:10px 10px;
	border-top:1px solid #fafafa;
	border-bottom:1px solid #e0e0e0;
	font-weight: normal;

	background: #F36417;
	background: -webkit-gradient(linear, left top, left bottom, from(#F47528), to(#F36417));
	background: -moz-linear-gradient(top,  #F47528,  #F36417);
	text-align: left;
}
.admin-sales-register-table td {
	width: 70%;
	padding:10px;
	border-top: 1px solid #ddd;
	border-bottom:1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;

	background: #fff;
}
/* 下書き機能 */
/* 変更された/復元されたフィールドを一時的にハイライト表示 */
.restored-flash {
  animation: restoredFlash 1.6s ease-out 1;
  outline: 2px solid rgba(255, 208, 0, 0.9);
}
@keyframes restoredFlash {
  0%   { background: rgba(255, 240, 140, 0.9); }
  100% { background: transparent; }
}

/* 復元/破棄用のスリムバナー */
.draft-banner {
  position: sticky; top: 0; z-index: 20;
  padding: 10px; background: #fff3cd; border-bottom: 1px solid #ffeeba;
  display: flex; gap: 8px; align-items: center; justify-content: space-between;
  font-size: 14px;
}
.draft-banner .actions { display: flex; gap: 8px; }
.draft-btn {
  border: 1px solid #ccc; padding: 6px 10px; border-radius: 6px; background: #fff;
  cursor: pointer;
}
.draft-btn.primary { border-color: #007bff; }
