/*
Theme Name: RandT
Theme URI: 
Author: 
Author URI: 
Description: 
Version: 1.0
License: 
License URI: 
Tags: 
Text Domain: 
*/

@charset "UTF-8";
/*--------------------------------------------------
**************************************************
  リセット
**************************************************
--------------------------------------------------*/

/*	<head>内で html5reset.css を読み込んでます	*/


/*--------------------------------------------------
**************************************************
  デフォルト
**************************************************
--------------------------------------------------*/

/*	<head>内で default.css を読み込んでます	*/



/*--------------------------------------------------
**************************************************
  基本
**************************************************
--------------------------------------------------*/
body {
	margin:0px;
	padding:0px;
	background:none repeat scroll 0% 0%;
	background-attachment:scroll;
	font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 游ゴシック体, 'Yu Gothic', YuGothic, メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	line-height: 1.6;
	letter-spacing: 0.8px;
	font-size: 14px;
	font-weight: 400;
	color:#333;
}

.contents_inner{
	max-width:1000px;
	min-width:768px;
	width:95%;
	margin-left:auto;
	margin-right:auto;
}

h2.common {
	font-size: 30px;
	font-family: 'Lato', sans-serif;
	padding-bottom: 10px;
	border-bottom: 1px solid #aaa;
	display: inline-block;
}

/*--------------------------------------------------
**************************************************
  テキスト・フォント
**************************************************
--------------------------------------------------*/
em {
	color: #e58c93;
	font-weight: normal;
	font-style: normal;
}

center{
	text-align: center;
}

.red   { color:#dd0000;}
.blue  { color:#0000ff;}
.blue_c{ color:#24318F;}
.green { color:#008000;}
.black { color:#000; }
.white { color:#fff; }


/*--------------------------------------------------
**************************************************
  リンク系（アンカー）
**************************************************
--------------------------------------------------*/
a {
	color: #24318F;
	text-decoration: none;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
a:hover {
	color: #24318F;
	text-decoration: underline;
}
a img{
	display: block;
	transition: 0.5s;
}

a img:hover {
	-ms-filter: "alpha( opacity=80 )";
	filter: alpha( opacity=80 );
	opacity: 0.8;
	transition: 0.5s;
}

/* -- CSSで画像を整形していたら -- */
a.opa:hover {
	-ms-filter: "alpha( opacity=80 )";
	filter: alpha( opacity=80 );
	opacity: 0.8;
	transition: 0.5s;
}

/* ボタン系 01 */
.btn_arrow_01{
	display:block;
	width:315px;
	height:56px;
	margin-right:auto;
	margin-left:auto;
	padding:15px 0;
	background:#009fc8 url("imgs/other/arrow_01.png") no-repeat 10px 21px;
	border:#fff 3px solid;
	border-radius:4px;
	font-size:13px;
	text-align:center;
	box-shadow:7px 6px 10px -7px #000000;
	-moz-box-shadow:7px 6px 10px -7px #000000;
	-webkit-box-shadow:7px 6px 10px -7px #000000;
	color:#fff;
}
	.btn_arrow_01:hover{
		text-decoration:none;
		background-color:#007290;
		color:#fff;
	}


.scale_up {
	overflow: hidden;
}
.scale_up img {
	-moz-transition: -moz-transform 0.5s linear;
	-webkit-transition: -webkit-transform 0.5s linear;
	-o-transition: -o-transform 0.5s linear;
	-ms-transition: -ms-transform 0.5s linear;
	transition: transform 0.5s linear;
}
.scale_up img:hover {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}


/*--------------------------------------------------
**************************************************
  ヘッダー
**************************************************
--------------------------------------------------*/
#top_header {
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 9999;
}
#header_content {
	padding: 0 2%;
	background: rgba(0,0,0,0.5);
}
#logo {
}
#logo svg {
	width: auto;
	height: 54px;
	display: block;
	opacity: 1;
	transition: opacity 0.3s;
}
#logo a:hover svg {
	opacity: 0.7;
}
#gnavi {
	min-width: 60%;
	max-width: 80%;
	margin-top: 18px;
}
#gnavi li {
	margin-left: 1%;
}
#gnavi li a {
	color: #FFF;
}

/* ----
#top_header {
  margin: 0;
  padding: 0;
  background: ;
  background-attachment: fixed;
  background-size: cover;
} 
 
#video-background {
  position: fixed;
  right: 0; 
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  width: auto; 
  height: auto;
  z-index: -100;
}
---- */

/*--------------------------------------------------
**************************************************
  グローバルナビゲーション
**************************************************
--------------------------------------------------*/

/* ドロップダウン（アクション） */
.fade-in li ul {
	visibility: hidden;
	opacity: 0;
	transition: 0s;
	position: absolute;
	top: 100%;
	left: 0;
	text-align: center;
}
.fade-in li:hover ul {
	visibility: visible;
	opacity: 1;
	background: rgba(37,49,84,0.8);
	width: 100%;
}
.fade-in li ul li {
	display: inline-block;
	margin: 0 10px;
}
.fade-in li ul li a{
	visibility: hidden;
	opacity: 0;
	transition: 0.5s;
	padding: 18px 0;
	display: block;
}
.fade-in li:hover ul li a{
	visibility: visible;
	opacity: 1;
}



/*--------------------------------------------------
**************************************************
  パンくず
**************************************************
--------------------------------------------------*/
#breadcrumb {
	margin-top: 5px;
	padding: 10px 0;
	font-size: 12px;
	border-bottom: 1px solid #efefef;
}


/*--------------------------------------------------
**************************************************
  メインコンテンツ
**************************************************
--------------------------------------------------*/
main{
	/*min-height: 500px;*/
}

/* -- 下層共通 h1 フィールドタイプ -- */
.page_catch{
	padding-top: 150px;
	position: relative;
	box-shadow: 0 1px 10px rgba(0,0,0,.5);
}
h1.sub_title {
	text-align: center;
	font-size: 24px;
	font-family: "Lato";
	color: #4c95c4;
}
h1.sub_title span {
	display: block;
	font-size: 18px;
	font-weight: normal;
	color: #333333;
}

h2.sub_title {
	font-size: 18px;
	font-family: "Lato";
	padding-bottom: 15px;
	margin-top: 30px;
	background: url(imgs/common/border_bg.gif);
	background-size: 50px 1px;
	background-repeat: no-repeat;
	background-position: left bottom;
	color: #24318F;
}
h2.sub_title span {
   display: block;
	font-size: 14px;
	font-weight: normal;
}

h3.sub_title {
	font-size: 18px;
	font-family: "Lato";
	padding-bottom: 15px;
	margin-top: 30px;
	background: url(imgs/common/border_bg.gif);
	background-size: 50px 1px;
	background-repeat: no-repeat;
	background-position: left bottom;
	color: #24318F;
}
h3.sub_title span {
   display: block;
	font-size: 14px;
	font-weight: normal;
}


h1 span,
h2 span,
h3 span {
	font-family: "ヒラギノ角ゴシック Pro","Hiragino Kaku Gothic Pro",游ゴシック体,"Yu Gothic",YuGothic,メイリオ,Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

/*--------------------------------------------------
**************************************************
  サイドバー
**************************************************
--------------------------------------------------*/

/* -- なし -- */

/*--------------------------------------------------
**************************************************
  フッター
**************************************************
--------------------------------------------------*/

/* -- Recruit -- */
#recruit {
	width: 100%;
	height: 260px;
	margin-top: 50px;
	background: #f3f3f3;
}
.recruit_box {
	width: 100%;
	max-width: 1200px;
	height: 260px;
	background: url("imgs/common/contact_bg.jpg") no-repeat center top;
}
.recruit_box .recruit_content {
	width: 100%;
	margin-top: 65px;
	text-align: center;
}
.recruit_content .title {
	color: #4c95c4;
	font-size: 30px;
	font-family: 'Lato', sans-serif;
	display: inline-block;
	line-height: 1.2em;
}

.recruit_box .recruit_content p:nth-child(2){
	color: #222;
	font-size: 16px;
	text-shadow: 
	0 0 10px #fff, 
	0 0 10px #fff, 
	0 0 0.40px #fff;
}

#recruit .link_btn a {
	display: block;
	width: 240px;
	height: 50px;
	margin: 0 auto;
	text-align: center;
	text-decoration: none;
	line-height: 50px;
	outline: none;
}
#recruit .link_btn a::before,
#recruit .link_btn a::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
#recruit .link_btn a,
#recruit .link_btn a::before,
#recruit .link_btn a::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
#recruit .link_btn a {
	position: relative;
	z-index: 2;
	border: 1px solid #888;
	color: #333;
	line-height: 48px;
	overflow: hidden;
	background: rgba(255,255,255,.85);
}
#recruit .link_btn a:hover {
	color: #fff;
}
#recruit .link_btn a::after {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(.5);
	transform: scale(.5);
}
#recruit .link_btn a:hover::after {
	background: #cc1a1a;
	-webkit-transform: scale(1);
	transform: scale(1);
}

#company_info {
	background: #333333;
	padding: 10px 0 20px 0;
	color: #FFF;
}
#company_info a {
	color: #FFF;
}
.f_logo {
	width: 180px;
	margin: 0 auto 15px auto;
}
.f_logo a svg {
	width: 180px;
	height: 54px;
	display: block;
}
.f_address {
	margin-right: 30px;
	display: table;
	width: 352px;
}
.f_address img {
	display: table-cell;
	vertical-align: middle;
	padding-top: 5px;
}
.f_address p {
	display: table-cell;
	padding-left: 10px;
	vertical-align: middle;
}
.f_Tel {
	width: 220px;
	margin-right: 30px;
	display: table;
	margin-top: 5px;
}
.f_Tel svg {
	display: table-cell;
	vertical-align: middle;
}
.f_Tel p {
	display: table-cell;
	padding-left: 10px;
	vertical-align: middle;
}
.f_mail {
	display: table;
	margin-top: 5px;
}
.f_mail img {
	display: table-cell;
	vertical-align: middle;
}
.f_mail p {
	display: table-cell;
	padding-left: 10px;
	vertical-align: middle;
}
.f_mail p a {
	padding-bottom: 1px;
}


footer {
	padding: 40px 0 20px 0;
	background: #888888;
}
footer a {
	color: #FFF;
	letter-spacing: 0.2em;
}
#footer_inner {
	width: 100%;
	display: table;
}
#footer_inner .f_title {
	color: #FFF;
	font-family: "LATO";
	border-bottom: 1px solid;
	padding-bottom: 3px;
	margin-bottom: 15px;
}
#footer_inner ul {
	font-size: 12px;
	display: table-cell;
	vertical-align: top;
	max-width: 30%;
	width: 20%;
}
#footer_inner ul:nth-child(2) {
	padding: 0 30px;
}
#footer_inner ul li {
	margin-bottom: 15px;
}
#footer_inner ul li:nth-child(5n) {
	margin-bottom: 0;
}
#footer_inner ul li a {
	position: relative;
	font-size: 16px;
	letter-spacing: 0.1em;
	color: #fff;
	transition: all 0.3s ease;
}
#footer_inner ul li a:hover {
	color: #FFF;
	opacity: 0.7;
	text-decoration: none;
}
#footer_icon {
	display: table-cell;
	text-align: center;
	vertical-align: bottom;
}
#footer_icon div {
	display: inline-block;
	margin: 0 5px;
}
#footer_icon div img {
	width: auto;
	height: 90px;
	display: block;
}

#copyright {
	width: 100%;
	padding: 30px 0 0 0;
	color: #fff;
	letter-spacing: 0.1em;
}

/*--------------------------------------------------
**************************************************
  その他 (PageUpボタン 追従系 jsに関わるcssなど。)
**************************************************
--------------------------------------------------*/
#pageup {
	width: 50px;
	height: 50px;
	bottom: 100px;
	position: fixed;
	right: 60px;
	z-index: 99999;
}
#pageup svg {
	width: 100%;
	height: auto;
}


