@charset "UTF-8";

/* =====================
	CSSリセット
======================= */
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, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
body {
	line-height:1;
}

article, aside, dialog, figure, footer, header,
hgroup, nav, section {
	display:block;
}

nav ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

a {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted #000;
	cursor:help;
}

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;
}


/* =====================
	全体
======================= */
html, body {
	height:100%;
}

body {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* clearfix */
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	font-size:0;
	clear: both;
	visibility:hidden;
}
.clearfix {
	display: inline-block;
}
/* Hides from IE Mac \*/
* html .clearfix {height: 1%;}
.clearfix{display:block;}
/* End Hack */

/* =====================
	電光掲示板
======================= */
.ledText {
    overflow: hidden;
    position: relative;
    padding:5px 0;
    color: #FF0000;
    /*FFB400*/
    font-size: 24px;
    font-weight: bold;
    background: #000000;
}

.ledText:after {
    content: ' ';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(#0a0600 1px, transparent 0px), linear-gradient(0, #0a0600 1px, transparent 1px);
	background-image: -webkit-linear-gradient(#0a0600 1px, transparent 0px), -webkit-linear-gradient(0, #0a0600 1px, transparent 1px);
	background-size: 0px 0px;
    z-index: 1000;
}

.ledText span {
	display: inline-block;
	white-space: nowrap;
	padding-left: 100%;
	-webkit-animation-name: marquee;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-duration: 25s;
	-moz-animation-name: marquee;
	-moz-animation-timing-function: linear;
	-moz-animation-iteration-count: infinite;
	-moz-animation-duration: 25s;
	animation-name: marquee;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-duration: 25s;
}

@-webkit-keyframes marquee {
  from   { -webkit-transform: translate(0%);}
  99%,to { -webkit-transform: translate(-100%);}
}
@-moz-keyframes marquee {
  from   { -moz-transform: translate(0%);}
  99%,to { -moz-transform: translate(-100%);}
}
@keyframes marquee {
  from   { transform: translate(0%);}
  99%,to { transform: translate(-100%);}
}

/*重置CSS*/
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, fieldset, legend, img { margin:0; padding:0; }
fieldset, img { border:none; }
img{display: block;}
address, caption, cite, code, dfn, th, var { font-style:normal; font-weight:normal; }
ul, ol { list-style:none; }
input::-moz-focus-inner { border:none; padding:0; }
select, input { vertical-align:middle; }
select, input, textarea { margin:0; }
input[type="submit"], input[type="button"], input[type="text"], input[type="password"], input[type="tel"], textarea { outline-style:none; -webkit-appearance:none; }
textarea { resize:none; }
table { border-collapse:collapse; }

/*清除浮动*/
.clearfix:after { content:"."; display:block; height:0; visibility:hidden; clear:both; }
.clearfix { *zoom:1; }
.clearit { clear:both; height:0; font-size:0; overflow:hidden; }

/* 居中对齐 */
.flex_center {
	display: flex;
	justify-content: center;
	align-items: center;
}
/* 两边对齐 */
.flex_space_between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* 两侧的间隔相等 */
.flex_space_around {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
/* 左对齐 */
.flex_flex_start {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
/* 右对齐 */
.flex_flex_end {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.container {
	width: 1200px;
	margin: 0 auto;
}

.top-bar {
	padding-top: 10px;
}
.top-bar h1 {
	font-size: 42px;
	color: #134191;
	font-weight: bold;
	padding-bottom: 4px;
}
.top-bar h1 + p {
	font-size: 14px;
	color: #134191;
}
.top-bar .logo {
	margin-right: 6px;
}
#eigyou {
	border: 1px solid #006699;
	border-radius: 6px;
	padding: 1px;
	width: 30%;
}
#eigyou h6 {
	font-size: 16px;
	color: white;
	text-align: center;
	padding: 4px 0;
	background-color: #134191;
	border-top-right-radius: 6px;
	border-top-left-radius: 6px;
}
#eigyou p {
	font-size: 14px;
	line-height: 24px;
	text-align: center;
}
#eigyou p span {
	color: red;
	font-weight: bold;
}
.top-bar .tel p{
	font-size: 16px;
	line-height: 20px;
	font-weight: bold;
	color: #134191;;
}
/*nav*/
.nav-bar {
	height: 40px;
	/*line-height: 40px;*/
	border-radius: 6px;
	background-color: #134191;
	margin: 10px 0;
}

.nav-bar ul li a.active {
	/*position: relative;*/
	/*top: -1px;*/
	background-color: #911336;
}
.nav-bar ul li:first-child a.active {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
}
.nav-bar ul li:last-child a.active {
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}

.nav-bar ul li {
	width: 240px;
	height: 40px;
	text-align: center;
}
.nav-bar ul span {
	display: inline-block;
	content: '';
	width: 1px;
	height: 20px;
	background-color: white;
}
.nav-bar ul li>a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 239px;
	height: 40px;
	color: #FFF;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
}

.nav-bar ul li>a:hover {
	text-decoration: underline;
}

/*banner*/
.banner {
	margin-bottom: 10px;
}
.banner img {
	width: 100%;
	height: 300px;
}

/*ad*/
.ad {
	margin-bottom: 10px;
}
.ad .ad-con {
	height: 150px;
	padding: 4px 0 4px 4px;
	overflow-y: scroll;
	border: 1px solid #006699;
}
.ad .ad-con .br {
	padding-bottom: 30px;
}
.ad .ad-con p {
	font-size: 14px;
	color: #333;
	line-height: 24px;
}

/*img-box*/
.img-box {
	margin-bottom: 10px;
}
.img-box .img{
	height: 300px;
	width: 49.5%;
	background-color: #dddddd;
}
.img-box .img>img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

/*footer*/
.footer {
	background-color: rgba(222,235,247,1);
	padding: 10px 0;
}
.footer .name {
	font-size: 36px;
	font-weight: bold;
	color: #134191;
	padding-bottom: 10px;
}
.footer h6 {
	font-size: 18px;
	color: #333333;
}
.footer p {
	font-size: 16px;
	color: #666666;
	line-height: 28px;
}


/* ***  summary page*** */
.summary {
	padding: 10px;
	border: 1px solid #006699;
	margin-bottom: 10px;
}
.summary h1 {
	font-size: 30px;
	text-align: center;
	color: #333;
	font-weight: bold;
	margin-bottom: 10px;
}
.summary .con ul li{
	padding-bottom: 10px;
}
.summary .con ul li label{
	display: inline-block;
	font-size: 16px;
	width: 100px;
	font-weight: bold;
}
.summary .con ul li span{
	font-size: 16px;
}

/* ***  quotation page*** */
.quotation {
	height: 400px;
	margin-bottom: 10px;
}
.quotation img {
	width: 100%;
	height: 400px;
}

/* ***  addr page*** */
.addr>img {
	width: 100%;
	height: 300px;
	margin-bottom: 10px;
}
.addr .desc {
	font-size: 18px;
	line-height: 24px;
	padding: 10px 0;
	height: 300px;
}

/* ***  consulting page*** */
.consulting .con{
	padding: 10px 0;
	height: 200px;
}
.consulting .con h1 {
	font-size: 30px;
	text-align: center;
	padding-bottom: 10px;
}
.consulting .con p {
	display: block;
	width: 30%;
	font-size: 16px;
	line-height: 24px;
}