@charset "UTF-8";
/* 東和キャスト 上書き（2/3）CSS Document */

/* 共通要素を設定
--------------------------------------------------------------------------------------- */
:root {
--MainColor: #336DAA;
--SubColor: #009882;
--BGColor: #EEE;
--BG-Label-New: red;
--AccentColor: #999;
--A-Color: #37339C;
--A-Hover-Color: #262376;
--navbar-Top-Line: 3px solid #92BCFF;
--Border: 1px solid #DEE2E6;
--BorderDotted: 1px dotted rgba(0, 0, 0, 0.1);
--BodyText: rgb(33, 37, 41);
--navbar-BG-Color-01: #222;
--navbar-BG-Color-02: #FFFBEC;
--navbar-BG-Color-03: #3D3F7D;
--Footer-BG-Color-01: #FFFBEC;
--Footer-BG-Color-02: #222;
--Footer-BG-Color-03: #000;
--Footer-BG-Color-04: #336F2A;
--DropDown-Toggle-Arrow: ""; /* ドロップダウンの▼マーク。ありの時は「""」。無しの時は「none」。 */
--Dropdown-Menu-BG-Color: #FFFBEC; /* ドロップダウンメニューの背景色 */
--Dropdown-ItemHover-BG-Color: #DCE9FF; /* ドロップダウン内ボタンhover時の背景色 */
--Dropdown-Item-TEXT-Color: #606060; /* ドロップダウン内ボタンの文字色 */
--Dropdown-ItemHover-TEXT-Color: #333; /* ドロップダウン内ボタンhover時の文字色 */
--Dropdown-Divider: 1px solid #CCC; /* ドロップダウン内の境界線 */
--Footer-a: #37339C;
--Footer-ListLine: 1px solid rgba(255,255,255,0.2);
}
.hoge {
	color: #FFF8DF;
	background-color: rgba(204,204,204,1.00);
}

/* nav/footerのバリエーションを選択
------------------------------------------------------------------------------------------------- */
#Header-01 {display: none;}
#Header-02 {display: block;}
#Header-03 {display: none;}

/* フッタ上部のページナビ表示/非表示
------------------------------------------------------------------------------------------------- */
#PageNavi {display: block;}

/* フッタのバリエーションを選択
------------------------------------------------------------------------------------------------- */
#Footer-01 {display: block;}
#Footer-02 {display: block;}
#Footer-03 {display: block;}
#Footer-04 {display: block;}

/* PageTopのバリエーションを選択
------------------------------------------------------------------------------------------------- */
#PageTop-01 {display: none;} /* 半透明白背景（丸）に黒い矢印 */
#PageTop-02 {display: none;} /* 半透明グレー背景（角丸矩形）に白い文字 */
#PageTop-03 {display: block;} /* 半透明グレー背景（丸）に白い矢印 */

/* nav
------------------------------------------------------------------------------------------------- */
.navbar-Top-Line {
border-top: var(--navbar-Top-Line);
}
.navbar-BG-Color-01 {background-color: var(--navbar-BG-Color-01);}
.navbar-BG-Color-02 {background-color: var(--navbar-BG-Color-02);}
.navbar-BG-Color-03 {background-color: var(--navbar-BG-Color-03);}

/* 別言語に対する装飾 */
.nav-item .Nav-Lang {
/*display: block;*/
display: none;
font-size: 0.8rem;
color: #999;
text-align: center;
}
/* デスクトップ以下 */
@media (max-width: 991.98px) {
	/* 別言語に対する装飾 */
	.nav-item .Nav-Lang {
	display: inline-block;
	padding-left: 10px;
	}
}

/* TOGGLER
------------------------------------------------------------------------------------------------- */
.navbar-toggler {
padding: 0;
font-size: 1.25rem;
line-height: 1;
background-color: transparent;
border: none;
border-radius: 0;
}
.navbar-dark .navbar-toggler-icon {
background-image: url("../img_com/btn_MainMenu_Open.svg");
}

.navbar-toggler-icon {
width: 2em;
height: 2em;
}

/*--------- アニメーション▽ ---------- */
.navbar-dark .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 0px;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  position: relative;
}
.navbar-dark .navbar-toggler-icon {
  background-image:none; /* この行で背景画像を無効化 */
  background-color: #888; /* 3本線の色 */
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  transition: ease .5s;
}

/* 3本のバーそれぞれの座標を設定 */
.navbar-toggler-icon:nth-of-type(1) {top: 7px;}
.navbar-toggler-icon:nth-of-type(2) {top:14px;}
.navbar-toggler-icon:nth-of-type(3) {top:21px;}

/* メニューが開いている時の　3本のバーそれぞれの座標および角度を設定 */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(1) {
top:13px;
transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(2) {
opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(3) {
top:13px;
transform: rotate(-45deg);
}
/*---------- アニメーション△ ----------*/

/* ドロップダウンメニュー --------------------------------------------------------------------------------------- */
.dropdown-menu {
background-color: var(--Dropdown-Menu-BG-Color);
padding: 0;
}
.dropdown-item {
padding: 0.75rem 1.5rem;
color: var(--Dropdown-Item-TEXT-Color);
}
.dropdown-item:first-child {
border-radius: 0.25rem 0.25rem 0 0;
}
.dropdown-item:last-child {
border-radius: 0 0 0.25rem 0.25rem;
}

.dropdown-item:hover {
background-color: var(--Dropdown-ItemHover-BG-Color);
color: var(--Dropdown-ItemHover-TEXT-Color);
}

.dropdown-divider {
/*margin: 0.5rem 0;*/
margin: 0;
border-top: var(--Dropdown-Divider);
}

/* ドロップダウンの▼マーク bootstrap-4.3.1.css line 3042*/
.dropdown-toggle::after {
content: var(--DropDown-Toggle-Arrow);
/*color: red;*/
}

/*---------- hoverでDropDown表示▽ ----------*/
@media all and (min-width: 992px) {
	/* 初期の表示 */
	.navbar .nav-item .dropdown-menu {
	display: block;
	opacity: 0;
	z-index: -9999;
	transition: all 0.3s 0.0s ease;/*transitionの記述を追加*/
	transform: translate(0,20px); 
	}
	/* Hover時 */
	.navbar .nav-item:hover .dropdown-menu {
	display: block;
	opacity: 100;
	z-index: 9999;
	transition: all 0.5s 0s ease;/*transitionの記述を追加*/
	transform: translate(0,0px); 
	}

	.navbar .nav-item:hover .nav-link{}
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
	}
/*---------- hoverでDropDown表示△ ----------*/

/* ハイライト */
#HOME .nav-HOME a, /* ホーム */
#RECRUITMENTS a.nav-RECRUITMENTS, /* 人材事業 */
	#RECRUITMENTS.light a.DD_LIGHT, /* 人材事業 > 軽作業 */
	#RECRUITMENTS.properly a.DD_PROPERRLY, /* 人材事業 > がっつり稼ぐ */
	#RECRUITMENTS.sameday a.DD_SAMERDAY, /* 人材事業 > 即日採用 */

#INFORMATION .nav-INFORMATION a, /* お知らせ */

#BUSINESS .nav-BUSINESS a,
	#BUSINESS.recruit a.DD_RECRUIT, /* 事業案内 > 人材事業 */
	#BUSINESS .nav-BUSINESS, /* 事業案内 > 不動産事業 */
	#BUSINESS.equipment a.DD_EQUIPMENT, /* 事業案内 > 設備事業 */

#BRANCH .nav-BRANCH a, /* 拠点案内 */
	/* #TOYOTA .nav-BRANCH, 拠点案内 > 豊田 */

#COMPANY .nav-COMPANY a, /* 会社案内 */
#ACCESS .nav-ACCESS a, /* アクセス */
#CONTACT .nav-CONTACT a /* お問合せ */
{
background-color: #CADEFF;
color: #000!important;
}
/* 派遣社員募集 サイドナビのハイライト */
#RECRUITMENTS.properly .List-Add-TextArrow.List-ItemBlock li:nth-child(1),
#RECRUITMENTS.light .List-Add-TextArrow.List-ItemBlock li:nth-child(2),
#RECRUITMENTS.sameday .List-Add-TextArrow.List-ItemBlock li:nth-child(3) {
background-color: #EEE;
}

/* 事業案内 サイドナビのハイライト */
#BUSINESS.recruit .List-Add-TextArrow.List-ItemBlock li.SN_RECRUIT a,
#BUSINESS.equipment .List-Add-TextArrow.List-ItemBlock li.SN_EQUIPMENT a {
background-color: #EEE;
}

/* グループ会社 サイドナビのハイライト */
#BRANCH.toyota .List-Add-TextArrow.List-ItemBlock li.GL_SN_TOYOTA a,
#BRANCH.anjo .List-Add-TextArrow.List-ItemBlock li.GL_SN_ANJO a,
#BRANCH.kariya .List-Add-TextArrow.List-ItemBlock li.GL_SN_KARIYA a {
background-color: #EEE;
}


/* ロゴ --------------------------------------------------------------------------------------- */
/* ヘッダ内のロゴ */
.navbar-brand {
display: block;
margin: 0;
text-indent: -9999px;
width: 238px!important;
height: 52px!important;
background-position: center center;
background-image: url("../img_com/LogoMark.svg");
background-size: 100% auto;
background-repeat: no-repeat;
}
.navbar-brand a {
}
.navbar-brand:hover {
opacity: 0.7;
}

/* モバイル（縦）以下 */ 
@media (max-width: 575.98px) {
	.navbar-brand {
	width: 238px!important;
	height: 52px!important;
	}
}
/* フッタ内のロゴ */
footer .navbar-brand {
width: 185px!important;
height: 48px!important;
}

.navbar-brand-Dark a {
background-image: url("../img_com/LogoMark-Dark.svg");
}

.navbar .navbar-nav {
width: 100%;
display: flex;
justify-content: space-between;
}

.navbar .nav-item {
width: 100%;
flex-grow: 1;
text-align: center;
}
.navbar .nav-link {
border-radius: 4px;
width: 100%!important;
height: 100%!important;
padding-top: 0.5rem!important;
padding-bottom: 0.5rem!important;
color: #606060!important;
}

.navbar .nav-link:hover {
color: rgba(251,251,251,0.50);
background-color: #DCE9FF;
}

/* デスクトップ以下 */
@media (max-width: 991.98px) {
/* プルダウン内 */ 
	.navbar-nav .nav-link {
	margin: 2px 0; 
	text-align: left;
	width: 100%!important;
	height: 100%!important;
	padding: 0.8rem!important;
/*	color: #FFF!important;*/
	}
	.nav-item {
	border-left: none;
	text-align: left;
	border-bottom: 1px solid rgba(255,255,255,0.10);
	}
} 

/* パンくずリストのバリエーション
------------------------------------------------------------------------------------------------- */
.breadcrumb {
margin-top: 0px; /* ヘッダがfixdによるコンテンツ部の余白 */
}
.BreadCrumb-01 {
background-color: transparent!important;
padding: 0!important;
}
.BreadCrumb-01 .breadcrumb-item + .breadcrumb-item::before {
content: "〉";
}

.BreadCrumb-02 li:first-child a:before {
/*家アイコン*/
content: '';
display: inline-block;
width: 1.5rem;
height: 0.9rem;
background-image: url("../img_com/Icon-HOME.svg");
background-size: contain;
background-repeat: no-repeat;
}
.BreadCrumb-02 {
background-color: transparent!important;
padding: 0!important;
}
.BreadCrumb-02 .breadcrumb-item + .breadcrumb-item::before {
/*▶アイコン*/
content: '';
display: inline-block;
width: 1rem;
height: 0.8rem;
background-image: url("../img_com/Icon-Arrow-Gray.svg");
background-size: contain;
background-repeat: no-repeat;
vertical-align: middle;
position: relative;
top: -0.1rem;
left: 0rem;
}

/* コンテンツ --------------------------------------------------------------------------------------- */
/* ヘッダがfixedの時のコンテンツ部の余白 */
.ContentsPadding {
padding-top: 0px;
}

/* ヘッダがfixedの時にアンカーに対する調整 */
.AnchorPadding {
margin-top: -113px;
padding-top: 113px;
}

#Contents-Column {
display: flex;
justify-content: space-between;
margin-bottom: 3rem;
}
#Contents-Narrow {
position: relative;
}
.Contents-NarrowSticky {
position: sticky;
position: -webkit-sticky;
top: 0;
//margin-bottom: 3rem;
}

#Contents-Wide {
//margin-bottom: 3rem;
}

/* タブレット以下 */
@media (max-width: 767.98px) {
	#Contents-Column {
	display: flex;
	flex-direction: column-reverse;
	}
	#Contents-Narrow {
	}
	#Contents-Wide {
	padding-bottom: 4rem;
	margin-bottom: 4rem;
	background-image: url(../img_com/Logo-Border.svg);
	background-position: center bottom;
	background-repeat: no-repeat;
	}
}

/* PageTop --------------------------------------------------------------------------------------- */
.PageTop {
position: fixed;
bottom: 20px;
right: 15px;
display: none;
text-align: center;
}

.PageTop a {
text-indent: -9999px;
display: block;
width: 44px;
height: 44px;
opacity: 0.5;
border-radius: 100px;
background-repeat: no-repeat;
background-position: center center;
}
.PageTop.PageTop-Text a {
width: auto;
height: auto;
color: #FFF;
line-height: 1;
padding: 15px;
text-indent: 0;
white-space: nowrap;
background-color: #000;
border-radius: 4px;
}
.PageTop.PageTop-Dark a {
background-image: url("../img_com/PageTopArrow-Dark.svg");
background-color: #FFF;
}

.PageTop.PageTop-Light a {
background-image: url("../img_com/PageTopArrow-Light.svg");
background-color: #6081FF;
}
.PageTop a:hover {
opacity: 1;
text-decoration: none;
}

/* ページナビ
------------------------------------------------------------------------------------------------- */
.List-PageNavi {
margin: 0;
padding: 0;
}

.List-PageNavi li {
font-size: 0.9em;
display: inline;
white-space: nowrap;
}
.List-PageNavi li:before {
content: "｜";
color: #CCC;
padding-right: 5px;
}
.List-PageNavi li:first-child:before {
content: none;
}
/* タブレット以下 */
@media (max-width: 767.98px) {
	.List-PageNavi li {
	line-height: 2rem;
	}
}

/* フッタ
------------------------------------------------------------------------------------------------- */
.Footer-BG-Color-01 {background-color: var(--Footer-BG-Color-01);}
.Footer-BG-Color-02 {background-color: var(--Footer-BG-Color-02);}
.Footer-BG-Color-03 {background-color: var(--Footer-BG-Color-03);}
.Footer-BG-Color-04 {background-color: var(--Footer-BG-Color-04);}

footer a,
footer a:hover {
text-decoration: none;
color: var(--Footer-a)!important;
}
footer .list-ArrowGray li {
border-bottom: var(--Footer-ListLine);
}
/* コンテンツ
------------------------------------------------------------------------------------------------- */
.Heading-PageTitle {
margin: 1rem 0 2rem;
padding: 1rem 0 1rem;
text-align: center;
line-height: 1;
border-top: var(--Border);
border-bottom: var(--Border);
color: var(--MainColor);
font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
font-weight: normal;
}

.Heading-ContentsTitle {
/*	margin-bottom: 2rem;*/
	padding: 1rem 0 0.3em 1.3em;
	margin-bottom: 1rem;
	line-height: 1.1;
	font-size: 1.5em;
	background-image: url("../img_com/BG-HeadLine-01.svg");
	background-position: 0% 1.1rem;
	background-repeat: no-repeat;
	background-size: 1em auto;
	overflow-y: visible;
	border-bottom: var(--Border);
	color: var(--MainColor);
	/* ページ上部で停止（sticky）▽ */
	background-color: rgba(255,255,255,0.95);
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	z-index: 101;
	font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-weight: normal;
/* ページ上部で停止（sticky）△ */
}

/* サイドナビ
------------------------------------------------------------------------------------------------- */
/* サイドナビの見出し */
.Heading-SideNavi {
padding: 1rem 0 0.55em 1.3em;
line-height: 1.1;
font-size: 1.25em;
background-image: url("../img_com/BG-HeadLine-01.svg");
background-repeat: no-repeat;
background-size: 1em auto;
overflow-y: visible;
border-bottom: var(--Border);
color: var(--MainColor);
background-position: left 1.1rem;
font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
font-weight: normal;
}

/* サイト内検索を幅一杯にする */
.cse .gsc-control-cse,
.gsc-control-cse {
padding: 1em 0!important;
}

/* Summaryページ
------------------------------------------------------------------------------------------------- */
.Heading-EntrySummary-Title,
.Heading-EntrySummary-Title a {
font-size: 1.4em;
color: #AC5516;
}

/* serialNavi */
.serialNavi {
width: 100%;
margin: 20px 0;
padding: 20px 0;
display: flex;
list-style: none;
border-top: var(--Border);
border-bottom: var(--Border);
clear: both;
background-color: #F4F4F4;
text-align: center;
}
.serialNavi li {
width: 320px;
}
.serialNavi li:first-child {
text-align: left;
}
.serialNavi li:last-child {
text-align: right;
}

.Block_News {
width: 100%;
}
.Block_News_Article {
display: flex;
padding: 12px 8px 0;
margin-bottom: 8px;
border-bottom: var(--BorderDotted);
}
.Block_News_Article:nth-child(3n) {
}
.Block_News_Article .Thumbnail {
font-display: block;
max-width: 150px;
width: 150px;
margin-right: 20px;
overflow: hidden;
position: relative;
}
.Block_News_Article .Thumbnail img {
left: 0;
top: 0!important;
width: 150px;
width: 100%;
position: relative;
border-radius: 4px;
}

.Block_News_Article_Text {
width: auto;
width: 514px;
}
.Block_News_Article_Text h3 {
color: #20296F;
font-size: 18px;
}
.Block_News_Article_Text p .Summary {
color: #666;
font-size: 14px;
}

.Toyota {}
.Anjo {}

.Toyota:after,
.Anjo:after {
display: inline-block;
/*position: absolute;*/
transform: scale(1,1);
margin-left: 1em;
padding: 3px 10px;
color: white;
border-radius: 4px;
position: relative;
}

.Toyota:after {
content: "豊田";
background-color: red;
}

.Anjo:after {
content: "安城";
background-color: blue;

}

/* お問い合せのフロー
------------------------------------------------------------------------------------------------- */
.ul-Flow {
margin: 0;
padding: 0;
}
.ul-Flow li {
display: inline-block;
padding: 0.3rem 1rem;
margin-right: 0.5rem;
border-radius: 4px;
border: var(--Border);
background-color: #FFF;
}
.ul-Flow li:last-child {
margin-right: 0;
}
.ul-Flow li.Active {
background-color: #EEE;
}
.ul-Flow li.Active-Error {
background-color: #FF0004;
color: #FFF;
}
.ul-Flow li.Active-Success {
background-color: #467CFF;
color: #FFF;
}
.ul-Flow li.Active-Confirm {
background-color: #467CFF;
color: #FFF;
}

#CONTACT .HereToSendMail {
display: none;
}

/* 必須 */
.LabelReq {
display: inline;
background-color: red;
border-radius: 0.25rem;
font-weight: normal;
padding: 1px 5px;
font-size: 0.7em;
color: #FFF;
margin: 0 5px;
}

/* カレンダー横のアイコン */
.ui-datepicker-trigger {
display: inline;
margin: 0.3rem 0.5rem;
height: 1.5rem;
cursor: pointer;
}

/* 必須のエラーメッセージ */
.ErrorMSG {
margin: 0;
padding: 0.3em 0 0;
font-size: 0.8em;
color: red;
}

.ErrorMSG:before {
content: "★"
}

/* タブレット以上、デスクトップ以下で表示。それ以外では非表示 */
.text {
display: none;
}

/* タブレット以上～デスクトップ以下 */ 
@media (min-width: 768px) and (max-width: 991.98px) {
	.text {
	display: block;
	background-color: antiquewhite;
	width: 100%;
	height: 300px;
	}
}

/* a-blog cms への上書き  */

/* check-seoの調整 */
.acms-container {
padding: 0;
max-width: 1500px;
}

/* Bootstrapに追記 --------------------------------------------------------------------------------------- */
/* デスクトップ以上 */
@media (min-width: 992px) {
	.mt-lg-6 {margin-top: 4.5rem;}
	.mt-lg-7 {margin-top: 6rem;}
	.mt-lg-8 {margin-top: 7.5rem;}
	.mt-lg-9 {margin-top: 9rem;}
	.mt-lg-10 {margin-top: 10.5rem;}
}

/* @media リスト --------------------------------------------------------------------------------------- */
/* モバイル（縦）以下 */ 
@media (max-width: 575.98px) {
}
/* モバイル（横）以上 */
@media (min-width: 576px) {
}
/* タブレット以下 */
@media (max-width: 767.98px) {
}
/* タブレット以上 */
@media (min-width: 768px) {
}
/* デスクトップ以下 */
@media (max-width: 991.98px) {
}
/* デスクトップ以上 */
@media (min-width: 992px) {
}
/* 大画面以下 */
@media (max-width: 1199.98px) {
}
/* 大画面以上 */
@media (min-width: 1200px) {
}
