@charset "utf-8";
/* CSS Document */
@font-face {
  font-family: 'NotoSansJP'; 
  src: url('../font/NotoSansJP-Black.otf') format('opentype');
	font-weight: 900;
}
@font-face {
  font-family: 'NotoSansJP'; 
  src: url('../font/NotoSansJP-Bold.otf') format('opentype');
	font-weight:700;
}
@font-face {
  font-family: 'NotoSansJP'; 
  src: url('../font/NotoSansJP-Medium.otf') format('opentype');
	font-weight:500;
}
@font-face {
  font-family: 'NotoSansJP'; 
  src: url('../font/NotoSansJP-Regular.otf') format('opentype');
	font-weight:400;
}
@font-face {
  font-family: 'NotoSansJP'; 
  src: url('../font/NotoSansJP-Light.otf') format('opentype');
	font-weight:300;
}
@font-face {
  font-family: 'NotoSansJP'; 
  src: url('../font/NotoSansJP-Thin.otf') format('opentype');
	font-weight:100;
}

@font-face {
	font-family:'roboto';
	src: url('../font/Roboto-Black.ttf');
}


body {
	font-family: 'NotoSansJP';
	font-weight: 300;
	font-size:16px;
	margin:0px;
	caret-color: #666666;
	letter-spacing: 1px;
	line-height: 27px;	

}
a {
	text-decoration: none;
}
a:hover{
	color: currentColor; /* bootstrapのhoverでの色指定を無効にするため*/
}

input[type="text"]:focus {
  outline: 1px solid #32a99c;
}
textarea:focus {
  outline: 1px solid #32a99c;
}
/* 文字色 */
.fontGray {
	color: #333333;
}
.fontWhite {
	color:#ffffff;
}
.fontAsta {
	margin-left:3px;
	color:rgb(255, 0, 0)
}
.fontNotes {
	font-size:14px;
}
/* 背景色 */
.backGray {
	background-color: #333333;
}
.backLightGray {
	background-color: #CCCCCC;
}
.backWhite {
	background-color: #ffffff;
}
/* 線 */
.borderBottomGray {
	border-bottom: solid #333333 1px;
}
.borderWhite {
	border-bottom-color:#FFFFFF;
}
.borderGray {
	border-bottom-color:#333333;
}
.hrRight {
	width:60px;
	display:inline-block;
}

/* 背景画像 */
.backImg1 {
	background-image:url("../img/imgBack1.jpg");
}
.backImg2 {
	background-image:url("../img/imgBack2.jpg");
}
.backImgEntry1 {
	background-image:url("../img/imgEntry1.jpg");
}
.backImgEntry2 {
	background-image:url("../img/imgEntry2.jpg");
}
.backImgConsulting {
	background-image:url("../img/imgConsulting.jpg");
}
.backImgService {
	background-image:url("../img/imgService.jpg");
}
.backImgCompany {
	background-image:url("../img/imgCompany.jpg");
}
.backImgWorkerEntry {
	background-image:url("../img/imgWorkerEntry.jpg");
}
.backImgWorkers {
	background-image:url("../img/imgWorkers.jpg");
}
.backImgCompanyEntry {
	background-image:url("../img/imgCompanyEntry.jpg");
}

/* 文字間 */
.letterSpace5 {
	letter-spacing: 5px;
}
/* マージン */
.marginTop20 {
	margin-top: 20px;
}
.marginTop40 {
	margin-top: 40px;
}
.marginBottom20 {
	margin-bottom: 20px;
}
.paddingBottom20 {
	padding-bottom:20px;
}
.marginBottom40 {
	padding-bottom:40px;
}

.paddingBottom100 {
	padding-bottom: 100px;
}
/* ボタン */
.btnWhite {
	position:relative;
}
.btnWhite::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  content: '';
  background:rgba(255,255,255,0.3);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .8s;	
}
.btnWhite:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/***********/
/* エリア */
/***********/
/* メインエリア */
.container {
	width:100%;
	height:100vh;
	margin:0;
	min-width: 1200px;
	max-width: initial;	/* bootstrapのmax-widthをリセットする*/
}
/* 背景画像エリア　*/
.areaImgBack {
	width:100%;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: top center;
}
/* テキストセンターエリア　*/
.areaTextCenter {
	text-align: center;
	width:100%;
}
/* イントロエリア */
#areaIntro {
	position:fixed;
	z-index:200;
	width:100%;
	height:100vh;
	display:flex;
	flex-direction: column;
	align-content: stretch;
}
.rowIntro {
	height:calc(100vh/6);
	width:100%;
	position:relative;
}
.rowIntro div{
	position:absolute;
	height:100%;
	width:100%;
	top:0;
	right:0;
	z-index:10;
}
#introLogo{
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	z-index: 210;
  width:auto;
  height:80px;
}

/* メインエリア */
/***********/
/* タイトル */
/***********/
.baseTitleCenter {
	position:relative;
	width:100%;
	height:100px;
	margin-top:100px;
	margin-bottom:80px;
	text-align: center;
	font-size:75px;
	line-height: 100px;
	color:rgba(51,51,51,0.2);
	font-family: "roboto";
	letter-spacing: 4px;
}
.areaTitleCenter {
	position:absolute;
	z-index: 10;
	bottom:0;
	width:100%;
	text-align: center;
	font-family: 'NotoSansJP';
	font-weight: 500;
	font-size:25px;
	letter-spacing: 2px;
	line-height: 60px;
	color:#333333;
}
.areaTitleCenter::after {
	content:"";
	position:absolute;
	z-index:20;
	bottom:-20px;
	left:0;
	right:0;
	margin:auto;
	width:10%;
	border-bottom:solid #32a99c 5px;
}

.areaTitleLeftAlfa {
	font-family: "roboto";
	font-size:65px;
	line-height:75px;
	width:100%;
	letter-spacing: 2px;
}
.areaTitleLeft {
	position: relative;
	font-family: 'NotoSansJP';
	font-size:20px;
	line-height:50px;
	font-weight: 500;
	padding-bottom: 20px;
	letter-spacing: 2px;
}
.areaTitleLeft::after {
	content:"";
	position:absolute;
	left:0;
	bottom:0px;
	z-index:10;
	width:80px;
	
	border-bottom:solid 5px;
}
.areaTitleLeftBookSeminar {
	position: relative;
	font-family: 'NotoSansJP';
	font-size:30px;
	line-height:50px;
	font-weight: 500;
	padding-bottom: 20px;
	letter-spacing: 2px;
}
.areaTitleLeftBookSeminar::after {
	content:"";
	position:absolute;
	left:0;
	bottom:0px;
	z-index:10;
	width:80px;
	
	border-bottom:solid 5px;
}

/* 上部ボタンエリア */
#topNav {
	position:fixed;
	z-index: 100;
	width: 100%;
	height:100px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	transition: all .8s;
	background-color: transparent;
}
/* 上部ボタンエリアボタン */
.baseTopBtn {
	width:140px;
	height:100px;
}
.topBtn {
	width:100%;
	height:100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
}
.baseTopBtn img{
	display: block;
}
.baseTopBtn:nth-of-type(1) {
	width:auto !important;
	margin-right: auto;
	margin-left:40px;
}
.baseTopBtn:nth-of-type(1) img{
	height:50%;
	width:auto;	
}
.baseTopBtn:nth-of-type(2) {
	background-color: transparent;
	color:#ffffff;
}
.baseTopBtn:nth-of-type(2) a{
	color:#ffffff;
}
.baseTopBtn:nth-of-type(3) {
	background-color: #ffffff;
	color:#333333;
}
.baseTopBtn:nth-of-type(3) a{
	color:#333333;
}
.baseTopBtn:nth-of-type(3) img{
	height:25%;
	width:auto;
	margin-bottom: 5px;
}
/* メニューボタン×　*/
.openbtn{
	position: relative;
	width: 30%;
  height:25%;
	cursor: pointer;
}
.openbtn span{
	display: inline-block;
	transition: all .5s;
	position: absolute;
	left: 0px;
	height: 2px;
	background-color: #ffffff;
}
.openbtn span:nth-of-type(1) {
	top:0px;	
  width: 80%;
	left:0px;
	right:0px;
	margin:auto;
}

.openbtn span:nth-of-type(2) {
	top:15px;
	left:0px;
	right:0px;
	margin:auto;
  width:80%;
}
.openbtn.active span:nth-of-type(1) {
	top: 0px;
	transform: translateY(8px) rotate(-45deg);
	width: 80%;
}

.openbtn.active span:nth-of-type(2) {
	top: 16px;
	transform: translateY(-8px) rotate(45deg);
	width: 80%;
}
/* モバイルメニューエリア */
#areaMenuMobile {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 90;
	background-color: #333333;
	text-align: center;
	transition: all 0.8s;
}
#areaMenuMobile ul {
	padding: 100px 10px 0;
}
#areaMenuMobile ul li {
	border-bottom: solid 1px #ffffff;
	list-style: none;
}
#areaMenuMobile ul li a {
	display: block;
	width: 100%;
	font-size: 14px;
	box-sizing: border-box;
	color:#ffffff;
	padding: 9px 15px 10px 0;
	position: relative;
}
#areaMenuMobile ul li a::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 2px #ffffff;
	border-right: solid 2px #ffffff;
	transform: rotate(45deg);
	position: absolute;
	right: 11px;
	top: 16px;
}

/* Contactエリア　*/
#areaContact {
	background-color:rgba(50,169,156,0.7);
	padding-top:80px;
	padding-bottom:80px;
	text-align: center;
}
#rowContact {
	width:1000px;
	margin-top:50px;
	margin-left:auto;
	margin-right:auto;
	display:flex;
	flex-direction: row;
	justify-content: center;
}
.baseColContact {
	width:48%;
	height:150px;
}
.colContact {
	width:100%;
	height:100%;
	border:solid #ffffff 2px;
	display:flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#rowTel,
#rowMail {
	display:flex;
	flex-direction: row;
	align-items: center;
}
#rowTel img{
	display: block;
	height:40px;
	width: auto;
	margin-right:10px;
}
#rowMail img{
	display: block;
	height:30px;
	width: auto;
	margin-top:5px;
	margin-right:10px;
}
#telText {
	line-height: 40px;
	font-size:30px;
	font-weight: 900;
	letter-spacing: 5px;
}
#rowEigyo {
	line-height: 40px;
	font-size:20px;
	font-weight: 500;
	letter-spacing: 2px;
}
#contactText,
#mailText {
	line-height: 40px;
	font-size:25px;
	font-weight: 500;
	letter-spacing: 2px;
}
/* フッターエリア　*/
#areaFooter {
	width:100%;
	padding-top:80px;
	padding-bottom:80px;
	background-color: #333333;
	color:#ffffff;
	display:flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;	
}
#areaFooter img{
	display: block;
	height:60px;
}
#areaFooterMenu {
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	font-size:14px;
	margin-top:30px;
	margin-bottom:40px;
}
#areaFooterMenu span{
	margin-left:20px;	
}
#areaFooterMenu span:first-child{
	margin-left:0px;
}
#copyright {
	font-size:12px;
}
.fuwatAnime {
	 -webkit-animation-fill-mode:both;
	 -ms-animation-fill-mode:both;
	 animation-fill-mode:both;
	 -webkit-animation-duration:1s;
	 -ms-animation-duration:1s;
	 animation-duration:1s;
	 -webkit-animation-name: fuwatAnime;
	 -ms-animation-name: fuwatAnime;
	 animation-name: fuwatAnime;
	 visibility: visible !important;
}
@-webkit-keyframes fuwatAnime {
	 0% { opacity: 0; -webkit-transform: translateY(40px); }
	 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fuwatAnime {
	 0% { opacity: 0; -webkit-transform: translateY(40px); -ms-transform: translateY(40px); transform: translateY(40px); }
	 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}

/* rightImageエリア */
.base2Column {
	width:100%;
	padding-bottom: 150px;
	position:relative;
}
.areaLeftGray {
	width:60%;
	position:relative;
	z-index:20;
	top:0;
	left:0;
	background-color: #333333;
}
.areaRightImg {
	width:60%;
	height:80%;
	position:absolute;
	z-index:10;
	bottom:0;
	right:0;
	background-size: 120% auto;
	background-repeat: no-repeat;
	background-position: center center;
}
.areaText {
	width:80%;
	margin-left:auto;
	margin-right:auto;
	padding-top:100px;
	padding-bottom:100px;
}
/***************/
/*　トップページ　*/
/***************/

/* トップ画像エリア　*/
#baseTop {
	position:relative;
	width:100%;
	height:100vh;
}
#topBack {
	position:absolute;
	z-index:10;
	top:0;
	right:0;
	width:100%;
	height:100%;
}
#imgTop {
	position: absolute;
	z-index: 20;
	top:0;
	left:0;
	width:80%;
	height:87%;
	background-image:url("../img/imgTop.jpg");
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center center;
	
}
#imgTopOver {
	position: absolute;
	z-index: 30;
	top:0;
	left:0;
	width:80%;
	height:87%;
	transform-origin: top right;
	transition: transform 0.8s;
	background-color:#333333;
}
#fontTop {
	position: absolute;
	z-index: 40;
	top:0;
	bottom:0;
	right:150px;
	margin-top:auto;
	margin-bottom:auto;
	/* width:600px; */
	width:800px;
	height:400px;
	text-align: right;
}
#fontTopOver {
	position: absolute;
	z-index: 50;
	top:0;
	bottom:0;
	right:150px;
	margin-top:auto;
	margin-bottom:auto;
	/* width:600px; */
	width:800px;
	height:400px;
	transform-origin: top right;
	transition: transform 0.8s;
	background-color:#333333;
}
#fontTopAlfa {
	font-family: "roboto";
	font-size:75px;
	line-height: 85px;
	letter-spacing: 8px;
}
#fontTopSub {
	/* font-size:23px; */
	font-size:20px;
	font-weight: 500;
	line-height:50px;
	letter-spacing: 3px;
}
#fontTopDetail {
	font-size:20px;
	font-weight: 500;
	line-height:40px;
	letter-spacing: 3px;
}
#btnTop {
	background-color: #32a99c;
	/* width:100%; */
	width:75%;
	line-height: 65px;
	text-align: center;
	margin-top:30px;
	margin-left:auto;
	letter-spacing: 3px;
	font-size:20px;
	font-weight: 500;
}
#scrollDown {
  display: block;
  position: absolute;
  left: 100px;
  bottom: 0;
  z-index: 60;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #333333;
	font-family: "roboto";
  font-size: 12px;
  line-height: 1;
  letter-spacing: 2px;
  writing-mode: vertical-lr;
}
#scrollDown::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #333;
}
#scrollDown::after {
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* 画像エリア　*/
#baseImg {
	width:100%;
	margin-top:100px;
	padding-bottom:100px;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}
.areaImg {
	width:25%;
	position:relative;
	
}
.areaImg img{
	display:block;
	width:100%;
	height:auto;
	margin-bottom: 20px;
}
.fontImgOver {
	position:absolute;
	z-index: 10;
	top:-10px;
	left:-50px;
	color:rgba(50,169,156,0.5);
	font-family: "roboto";
	font-size:120px;
}
/* entryエリア　*/
#baseImgEntry {
	width:100%;
	display: flex;
	flex-direction: row;
}
.baseColImgEntry {
	width:50%;
	height:400px;
}
.colImgEntry {
	width:100%;
	height:100%;
	position:relative;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center center;
	transition: all 0.8s
}

.colImgEntry:hover {
	background-size: 120% auto;
}
.areaFontEntry1 {
	position:absolute;
	z-index:10;
	width:100%;
	line-height:400px;
	color:rgba(50,169,156,0.5);
	font-family: "roboto";
	font-size:100px;
	text-align: center;
}
.areaFontEntry2 {
	position:absolute;
	z-index:20;
	width:100%;
	height:100%;
	display:flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	letter-spacing: 2px;
	line-height: 60px;
}
.fontEntry1 {
	font-family: "roboto";
	font-size:50px;
}
.fontEntry2 {
	font-family: "NotoSansJP";
	font-weight: 500;
	font-size:20px;
}
/* Newsエリア　*/
#areaNews {
	display: flex;
	flex-direction: row;
	justify-content:space-between;
	width:1000px;;
	margin-left:auto;
	margin-right: auto;
	margin-top:100px;
	padding-bottom:100px;
}
#colNewsLeft {
	width:20%;
}
#colNewsRight {
	width:75%;
}
.rowDetailNews {
	width:100%;
	line-height:40px;
	display:flex;
	flex-direction: row;
	justify-content: space-around;
	border-bottom:solid #333333 1px;
}
#detailNews {
	width:97.7%;
	padding-bottom:20px;
	margin-bottom:20px;
	/*border-bottom:solid #32a99c 1px;*/
}
#detailNewsText {
	width:98%;
	margin-left:auto;
	margin-right:auto;
	padding-top:10px;
	white-space: pre-wrap;
}
#listNews {
	overflow-y:scroll;
	overflow-x: hidden;
	width:100%;
	height:400px;
	display:flex;
	flex-direction: column;
}
.rowNews {
	width:100%;
	line-height:55px;
	display:flex;
	flex-direction: row;
	justify-content: space-around;
	border-bottom:solid #333333 1px;
}
.colDay {
	width:20%;
} 
.colTitle {
	width:10%;
	font-size:12px;
	font-weight: 700;
}
.colText {
	width:65%;
	word-wrap: break-word;
}

/*******************/
/*　トップページ以外　*/
/*******************/
#baseTopOther {
	position:relative;
	width:100%;
	height:70vh;
}
#topBackOther {
	position:absolute;
	z-index:10;
	top:0;
	right:0;
	width:80%;
	height:100%;
}
#fontTopOther {
	position: absolute;
	z-index: 40;
	top:0;
	bottom:0;
	margin:auto;
	right:150px;
	width:600px;
	height:140px;
	text-align: right;
}
#imgTopOther {
	position: absolute;
	z-index: 20;
	top:0;
	left:0;
	width:80%;
	height:85%;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center center;
}
/***************/
/*　サービスページ　*/
/***************/
#areaPrice {
	width:600px;
	margin-top:50px;
	margin-left:auto;
	margin-right: auto;
}
#areaPrice dl{
	width:100%;
	display: flex;
  flex-wrap: wrap;
	background-color: rgba(255,255,255,0.6);
	padding:20px;
}

#areaPrice dt{
	width:70%;
	margin: 0 0 15px 0;
	padding: 0 0 5px 0;
	border-bottom:solid #333333 1px;
}
#areaPrice dd{
	width:30%;
	margin: 0 0 15px 0;
	padding: 0 0 5px 0;
	border-bottom:solid #333333 1px;
	text-align: right;
}
#areaToEntry {
	width:60%;
	position:relative;
}
#textToEntry {
	width:80%;
	margin-left:auto;
	margin-right:auto;
	padding-top:50px;
	padding-bottom:30px;
}
/**************************/
/*　ワーカーエントリーページ　*/
/**************************/
#workerEntry {
	width:700px;
	margin:50px auto 100px auto;
	background-color: rgba(255,255,255,0.6);
	padding:30px;	
}
#workerEntry dl{
	width:100%;
	display: flex;
  flex-wrap: wrap;
}
#workerEntry dt{
	width:30%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#workerEntry dd{
	width:70%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#workerEntry input[type="text"]{
	height:25px;
	border:solid 1px #666666;
	width:70%;
	margin: 0 0 5px 0;
}
#workerEntry input[type="text"]#lastname,
#workerEntry input[type="text"]#firstname,
#workerEntry input[type="text"]#lastname_kana,
#workerEntry input[type="text"]#firstname_kana{
	width:38%;
}
#workerEntry input[type="text"]#postal_code{
	width:28%;
}
#workerEntry input[type="text"]#state{
	width:28%;
}
#workerEntry input[type="text"]#tel1{
	width:38%;
}
#workerEntry select#introduced_flg{
	border:solid 1px #666666;
	width:50%;
	margin: 0 0 5px 0;
}
#workerEntry textarea{
	border:solid 1px #666666;
	width:98%;
}
#chkAgree {
	margin-right:10px;
}
#workerEntry input[type="button"]{
	background-color: #32a99c;
	color:#ffffff;
	text-align: center;
	line-height:50px;
	width:100%;
	border:none;
	margin:30px 0 30px 0;
}
#workerEntry input[type="button"]#searchAddress{
	line-height:25px;
	width:25%;
	margin:0 0 0 20px;
}
#workerEntry input[type="button"]:hover {
	cursor:pointer;
}
#agreeTerms {
	text-align: center;
}

/**************************/
/*　企業エントリーページ　*/
/**************************/
#companyEntry {
	width:700px;
	margin:50px auto 100px auto;
	background-color: rgba(255,255,255,0.6);
	padding:30px;	
}
#companyEntry dl{
	width:100%;
	display: flex;
  flex-wrap: wrap;
}
#companyEntry dt{
	width:30%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#companyEntry dd{
	width:70%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#companyEntry input[type="text"]{
	height:25px;
	border:solid 1px #666666;
	width:70%;
	margin: 0 0 5px 0;
}
#companyEntry input[type="text"]#department_name{
	width:38%;
}
#companyEntry input[type="text"]#lastname,
#companyEntry input[type="text"]#firstname,
#companyEntry input[type="text"]#lastname_kana,
#companyEntry input[type="text"]#firstname_kana{
	width: 38%;
}
#companyEntry input[type="text"]#postal_code{
	width:28%;
}
#companyEntry input[type="text"]#state{
	width:28%;
}
#companyEntry input[type="text"]#tel1{
	width:38%;
}
#companyEntry select#introduced_flg{
	border:solid 1px #666666;
	width:50%;
	margin: 0 0 5px 0;
}
#companyEntry select#status{
	border:solid 1px #666666;
	width:25%;
	margin: 0 0 5px 0;
}
#companyEntry textarea{
	border:solid 1px #666666;
	width:98%;
}
#chkAgree {
	margin-right:10px;
}
#companyEntry input[type="button"]{
	background-color: #32a99c;
	color:#ffffff;
	text-align: center;
	line-height:50px;
	width:100%;
	border:none;
	margin:30px 0 30px 0;
}
#companyEntry input[type="button"]#searchAddress{
	line-height:25px;
	width:25%;
	margin:0 0 0 20px;
}
#companyEntry input[type="button"]:hover {
	cursor:pointer;
}
/***********************************/
/*　書籍セミナー情報エントリーページ　*/
/***********************************/
#bookSeminarEntry {
	width:700px;
	margin:50px auto 100px auto;
	background-color: rgba(255,255,255,0.6);
	padding:30px;	
}
#bookSeminarEntry dl{
	width:100%;
	display: flex;
  flex-wrap: wrap;
}
#bookSeminarEntry dt{
	width:30%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#bookSeminarEntry dd{
	width:70%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#bookSeminarEntry input[type="text"]{
	height:25px;
	border:solid 1px #666666;
	width:70%;
	margin: 0 0 5px 0;
}
#bookSeminarEntry input[type="text"]#lastname,
#bookSeminarEntry input[type="text"]#firstname,
#bookSeminarEntry input[type="text"]#lastname_kana,
#bookSeminarEntry input[type="text"]#firstname_kana{
	width:38%;
}
#bookSeminarEntry input[type="text"]#postal_code{
	width:28%;
}
#bookSeminarEntry input[type="text"]#state{
	width:28%;
}
#bookSeminarEntry input[type="text"]#tel1{
	width:38%;
}
#bookSeminarEntry input[type="text"]#department_name{
	width:38%;
}
#bookSeminarEntry select#introduced_flg{
	border:solid 1px #666666;
	width:50%;
	margin: 0 0 5px 0;
}
#bookSeminarEntry textarea{
	border:solid 1px #666666;
	width:98%;
}
#chkAgree {
	margin-right:10px;
}
#bookSeminarEntry input[type="button"]{
	background-color: #32a99c;
	color:#ffffff;
	text-align: center;
	line-height:50px;
	width:100%;
	border:none;
	margin:30px 0 30px 0;
}
#bookSeminarEntry input[type="button"]#searchAddress{
	line-height:25px;
	width:25%;
	margin:0 0 0 20px;
}
#bookSeminarEntry input[type="button"]:hover {
	cursor:pointer;
}
#agreeTerms {
	text-align: center;
}
/**************************/
/*　ワーカー確認ページ　*/
/**************************/
.lastname {
	margin: 0 22px 0 0;
	font-weight: 500;
}
.firstname {
	margin: 0 22px 0 0;
	font-weight: 500;
}
#workerConfirm {
	width:700px;
	margin:50px auto 100px auto;
	background-color: rgba(255,255,255,0.6);
	padding:30px;	
}
#workerConfirm dl{
	width:100%;
	display: flex;
  	flex-wrap: wrap;
}
#workerConfirm dt{
	width:30%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#workerConfirm dd{
	width:70%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#workerConfirm #lastname{
	width:38%;
}
#workerConfirm #lastname_kana{
	width:38%;
}
#workerConfirm #firstname{
	width:38%;
}
#workerConfirm #firstname_kana{
	width:38%;
}
#areaConfirmBtn {
	width:100%;
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
#areaConfirmBtn input[type="button"]{
	width:35%;
	background-color: #32a99c;
	border:none;
	text-align: center;
	line-height:50px;
	color:#ffffff;
	margin:30px 0px 30px 0px;
}
#areaConfirmBtn input[type="button"]#back{
	margin-left:auto;
}
#areaConfirmBtn input[type="button"]:hover{
	cursor: pointer;
}

/**************************/
/*　企業確認ページ　*/
/**************************/
#companyConfirm {
	width:700px;
	margin:50px auto 100px auto;
	background-color: rgba(255,255,255,0.6);
	padding:30px;	
}
#companyConfirm dl{
	width:100%;
	display: flex;
  	flex-wrap: wrap;
}

#companyConfirm dt{
	width:30%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#companyConfirm dd{
	width:70%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#companyConfirm #lastname{
	width:38%;
}
#companyConfirm #lastname_kana{
	width:38%;
}
#companyConfirm #firstname{
	width:38%;
}
#companyConfirm #firstname_kana{
	width:38%;
}
#companyConfirm #homepage_url{
	overflow-wrap: break-word;
}
/*****************************/
/*　書籍セミナー情報確認ページ　*/
/*****************************/
#bookSeminarConfirm {
	width:700px;
	margin:50px auto 100px auto;
	background-color: rgba(255,255,255,0.6);
	padding:30px;	
}
#bookSeminarConfirm dl{
	width:100%;
	display: flex;
  	flex-wrap: wrap;
}
#bookSeminarConfirm dt{
	width:30%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#bookSeminarConfirm dd{
	width:70%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#bookSeminarConfirm #lastname{
	width:38%;
}
#bookSeminarConfirm #lastname_kana{
	width:38%;
}
#bookSeminarConfirm #firstname{
	width:38%;
}
#bookSeminarConfirm #firstname_kana{
	width:38%;
}
/**************************/
/*　ワーカー一覧ページ　*/
/**************************/
#areaWorker {
	width:800px;
	margin-left:auto;
	margin-right:auto;
	padding:50px 0px 100px 0px;
}
.rowWorkerId {
	width:100%;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.rowWorker {
	width:100%;
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.lblName {
	width:8%;
	display:inline-block;
}
.rowWorkerId input[type="number"]{
	width:15%;
	height:35px;
	text-align: right;
	margin:0 0 0 23px;
}
.rowWorker input[type="text"]{
	width:60%;
	height:35px;
}
.rowWorker input[type="button"]{
	width:23%;
	height:40px;
	background-color: #32a99c;
	border:none;
	text-align: center;
	color:#ffffff;
}
.rowWorker input[type="button"]#btnCsv{
	margin-left:191px;
}
.rowWorker input[type="button"]:hover{
	cursor: pointer;
}
#lblKensu {
	margin-left:10px;
}
#baseListWorker {
	background-color: rgba(255,255,255,0.6);
	margin-top:20px;
}
#listWorkerTitle {
	width:130%;
	display:flex;
	flex-direction: column;
	margin-top:10px;
}
#listWorker {
	overflow-y:scroll;
	overflow-x: hidden;
	width: 818px;
	height:600px;
	display:flex;
	flex-direction: column;
}
.rowListWorker {
	width: 800px;
	display:flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	border-bottom:solid #333333 1px;
	padding:10px 0px 10px 0px;
}
.rowListWorker span,
.rowListWorkerTitle span{
	display: inline-block;
}
.rowListWorker input[type="text"]{
	height:30px;
}
.workerChk {
	width:5%;
}
.workerNo {
	width:5%;
	text-align: right;
	border:none;
	background-color: transparent;
}
.workerId {
	width:5%;
	text-align: right;
	border:none;
	background-color: transparent;
	margin-right:20px;
}
.workerNo:focus,
.workerStatus:focus {
	outline:none !important;
}
.workerNm {
	width:20%;
}
.workerNmKana {
	width:25%;
}
.workerMail {
	width:40%;
	word-wrap: break-word;
}
.workerStatus {
	width:10%;
	text-align: center;
	border:none;
	background-color: transparent;
}
.rowListWorkerTitle {
	width: 800px;
	line-height:40px;
	display:flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	font-size: 0.7rem;
	background-color: #666666;
}
.workerTitle {
	text-align: center;
	color:#ffffff;
}
.workerChkTitle {
	width:5%;
}
.workerNoTitle,
.workerIdTitle {
	width:5%;
}
.workerNmTitle {
	width:10%;
	margin-left: 20px;
}
.workerNmKanaTitle {
	width:25%;
	margin-left: 40px;
}
.workerMailTitle {
	width:40%;

}
.workerStatusTitle {
	width:8%;
	margin-left: 60px;
}
/**************************/
/*　企業一覧ページ　*/
/**************************/
#areaCompanies {
	width:800px;
	margin-left:auto;
	margin-right:auto;
	padding:50px 0px 100px 0px;
}
.rowCompany {
	width:100%;
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.lblName {
	width:10%;
	display:inline-block;
}
.rowCompany input[type="text"]{
	width:60%;
	height:35px;
}
.rowCompany input[type="button"]{
	width:23%;
	height:40px;
	background-color: #32a99c;
	border:none;
	text-align: center;
	color:#ffffff;
}
.rowCompany input[type="button"]#csv{
	margin-left:191px;
}
.rowCompany input[type="button"]:hover{
	cursor: pointer;
}
#lblKensu {
	margin-left:10px;
}
#baseListCompany {
	background-color: rgba(255,255,255,0.6);
	margin-top:20px;
}
#listCompanyTitle {
	width:105%;
	display:flex;
	flex-direction: column;
	margin-top:10px;
}
#listCompany {
	overflow-y:scroll;
	overflow-x: hidden;
	width: 818px;
	height:600px;
	display:flex;
	flex-direction: column;
}
.rowListCompany {
	width: 800px;
	display:flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	table-layout: fixed;
	border-bottom:solid #333333 1px;
	padding:10px 0px 10px 0px;
}
.rowListCompany span,
.rowListCompanyTitle span{
	display: inline-block;
}
.rowListCompany input[type="text"]{
	height:30px;
}
.companyChk {
	width: 5%;
}
.companyNo {
	width: 3%;
	text-align: right;
	border:none;
	background-color: transparent;
}
.companyId {
	width: 4%;
	text-align:right;
	border:none;
	background-color: transparent;
	margin-right:10px;
}
.companyNo:focus,
.companyStatus:focus {
	outline:none !important;
}
.companyNm {
	width: 25%;
	word-wrap: break-word;
}
.companypersonnelNm {
	width: 15%;
}
.companyMail {
	width: 30%;
	word-wrap: break-word;
}
.companyStatus {
	width: 8%;
	text-align: center;
	border:none;
	background-color: transparent;
}
.rowListCompanyTitle {
	width: 800px;
	line-height:40px;
	display:flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	font-size: 0.7rem;
	background-color: #666666;
}
.companyTitle {
	text-align: center;
	color:#ffffff;
}
.companyChkTitle {
	width:6%;
}
.companyNoTitle,
.companyIdTitle {
	width:6%;
}
.companyNmTitle,
.companypersonnelNmTitle {
	width:27%;
}
.companyMailTitle {
	width:40%;
}
.companyStatusTitle {
	width:9%;
}
/**************************/
/*　書籍セミナー一覧ページ　*/
/**************************/
#areaBookSeminar {
	width:800px;
	margin-left:auto;
	margin-right:auto;
	padding:50px 0px 100px 0px;
}
.rowBookSeminarId {
	width:100%;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.rowBookSeminarName {
	width:100%;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.rowBookSeminarDate {
	width:100%;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.rowBookSeminarStatus {
	width:100%;
	display:flex;
	flex-direction: row;
	align-items: center;
}
.rowBookSeminar {
	width:100%;
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.lblName {
	width:10%;
	display:inline-block;
}
.rowBookSeminarId input[type="number"]{
	width:15%;
	height:35px;
	text-align: right;
	margin:0 0 0 23px;
}
.rowBookSeminarName input[type="text"]{
	width:60%;
	height:35px;
	margin:0 0 0 23px;
}
.rowBookSeminarDate input[type="date"]{
	width:20%;
	height:35px;
	margin:0 0 0 23px;
}
.rowBookSeminarStatus select{
	width:20%;
	height:35px;
	margin:0 350px 0 28px;
}
.rowBookSeminarStatus input[type="button"]{
	width:23%;
	height:40px;
	right: 0px;
	background-color: #32a99c;
	border:none;
	text-align: center;
	color:#ffffff;
}
.rowBookSeminarStatus input[type="button"]:hover{
	cursor: pointer;
}
.rowBookSeminar input[type="button"]{
	width:23%;
	height:40px;
	background-color: #32a99c;
	border:none;
	text-align: center;
	color:#ffffff;
}
.rowBookSeminar input[type="button"]#btnCsv{
	margin-left:191px;
}
.rowBookSeminar input[type="button"]:hover{
	cursor: pointer;
}
#lblKensu {
	margin-left:10px;
}
#baseListBookSeminar {
	background-color: rgba(255,255,255,0.6);
	margin-top:20px;
}
#listBookSeminarTitle {
	width:130%;
	display:flex;
	flex-direction: column;
	margin-top:10px;
}
#listBookSeminar {
	overflow-y:scroll;
	overflow-x: hidden;
	width: 818px;
	height:600px;
	display:flex;
	flex-direction: column;
}
.rowListBookSeminar {
	width: 800px;
	display:flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	border-bottom:solid #333333 1px;
	padding:10px 0px 10px 0px;
}
.rowListBookSeminar span,
.rowListBookSeminarTitle span{
	display: inline-block;
}
.rowListBookSeminar input[type="text"]{
	height:30px;
}
.bookSeminarChk {
	width:5%;
}
.bookSeminarNo {
	width:5%;
	text-align: right;
	border:none;
	background-color: transparent;
}
.bookSeminarId {
	width:5%;
	text-align: right;
	border:none;
	background-color: transparent;
	margin-right:20px;
}
.bookSeminarNo:focus,
.bookSeminarStatus:focus {
	outline:none !important;
}
.bookSeminarNm {
	width:20%;
}
.bookSeminarNmKana {
	width:25%;
}
.bookSeminarCreateDatetime {
	width:40%;
	word-wrap: break-word;
}
.bookSeminarStatus {
	width:10%;
	text-align: center;
	border:none;
	background-color: transparent;
}
.rowListBookSeminarTitle {
	width: 800px;
	line-height:40px;
	display:flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	font-size: 0.7rem;
	background-color: #666666;
}
.bookSeminarTitle {
	text-align: center;
	color:#ffffff;
}
.bookSeminarChkTitle {
	width:5%;
}
.bookSeminarNoTitle,
.bookSeminarIdTitle {
	width:5%;
}
.bookSeminarNmTitle {
	width:10%;
	margin-left: 20px;
}
.bookSeminarNmKanaTitle {
	width:25%;
	margin-left: 40px;
}
.bookSeminarCreateDatetimeTitle {
	width:40%;

}
.bookSeminarStatusTitle {
	width:8%;
	margin-left: 60px;
}
/**************************/
/*　お知らせ一覧ページ　*/
/**************************/
#areaInfo {
	width:900px;
	margin-left:auto;
	margin-right:auto;
	padding:50px 0px 100px 0px;
}
.rowInfo {
	width:100%;
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.lblStartDate {
	width:11%;
	display:inline-block;
}
.rowInfo input[type="text"]{
	width:15%;
	height:30px;
}
.rowInfo input[type="button"]{
	width:20%;
	height:40px;
	background-color: #32a99c;
	border:none;
	text-align: center;
	color:#ffffff;
}
.rowInfo input[type="button"]#edit{
	margin-left:509px;
}
.rowInfo input[type="button"]:hover{
	cursor: pointer;
}
#lblKensu {
	margin-left:10px;
}
#baseListInfo {
	background-color: rgba(255,255,255,0.6);
	margin-top:20px;
}
#listInfoTitle {
	width:102%;
	display:flex;
	flex-direction: column;
	margin-top:10px;
}
#listInfo {
	overflow-y:scroll;
	overflow-x: hidden;
	width: 918px;;
	height:600px;
	display:flex;
	flex-direction: column;
}
.rowListInfo {
	width: 900px;
	display:flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	table-layout: fixed;
	border-bottom:solid #333333 1px;
	padding:10px 0px 10px 0px;
}
.rowListInfo span,
.rowListInfoTitle span{
	display: inline-block;
}
.rowListInfo input[type="text"]{
	height:30px;
}
.infoChk {
	width:5%;
}
.infoNo,
.infoId {
	width: 50px;
	text-align: right;
	border:none;
	background-color: transparent;
}
.infoType {
	width: 100px;
	margin: 0 0 0 20px;
}
.infoSubject {
	width: 350px;
	word-wrap: break-word;
}
.infoStart {
	width: 200px;
}
.infoEnd {
	width: 200px;
}
.rowListInfoTitle {
	width:900px;
	line-height:40px;
	display:flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	font-size: 0.7rem;
	background-color: #666666;
}
.infoTitle {
	text-align: center;
	color:#ffffff;
}
.infoChkTitle {
	width:50px;
}
.infoNoTitle,
.infoIdTitle {
	width: 50px;
}
.infoTypeTitle {
	width: 110px;
}
.infoSubjectTitle {
	width: 350px;
}
.infoStartTitle {
	width: 210px;
}
.infoEndTitle {
	width: 220px;
}
/**************************/
/*　会員編集ページ　		*/
/**************************/
.sizeKome {
	font-size:12px;
}
.name {
	margin: 0 5px 0 0;
	font-weight: 500;
}
#editWorker {
	width:700px;
	margin:50px auto 100px auto;
	background-color: rgba(255,255,255,0.6);
	padding:30px;	
}
#editWorker dl{
	width:100%;
	display: flex;
  	flex-wrap: wrap;
}
#editWorker dt{
	width:30%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#editWorker dd{
	width:70%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#editWorker input[type="text"]{
	height:25px;
	border:solid 1px #666666;
	width:70%;
	margin: 0 0 5px 0;
}
#editWorker input[type="text"]#lastname,
#editWorker input[type="text"]#firstname,
#editWorker input[type="text"]#lastname_kana,
#editWorker input[type="text"]#firstname_kana{
	width:38%;
}
#editWorker input[type="text"]#postal_code{
	width:25%;
}
#editWorker input[type="text"]#state{
	width:25%;
}
#editWorker input[type="text"]#tel1,
#editWorker input[type="text"]#tel2{
	width:35%;
}
#editWorker select#introduced_flg{
	border:solid 1px #666666;
	width:50%;
	margin: 0 0 5px 0;
}
#editWorker select#status{
	border:solid 1px #666666;
	width:25%;
	margin: 0 0 5px 0;
}
#editWorker textarea{
	border:solid 1px #666666;
	width:70%;
}
#editWorker a{
	color:#333333;
}
#editWorker input[type="button"]{
	background-color: #32a99c;
	color:#ffffff;
	text-align: center;
	line-height:50px;
	width:35%;
	border:none;
	margin:30px 0 30px 0;
}
#editWorker input[type="button"]#searchAddress{
	line-height:25px;
	width:25%;
	margin:0 0 0 20px;
}
#editWorker input[type="button"]#bk{
	margin-left:157px;
}
#editWorker input[type="button"]:hover {
	cursor:pointer;
}
#areaEditBtn {
	width:100%;
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
#areaEditBtn input[type="button"]{
	width:35%;
	background-color: #32a99c;
	border:none;
	text-align: center;
	line-height:50px;
	color:#ffffff;
	margin:30px 0px 30px 0px;
}
#areaEditBtn input[type="button"]#back{
	margin-left:auto;
}
#areaEditBtn input[type="button"]:hover{
	cursor: pointer;
}
/**************************/
/*　企業編集ページ　		*/
/**************************/
#editCompany {
	width:700px;
	margin:50px auto 100px auto;
	background-color: rgba(255,255,255,0.6);
	padding:30px;	
}
#editCompany dl{
	width:100%;
	display: flex;
  	flex-wrap: wrap;
}
#editCompany dt{
	width:30%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#editCompany dd{
	width:70%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#editCompany input[type="text"]{
	height:25px;
	border:solid 1px #666666;
	width:70%;
	margin: 0 0 5px 0;
}
#editCompany input[type="text"]#postal_code{
	width:25%;
}
#editCompany input[type="text"]#state{
	width:25%;
}
#editCompany input[type="text"]#tel1,
#editCompany input[type="text"]#tel2{
	width:35%;
}
#editCompany input[type="text"]#department_name{
	width:35%;
}
#editCompany input[type="text"]#lastname,
#editCompany input[type="text"]#firstname,
#editCompany input[type="text"]#lastname_kana,
#editCompany input[type="text"]#firstname_kana{
	width:38%;
}
#editCompany select#introduced_flg{
	border:solid 1px #666666;
	width:50%;
	margin: 0 0 5px 0;
}
#editCompany select#status{
	border:solid 1px #666666;
	width:25%;
	margin: 0 0 5px 0;
}
#editCompany textarea{
	border:solid 1px #666666;
	width:70%;
}
#editCompany a{
	color:#333333;
}
#editCompany input[type="button"]{
	background-color: #32a99c;
	color:#ffffff;
	text-align: center;
	line-height:50px;
	width:35%;
	border:none;
	margin:30px 0 30px 0;
}
#editCompany input[type="button"]#searchAddress{
	line-height:25px;
	width:25%;
	margin:0 0 0 20px;
}
#editCompany input[type="button"]#back{
	margin-left:157px;
}
#editCompany input[type="button"]:hover {
	cursor:pointer;
}
/**************************/
/*　書籍セミナー編集ページ　*/
/**************************/
#editBookSeminar {
	width:700px;
	margin:50px auto 100px auto;
	background-color: rgba(255,255,255,0.6);
	padding:30px;	
}
#editBookSeminar dl{
	width:100%;
	display: flex;
  	flex-wrap: wrap;
}
#editBookSeminar dt{
	width:30%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#editBookSeminar dd{
	width:70%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#editBookSeminar input[type="text"]{
	height:25px;
	border:solid 1px #666666;
	width:70%;
	margin: 0 0 5px 0;
}
#editBookSeminar input[type="text"]#lastname,
#editBookSeminar input[type="text"]#firstname,
#editBookSeminar input[type="text"]#lastname_kana,
#editBookSeminar input[type="text"]#firstname_kana{
	width:38%;
}
#editBookSeminar select#status{
	border:solid 1px #666666;
	width:25%;
	margin: 0 0 5px 0;
}
#editBookSeminar textarea{
	border:solid 1px #666666;
	width:70%;
}
#editBookSeminar a{
	color:#333333;
}
#editBookSeminar input[type="button"]{
	background-color: #32a99c;
	color:#ffffff;
	text-align: center;
	line-height:50px;
	width:35%;
	border:none;
	margin:30px 0 30px 0;
}
#editBookSeminar input[type="button"]#searchAddress{
	line-height:25px;
	width:25%;
	margin:0 0 0 20px;
}
#editBookSeminar input[type="button"]#bk{
	margin-left:157px;
}
#editBookSeminar input[type="button"]:hover {
	cursor:pointer;
}
/**************************/
/*　お知らせ編集ページ　		*/
/**************************/
#editInfo {
	width:650px;
	margin:50px auto 100px auto;
	background-color: rgba(255,255,255,0.6);
	padding:30px;	
}
#editInfo dl{
	width:100%;
	display: flex;
  	flex-wrap: wrap;
}
#editInfo dt{
	width:30%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#editInfo dd{
	width:70%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom:solid #666666 1px;
}
#editInfo input[type="text"]{
	height:25px;
	border:solid 1px #666666;
	width:70%;
	margin: 0 0 5px 0;
}
#editInfo select{
	border:solid 1px #666666;
	width:30%;
	margin: 0 0 5px 0;
}
#editInfo textarea{
	border:solid 1px #666666;
	width:70%;
}
#editInfo a{
	color:#333333;
}
#editInfo input[type="button"]{
	background-color: #32a99c;
	color:#ffffff;
	text-align: center;
	line-height:50px;
	width:35%;
	border:none;
	margin:30px 0px 30px 0px;
}
#editInfo input[type="button"]#bk{
	margin-left:157px;
}
#editInfo input[type="button"]:hover {
	cursor:pointer;
}
/**************************/
/*　会社概要ページ　					*/
/**************************/
#areaCompany {
	width:600px;
	margin-top:50px;
	margin-left:auto;
	margin-right: auto;
	padding-bottom: 100px;
}
#areaCompany dl{
	width:100%;
	display: flex;
  	flex-wrap: wrap;
	padding:20px;
}
#areaCompany dt{
	width:25%;
	margin: 0 0 15px 0;
	padding: 0 0 5px 0;
	border-bottom:solid #333333 1px;
}
#areaCompany dd{
	width:75%;
	margin: 0 0 15px 0;
	padding: 0 0 5px 0;
	border-bottom:solid #333333 1px;
}
#areaPresident {
	width:100%;
	position: relative;
	background-color: #333333;
	padding:100px 0px 100px 0px;
}
#areaPresident img{
	width:40%;
	height:auto;
	position:absolute;
	bottom:0;
	right:100px;
	z-index:20;
}
#textPresident {
	position:relative;
	width:50%;
	top:0;
	left:100px;
	z-index:10;
	color:#ffffff;
}
.textGreetingHead{
	position: relative;
	font-family: 'NotoSansJP';
	font-size:20px;
	line-height:50px;
	font-weight: 500;
}

/****************************/
/*　書籍／セミナー紹介ページ　 */
/****************************/
#areaBook {
	width:100%;
	position: relative;
	background-color: #333333;
	padding:50px 0px 50px 0px;
}
#areaBook img{
	width:auto;
	height:auto;
	position:absolute;
	z-index:20;
}
#textBook1 {
	position:relative;
	width:15%;
	left:5%;
	z-index:10;
	color:#ffffff;
}
#textBook2 {
	position:relative;
	width:70%;
	left:400px;
	z-index:10;
	color:#ffffff;
}
#textBook3 {
	font-size:18px;
}
#aBookSeminar {
	text-decoration: underline;
	color:#ffdc00;
}
#areaSeminar {
	display:flex;
	width:100%;
	background-color: #333333;
	padding:20px 0px 20px 0px;
}
#areaSeminar img{
	width:auto;
	height:auto;
	z-index:20;
}
#textSeminar1 {
	position:relative;
	width:600px;
	left:5%;
	z-index:10;
	color:#ffffff;
}
#textSeminar2 {
	position:relative;
	width:55%;
	left:5%;
	z-index:10;
	color:#ffffff;
}
#textSeminar3 {
	font-size:18px;
}

#areaAccess iframe{
	width:100%;
	display:block;
}
.googlemap-bw iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
/**************************/
/*　仮登録ページ　*/
/**************************/
#areaEmailEntry {
	width:700px;
	margin:50px auto 100px auto;
	background-color: rgba(255,255,255,0.6);
	padding:30px;	
}
#areaEmailEntry dl{
	width:100%;
	display: flex;
	flex-wrap: wrap;
}
#areaEmailEntry dt{
	width:30%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
}
#areaEmailEntry dd{
	width:70%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
}
#areaEmailEntry input[type="text"]{
	height:25px;
	border:solid 1px #666666;
	width:90%;
}
#areaEmailEntry a{
	color:#32a99c;
}
#areaEmailEntry input[type="button"]{
	background-color: #32a99c;
	color:#ffffff;
	text-align: center;
	line-height:50px;
	width:100%;
	border:none;
	margin:10px 0px 30px 0px;
}
#areaEmailEntry input[type="button"]:hover {
	cursor:pointer;
}

/**************************/
/*  管理者ページ共通      */
/**************************/
#topNavAdmin {
    position:fixed;
	z-index: 100;
	width:100%;
	height:100px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	transition: all .8s;
	background-color: #333333;
	opacity: 0.8;
}
#baseTopAdmin {
	position:relative;
	width:100%;
	height:10vh;
}
.baseTitleAdminCenter {
	position:relative;
	width:100%;
	height:100px;
	margin-top:30px;
	margin-bottom:50px;
	text-align: center;
	font-size:75px;
	line-height: 100px;
	color:rgba(51,51,51,0.2);
	font-family: "roboto";
	letter-spacing: 4px;
}

/**************************/
/*  ログインページ         */
/**************************/
#areaLogin {
	width:450px;
	margin:50px auto 100px auto;
	background-color: rgba(255,255,255,0.6);
	/* padding:30px; */
}
#areaLogin dl{
	width:100%;
	display: flex;
	flex-wrap: wrap;
}
#areaLogin dt{
	width:25%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	/* border-bottom:solid #666666 1px; */
}
#areaLogin dd{
	width:70%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	/* border-bottom:solid #666666 1px; */
}
#areaLogin input[type="text"]{
	height:25px;
	border:solid 1px #666666;
	width: 72%;
}
#areaLogin input[type="password"]{
	height:25px;
	border:solid 1px #666666;
	width:72%;
}
#areaLogin a{
	color:#333333;
}
#areaLogin input[type="submit"]{
	background-color: #32a99c;
	color:#ffffff;
	text-align: center;
	line-height:50px;
	width:232px;
	border:none;
	margin:10px 0px 30px 0px;
}
#areaLogin input[type="submit"]:hover {
	cursor:pointer;
}
#areaLoginSubmit {
	text-align: center;
}

/**************************/
/*  管理者トップページ      */
/**************************/
#adminTop {
	width:800px;
	margin:50px auto 100px auto;
	background-color: rgba(255,255,255,0.6);
}
#adminTop dl{
	width:100%;
	display: flex;
	flex-wrap: wrap;
}

#adminTop dt{
	width:30%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	/* border-bottom:solid #666666 1px; */
}
#adminTop dd{
	width:70%;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	/* border-bottom:solid #666666 1px; */
}

/**************************/
/* 問い合わせページ 		*/
/**************************/
#areaContactInfo {
	width:600px;
	margin-top:50px;
	margin-left:auto;
	margin-right: auto;
	padding-bottom: 100px;
}
#areaContactInfo dl{
	width:100%;
	display: flex;
  	flex-wrap: wrap;
	padding:20px;
}
#areaContactInfo dt{
	width:25%;
	margin: 0 0 15px 0;
	padding: 0 0 5px 0;
	border-bottom:solid #333333 1px;
}
#areaContactInfo dd{
	width:75%;
	margin: 0 0 15px 0;
	padding: 0 0 5px 0;
	border-bottom:solid #333333 1px;
}

/*******************/
/*　エラーページ   　*/
/*******************/
#baseTopEroor {
	position:relative;
	width:100%;
	height:40vh;
}
.areaTextError {
	text-align: center;
	width:100%;
	margin: 0 0 150px 0;
}