@charset "UTF-8";
/*******************************************************************************
	サイト名：
	作成会社：Fellow System
--------------------------------------------------------------------------------
No. ┃日付    ┃区分┃内容
━━╋━━━━╋━━╋━━━━━━
001 ┃2018.01 ┃新規┃[V1.00]
*******************************************************************************/

/*******************************************************************************
	デフォルトセッティング
--------------------------------------------------------------------------------
	適応：全部
*******************************************************************************/
* {
	list-style: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
}

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

html , body {
	height: 100%;
}

body {
	display: flex;
	background: #ffffff; /*背景指定*/
	color: #333333; /*文字色指定*/
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro"; /*フォントの種類指定(左から優先順位)*/
	font-size: 75%; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	line-height: 2; /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
	flex-direction: column;
}

img {
	display: block;
}

a {
	display: block;
	color: #333333; /*文字色指定*/
}

/* ヘッダー */
header {
	position: fixed;
	top: 0;

	/*left: 0;*/
	z-index: 999;
	width: 100%;
	background: #3f4c6b; /* Old browsers */
	background: -moz-linear-gradient(top, #3f4c6b 0%, #3f4c6b 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3f4c6b), color-stop(100%, #3f4c6b)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #3f4c6b 0%, #3f4c6b 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #3f4c6b 0%, #3f4c6b 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #3f4c6b 0%, #3f4c6b 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1862a6 0%, #1862a6 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3f4c6b', endColorstr='#3f4c6b', GradientType=0 ); /* IE6-9 */
}

header h1 {
	font-family: "Berkshire Swash", cursive; /*フォントの種類指定(googleのwebフォント)*/
}

header h1 a {
	color: #ffffff; /*文字色指定*/
}

header h1 a:hover {
	/*透明度設定*/
	opacity: 0.6;
	-moz-opacity: 0.6; /*ここまで透明度設定*/
	transition: 0.5s; /*ここまで時間的変化指定*/
	-ms-transition: 0.5s;
	-moz-transition: 0.5s;
	/*時間的変化指定*/
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	filter: alpha(opacity=60);
}

/* フッター */
footer {
	position: relative;
	margin-top: auto;
	background-color: #e1e1e1;
}

.page-top {
	right: 20px; /*場所を右下に移動*/
}

.page-top:hover {
	opacity: 0.7;
}

.page-top a i {
	font-family: "FontAwesome";
}

.banner_link {
	margin: 0 auto;
}

.movin {
	width: 480px;
	height: 320px;
	margin: 0 auto;
}

.wide_banner li {
	max-width: 190px;
	margin: 0 auto;
}

.wide_banner li img {
	width: 90%;
	margin: 0 auto;
}

.wide_banner li:first-child {
	background-color: #f56300;
}

.wide_banner li:first-child span {
	display: flex;
	color: #ffffff;
	font-size: 88%;
	text-align: center;
	text-shadow: black 2px 0px , black -2px 0px , black 0px -2px , black 0px 2px , black 2px 2px , black -2px 2px , black 2px -2px , black -2px -2px , black 1px 2px , black -1px 2px , black 1px -2px , black -1px -2px , black 2px 1px , black -2px 1px , black 2px -1px , black -2px -1px;
	justify-content: center;
}

.wide_banner li:last-child a {
	padding: 10.5px 0;
	background-image: url(../images/banner/header_bg.gif);
	background-repeat: repeat-x;
	background-position: center bottom;
}

.narrow_banner li {
	display: inline-block;
}

.narrow_banner li:nth-child(2) {
	margin: 0 8px;
}

.narrow_banner {
	max-width: 190px;
	height: 55px;
	margin-top: 10px !important;
}

.narrow_banner li img {
	width: 100%;
	max-width: 55px;
}

@media (min-width: 290px) {
	/* 260px～ */
	.banner_link {
		width: 290px;
	}

	.wide_banner li:first-child {
		max-width: 290px;
	}

	.wide_banner li:first-child img {
		float: left;
		width: 170px;
	}

	.wide_banner li:first-child span {
		width: 120px;
		padding: 7.5px 2%;
	}
}

@media (min-width: 478px) {
	/* 450px～ */
	.banner_link {
		width: 478px;
	}

	.wide_banner li {
		float: left;
	}

	.wide_banner li:last-child {
		margin-left: 8px;
	}
}

@media screen and (max-width: 674px) {
	/* ~614px */
	.wide_banner {
		margin-bottom: 10px;
	}

	.narrow_banner {
		margin: 0 auto;
	}
}

@media (min-width: 675px) {
	/* 615px～ */
	.banner_link {
		width: 100%;/*
		max-width: 615px;*/
		max-width: 675px;
	}

	.wide_banner , .narrow_banner {
		margin: 0 auto;
	}

	.wide_banner {
		max-width: 478px;
	}
}
.copyright {
	text-align: center;
}

.copyright br {
	display: none;
}

/* 各ページ共通 */
.about main , .works main , .access main {
	margin-bottom: 50px;
}

.page_title {
	display: flex;
	position: relative;
	margin: 40px auto;
	text-align: center;
	flex-direction: column;
	justify-content: center;
}

.page_title::before , .page_title::after {
	position: absolute;
	border-bottom: 3px solid #1862a6;
	content: "";
}

.page_title , .method_title {
	font-family: "ＭＳ 明朝";
}


/*******************************************************************************
	main
--------------------------------------------------------------------------------
	適応：index.html
*******************************************************************************/
.home main {
	padding: 20px 0;
}

.bg_slide {
	display: flex;
	width: 100%;
	height: 100vh;
	background-position: center center;
	background-size: cover;
	justify-content: center;
	align-items: center;
}

.home_status img {
	display: block;
	width: 100%;
	max-width: 420px;
	margin: auto;
}

.home_status h2 , .home_status p {
	text-shadow: white 2px 0px , white -2px 0px , white 0px -2px , white 0px 2px , white 2px 2px , white -2px 2px , white 2px -2px , white -2px -2px , white 1px 2px , white -1px 2px , white 1px -2px , white -1px -2px , white 2px 1px , white -2px 1px , white 2px -1px , white -2px -1px;
}

.home_status h2 {
	font-family: "HGP明朝B";
	text-align: center;
}

.home_status p {
	margin: 0 auto;
}

@media screen and (max-height: 550px) {
	.home main {
		height: 610px;
	}
}

/*******************************************************************************
	main
--------------------------------------------------------------------------------
	適応：about/index.html
*******************************************************************************/
.information th {
	background-color: #005097;
	color: #ffffff;
}

.information ul li {
	list-style: disc;
	text-align: left;
}

.information ul li a {
	display: inline;
	text-decoration: underline;
}

.information ul li a:hover {
	text-decoration: none;
}

.information ul li a i {
	font-family: "FontAwesome";
	text-decoration: inherit;
}

/*******************************************************************************
	main
--------------------------------------------------------------------------------
	適応：works
*******************************************************************************/
.method_title {
	font-weight: normal;
}


.works .construction_title {
	margin-top: 4;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
	padding-bottom: 2px;
	padding-left: 8px;
	border-top-style: none;
	border-top-color: #cccccc;
	border-right-style: none;
	border-right-color: #cccccc;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #1862a6;
	border-left-style: none;
	border-left-color: #637628;
	font-weight: normal;
	font-size: 20px;
}

.works_item {
	margin-bottom: 30px;
}

.works_item:last-child {
	margin-bottom: 0;
}

.works_item img {
	padding: 5px;
	background: linear-gradient(#cccccc, #8a8a8a);
}

/*******************************************************************************
	main
--------------------------------------------------------------------------------
	適応：access/index.html
*******************************************************************************/
.access .address {
	margin: 0 auto 21px;
}

.access table span{
	display: inline-block;
}

.access td.flex{
	display: flex;
}

/*******************************************************************************
	main
--------------------------------------------------------------------------------
	適応：job-info.html
*******************************************************************************/

.job-info .method_title_message {
    font-family: "ＭＳ 明朝";
	font-weight: normal;
	font-size: 35px;
	text-align: center;
	color: #1862a6;
	margin-bottom: 24px;
}

.job-info .address .flex{
	display: flex;
}

.job-info .address br{
	padding-top: 8px;
	padding-bottom: 16px;
}

.job-info .construction_title {
	margin-top: 4;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
	padding-bottom: 2px;
	padding-left: 8px;
	border-top-style: none;
	border-top-color: #cccccc;
	border-right-style: none;
	border-right-color: #cccccc;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #1862a6;
	border-left-style: none;
	border-left-color: #637628;
	font-weight: normal;
	font-size: 20px;
}

/*	適応：access/index.html	・job-info.html*/

a.telephone{
	color: #0000ee;
	text-decoration:underline;
}

a.telephone:hover{
	text-decoration: none;
}

/* 動画 */
video{
	position: absolute;
   top: 0%;
   left: 50%;
   transform: translateX(-50%);
}
