@charset "utf-8";
/*
Theme Name: 建設技術センター2023年改修
Theme URI: 
Description: 
Version: 1.0.0
Author: 
Author URI: 
*/

/* -----------------------------------------------

	Site: 
	Type: default styles
	URL: 
	Last Up Date: 
	Version: 1.0
	Author: 
	
	----------------------------------------------
	
	Contents

		1.

----------------------------------------------- */


/* --- 1.style reset --- */
 
/*要素のフォントサイズやマージン・パディング*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
	font-weight: normal;
	font-style: normal;
}

/*スクロールバーを常に表示*/
html {
	overflow-y: scroll;
}

/*行の高さをフォントサイズと同じに*/
body {
    line-height:1;
	font-family: 'Noto Sans JP', sans-serif;
}
 
/*section要素などをブロック要素へ変更*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
 
ol, ul {
    list-style:none;
}
 
/*引用符の表示が出ないように*/
blockquote, q {
    quotes:none;
}
 
/*blockquote要素、q要素の前後にコンテンツを追加しないように*/
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
 
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃える*/
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
}
 
/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
 
/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
 
/*テキストに打ち消し線が付くようにしています*/
del {
    text-decoration: line-through;
}
 
/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
 
/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
    border-collapse:collapse;
    border-spacing:0;
}
 
/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
 
/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
    vertical-align:middle;
}

/*画像を縦に並べたときに余白が出ないように*/
img {
	vertical-align: bottom;
	font-size:0;
	line-height: 0;
	border: 0;
}

/*文字を太字に*/
strong {
	font-weight: bold;
}

/* box-sizing */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}



/* --- 2.float --- */
.float-left, .alignleft {
	float: left;
	margin-right: 50px;
	margin-bottom: 50px;
}
.float-right, .alignright {
	float: right;
	margin-left: 50px;
	margin-bottom: 50px;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.clear:after {
    content: '';
    display: block;
    clear: both;
}
.clear {
	clear: both;
    zoom: 1; /* for IE6/7 */
}

@media screen and (max-width: 900px) {
	.float-left, .alignleft {
		float: none;
		margin-right: 50px;
		margin-bottom: 20px;
	}
	.float-right, .alignright {
		float: none;
		margin-left: 50px;
		margin-bottom: 20px;
	}	
}



/* --- 3.link --- */
a {
	outline: none;
	text-decoration: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
    color: #0055A3;
}
a:link{
}
a:visited{
}
a:hover{
	opacity: 0.5;
}
a:active{
}
a[href $='.pdf'] {
	background: url(images/icon_pdf.gif) no-repeat left;
	padding-left: 20px;
	overflow: hidden;
}
a[href $='.doc'] {
	background: url(images/icon_doc.gif) no-repeat left;
	padding-left: 20px;
	overflow: hidden;
}
a[href $='.xls'] {
	background: url(images/icon_xls.gif) no-repeat left;
	padding-left: 20px;
	overflow: hidden;
}
a[href $='.docx'] {
	background: url(images/icon_doc.gif) no-repeat left;
	padding-left: 20px;
	overflow: hidden;
}
a[href $='.xlsx'] {
	background: url(images/icon_xls.gif) no-repeat left;
	padding-left: 20px;
	overflow: hidden;
}
a[href $='.xlsm'] {
	background: url(images/icon_xls.gif) no-repeat left;
	padding-left: 20px;
	overflow: hidden;
}



/* --- 4.text-align --- */
.to-left {
	text-align:left;	
}
.to-center {
	text-align:center;	
}
.to-right {
	text-align:right;	
}


/* --- 5.common --- */
html {
	height: 100%;
}
body {
	height: 100%;
}
img {
	max-width: 100%;
	height: auto;
}


/* --- 6.header --- */
header {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 250px;
	height: 100%;
	background-color: #0055A3;
	z-index: 9999;
}
header h1, div#Title {
	background-color: #fff;
	padding: 20px 0px 0px 0px;
}
#SpTitle {
	display: none;
}

#NavToggle {
	display: none;
}

nav ul.GlobalNavi {
	width: 100%;
	margin: 0px auto;
}
nav ul.GlobalNavi li {
	font-size: 16px;
	letter-spacing: 0.2em;
	line-height: 1.4;
	position: relative;
}
nav ul.GlobalNavi li::after {
	content: "";
	display: block;
	width: 70%;
	border-bottom: solid 2px #034B90;
	position: absolute;
	bottom: 0px;
	left: 50%;
	margin-left: -35%;
}
nav ul.GlobalNavi li a {
	display: block;
	color: #fff;
	padding: 15px 0px 19px 15%;
}
nav ul.GlobalNavi li a:hover {
	background-color: #034B90;
	opacity: 1;
}
nav ul.ChildMenu {
	position: absolute;
	top: 0px;
	left: 250px;
	background-color: #0055A3;
	display: none;
}
nav ul.ChildMenu li {
	width: 250px;
}

nav ul.GlobalNaviSp {
	display: none;
}

nav ul.SubNavi {
	width: 180px;
	margin: 15px auto;
}
nav ul.SubNavi li {
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.4;
	margin-bottom: 10px;
}
nav ul.SubNavi li a {
	display: block;
	color: #0055A3;
	background-color: #fff;
	padding: 7px 10px 7px 15px;
	border-radius: 50px;        /* デフォルト */  
	-webkit-border-radius: 50px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 50px;   /* Firefox用 */
}

nav .SideBnr {
	width: 180px;
	margin: 0px auto;
}

@media screen and (min-width:601px) and ( max-width:1000px) {

}

@media screen and (max-width: 900px) {
	header {
		position: inherit;
		width: 100%;
		height: auto;
	}
	header h1, div#Title {
		display: none;
	}
	#SpTitle {
		display: block;
		background-color: #fff;
		text-align: center;
		padding: 15px 10px;
	}
	#SpTitle img {
		max-width: 200px;
	}

	#NavBox {
		width: 100%;
		position: fixed;
		top: 0px;
		left: 0px;
		z-index: 9999;
	}

	/*開閉ボタン*/
	#NavToggle {
		display: block;
		width: 60px;
		height: 58px;
		position: fixed;
		top: 0px;
		right: 0px;
		z-index: 9999;
		cursor: pointer;
		background-color: #0055A3;
		padding: 15px 15px 13px 15px;
	}
	#NavToggle div {
		position: relative;
	}
	#NavToggle span{
		display: block;
		height: 3px;
		background: #fff;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#NavToggle span:nth-child(1){
		top:0px;
	}
	#NavToggle span:nth-child(2){
		top:12px;
	}
	#NavToggle span:nth-child(3){
		top:24px;
	}

	/*開閉ボタンopen時*/
	.open #NavToggle span:nth-child(1) {
		top: 12px;
	   -webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
		background: #fff;
	}
	.open #NavToggle span:nth-child(2) {
		width: 0;
		left: 50%;
		background: #fff;
	}
	.open #NavToggle span:nth-child(3) {
		top: 12px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
		background: #fff;
	}

	nav {
		display: none;
		background-color: #0055A3;
	}
	nav ul.GlobalNavi {
		display: none;
	}
	nav ul.GlobalNaviSp {
		display: block;
		margin: 0px;
		padding: 60px 10% 0px 10%;
	}
	nav ul.GlobalNaviSp li a {
		display: block;
		color: #fff;
		padding: 15px 0px;
		border-bottom: solid 2px #034B90;
		background-image: url(images/arrow2.png);
		background-repeat: no-repeat;
		background-position: right center;
		background-size: 26px;
	}
	nav ul.SubNavi {
		width: 80%;
	}
	nav .SideBnr {
		padding: 0px 0px 15px 0px;
	}
}



/* --- Contents --- */
#Contents {
	width: calc(100% - 250px);
	margin: 0px 0px 0px 250px;
}

@media screen and (max-width: 900px) {
	#Contents {
		width: 100%;
		margin: 0px;
	}
}


/* --- footer --- */
footer {
	width: calc(100% - 250px);
	color: #fff;
	margin: 0px 0px 0px 250px;
	background-color: #0055A3;
}
#FooterLink {
    background-color: #fff;
}
#FooterLink ul {
    max-width: 1180px;
    margin: 0px auto;
    padding: 20px;
}
#FooterLink ul li {
    display: inline-block;
    font-size: 14px;
    margin: 0px 25px 0px 0px;
}
#FooterInner {
    max-width: 1180px;
    margin: 0px auto;
    padding: 50px 20px;
}
#FooterInner a {
    color: #fff;
}
#ContactListBox {
	float: right;
}
dl.ContactList {
	float: left;
	font-size: 14px;
	line-height: 1.6;
	border-top: solid 1px #fff;
	margin: 0px 0px 30px 20px;
}
dl.ContactList dt {
	float: left;
	padding: 10px;
}
dl.ContactList dd {
	padding: 10px 10px 10px 7em;
	border-bottom: solid 1px #fff;
}
footer #ContactBox {
	width: 240px;
	margin: 20px 0px;
}
footer address h2 {
	width: 350px;
	margin: 0px 0px 30px 0px;
}
footer address p {
	font-size: 17px;
	line-height: 1.8;
}
footer #Copyright {
	text-align: right;
	font-size: 11px;
	margin: 80px 0px 0px 0px;
}

@media screen and (max-width: 900px) {
	footer {
		width: 100%;
		margin: 0px;
	}
	#FooterInner {
		max-width: 100%;
		padding: 0px 0px 30px 0px;
	}
	#ContactListBox {
		float: none;
	}
	dl.ContactList {
		float: none;
		font-size: 14px;
		line-height: 1.6;
		border-top: none;
		margin: 0px 20px 0px 20px;
	}
	dl.ContactList dt {
		float: left;
		padding: 10px;
	}
	dl.ContactList dd {
		padding: 10px 10px 10px 7em;
		border-bottom: solid 1px #fff;
	}
	footer #ContactBox {
		margin: 20px auto;
	}
	footer address h2 {
		text-align: center;
		width: 175px;
		margin: 50px auto 20px auto;
	}
	footer address p {
		text-align: center;
	}
	footer #Copyright {
		text-align: center;
		margin: 30px 0px 0px 0px;
	}
}
.sp {
	display: none;
  }
@media screen and (max-width:900px) {
  .sp {
	display: block;
  }
}


/* --- etc --- */

/* 検索用 */
#SearchBox {
	text-align: center;
}
.screen-reader-text {
	display: none;
}

/* プラグインを使わないページネーション用 */
.pagination {
	clear: both;
	float: right;
	font-size: 11px;
	line-height: 13px;
	padding: 0px 20px 0px 0px;
	text-align: center;
	position: relative;
}
.pagination span, .pagination a {
	display: block;
	float: left;
	margin: 2px 2px 2px 0;
	padding: 6px 9px 5px 9px;
	text-decoration: none;
	width: auto;
	color: #666;
	background: #EEE;
}
.pagination a:hover {
	color: #fff;
	background: #6294b5;
}
.pagination .current {
	padding: 6px 9px 5px 9px;
	background: #0055A3;
	color: #FFF;
}


#PageTop {
    position: fixed;
    bottom: 50px;
    right: 50px;
	z-index: 1000;
	text-align: center;
}
.Round {
	border-radius: 5px;        /* デフォルト */  
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 5px;   /* Firefox用 */
}



