<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* common.css */

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* reset    　　　　　　　　　                                            */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

body, div, textarea, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
dl, dt, dd, ol, ul, li, form, label, table, tr, th, td {
	padding: 0;
	font-weight: normal;
	font-size: 100%;
	margin-bottom: 0px;
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
}

body {
	-webkit-text-size-adjust: 100%;
}

img {
	vertical-align: bottom;
	border: 0;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* clear fix 　　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.row:before,
.doc_set:before,
.inner:before,
.cf:before,
.row:after,
.doc_set:after,
.inner:after,
.cf:after {
	content: "";
	display: table;
}

.row:after,
.doc_set:after,
.inner:after,
.cf:after {
	clear: both;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 基本あれこれ　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
	color: #4E4E4E;
	line-height: 1.8em;
	font-weight: 400;
}

/* ボックス */
.doc_set {
}
.inner {
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

/* テーブル */
.nomal_tbl {
}
.nomal_tbl table {
	border-top: 1px solid #C9C9C9;
}
.nomal_tbl th {
	border-bottom: 1px solid #C9C9C9;
	padding-top: 35px;
	padding-bottom: 35px;
	width: 240px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 10px;
	padding-right: 10px;
	font-weight: 700;
	color: #000000;
	text-align: center;
}
.nomal_tbl td {
	border-bottom: 1px solid #C9C9C9;
	padding-top: 35px;
	padding-bottom: 35px;
	padding-left: 20px;
	padding-right: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: left;
}

/* テキスト */
.text_SZ_s {
	font-size: 15px;
}
.text_SZ_xs {
	font-size: 14px;
	line-height: 1.6em;
}
.link_nomal {
	color: #4E4E4E;
	text-decoration: underline;
}


/* ローマ字フォント */
.font_ptsuns_400 {
	font-family: 'PT Sans', sans-serif;
	font-weight: 400;
}
.font_ptsuns_700 {
	font-family: 'PT Sans', sans-serif;
	font-weight: 700;
}



/* フェードイン 下から上 */
.fadein_up {
    opacity : 0.1;
    transform : translate(0px, 100px);
    transition : all 500ms;
}

/* PC・スマホ 表示非表示 */
.pc_none {
	display: none;
}
.sp_none {
}

/* TEL リンク */
a[href^="tel:"] { 
    cursor: default;
} 

/* その他 */
.over {
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* header      　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#header {
	height: 100px;
	background-color: #FFFFFF;
}

/* logo */
#logo {
	position: absolute;
	left: 33px;
	top: 36px;
	width: 204px;
	height: 18px;
	background-repeat: no-repeat;
	background-image: url(../images/logo.png);
	background-size: 204px 18px;
	text-indent: -9999px;
}
#logo a {
	display: block;
	height: 18px;
}


/* menu */
#gv_menu {
	font-size: 0px;
	position: absolute;
	right: 120px;
	top: 34px;
}
#gv_menu li {
	font-size: 20px;
	display: inline-block;
	margin-left: 36px;
}
#gv_menu li a {
	color: #000000;
	text-decoration: none;
	webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
#gv_menu li a:hover {
	color: #999999;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ハンバーガーメニュー　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* toggle */
#nav-toggle {
	position: fixed;
	top: 40px;
	right: 33px;
	height: 22px;
	cursor: pointer;
}
#nav-toggle &gt; div {
  position: relative;
  width: 30px;
}
#nav-toggle span {
	width: 100%;
	height: 3px;
	left: 0;
	display: block;
	background: #000;
	position: absolute;
	transition: transform 0.3s ease-in-out, top 0.5s ease;
	border-radius: 20px;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 9px;
}
#nav-toggle span:nth-child(3) {
  top: 18px;
}
#nav-toggle:hover span:nth-child(1) {
  top: 2px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 16px;
}

.open #nav-toggle span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 10px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}


#nav-toggle {
  z-index: 1000;
}

#gloval-nav nav {
  z-index: 999;
}

/* nav */
#gloval-nav {
	background: #FFFFFF;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 990;
	display: table;
	visibility: hidden;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 29px;
	opacity: 0;
	transition: opacity 0.6s ease, visibility 0.6s ease;
	width: 100%;
	height: 100vh;
}

#gloval-nav a {
  text-decoration: none;
  transition: color 0.6s ease;
}


/* open */
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}

/* nav内ロゴ */
#nav_logo {
	position: absolute;
	left: 33px;
	top: 22px;
	z-index: 9999;
}
#nav_logo img {
	width: 204px;
	height: 18px;
}

/* 左ブロック */
#block_left {
	width: 50%;
	text-align: right;
	vertical-align: middle;
	padding-right: 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #0F8FD1;
	display: table-cell;
	font-size: 22px;
}
#block_left li {
	margin-bottom: 80px;
	font-weight: 700;
	 opacity: 0;
    transform: translateX(200px);
    transition: transform 0.6s ease, opacity 0.2s ease;
}
#block_left li:last-child {
	margin-bottom: 0px;
}
#block_left li a {
	color: #FFFFFF;
}
#block_left li a:hover {
	color: #8BD2F6;
}
#block_left ul li:nth-child(2) {
  transition-delay: 0.2s;
}
#block_left ul li:nth-child(3) {
  transition-delay: 0.4s;
}
#block_left ul li:nth-child(4) {
  transition-delay: 0.6s;
}

/* 右ブロック */
#block_right {
	width: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 40px;
	vertical-align: middle;
	background-color: #FFFFFF;
	display: table-cell;
	font-size: 16px;
	font-weight: 700;
}
#block_right li {
	margin-bottom: 9px;
	font-weight: 700;
	 opacity: 0;
    transform: translateX(-200px);
    transition: transform 0.6s ease, opacity 0.2s ease;
}
#block_right li:nth-child(6) {
	margin-bottom: 35px;
}
#block_right li:nth-child(7) {
	margin-bottom: 35px;
}
#block_right li:last-child {
	margin-bottom: 0px;
}
#block_right li a {
	color: #0F8FD1;
}
#block_right li a:hover {
	color: #8BD2F6;
}
#block_right ul li:nth-child(2) {
  transition-delay: 0.1s;
}
#block_right ul li:nth-child(3) {
  transition-delay: 0.2s;
}
#block_right ul li:nth-child(4) {
  transition-delay: 0.3s;
}
#block_right ul li:nth-child(5) {
  transition-delay: 0.4s;
}
#block_right ul li:nth-child(6) {
  transition-delay: 0.5s;
}
#block_right ul li:nth-child(7) {
  transition-delay: 0.6s;
}
#block_right ul li:nth-child(8) {
  transition-delay: 0.7s;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* footer      　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#footer {
	background-color: #0F8FD1;
	padding-top: 40px;
	color: #FFFFFF;
	padding-bottom: 20px;
}

/* about */
#ft_about {
	margin-bottom: 45px;
	padding-bottom: 45px;
	border-bottom: 1px solid rgba(255,255,255,0.55);
	display: table;
	font-size: 16px;
	width: 100%;
}
#ft_about p {
	font-weight: 700;
}

#ft_abt_name {
	display: table-cell;
	vertical-align: middle;
	width: 170px;
}
#ft_abt_adress {
	vertical-align: middle;
	display: table-cell;
	text-align: center;
}
#ft_abt_tel {
	display: table-cell;
	vertical-align: middle;
	text-align: right;
	width: 170px;
}
#ft_abt_tel a {
	color: #FFFFFF;
	text-decoration: none;
}


/* banner */
#ft_banner {
	line-height: 1em;
	margin-bottom: 20px;
}
#ft_banner li {
	float: left;
	margin-right: 40px;

}
#bnr_hokushin img {
	width: 202px;
	height: 35px;
}
#bnr_eletec img {
	width: 164px;
	height: 19px;
	margin-top: 8px;

}
#bnr_ost img {
	padding-top: 3px;
	width: 139px;
	height: 30px;
}
#bnr_hts img {
	width: 159px;
	height: 14px;
	margin-top: 11px;
}

/* copy */
#copy {
	font-size: 14px;
	text-align: right;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* PAGE TOP            　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

#page_top {
	position: fixed;
	bottom: 50px;
	right: 30px;
	z-index: 99;
}
#page_top img {
	width: 50px;
	height: auto;

}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* SERVICE ボタン　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#service_bt {
	width: 100%;
}

#service_bt li {
	display: block;
	position: relative;
	width: calc(100% / 3);
	float: left;
	cursor: pointer;
}

.bt_thumb {
	height: 455px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	text-indent: -9999px;
}
.bt_thumb img {
	width: auto;
	height: 455px;
}
.bt_thumb a {
	display: block;
}

.bt_name {
	margin-left: 85px;
	background-color: #000000;
	text-align: center;
	color: #FFFFFF;
	font-size: 25px;
	padding-top: 10px;
	padding-bottom: 10px;
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 80%;
}

/* 個別指定 */
#sv_01 {
	background-image: url(../images/service_bt_01.png);
}
#sv_02 {
	background-image: url(../images/service_bt_02.png);
}
#sv_03 {
	background-image: url(../images/service_bt_03.png);
}
#sv_04 {
	background-image: url(../images/service_bt_04.png);
}
#sv_05 {
	background-image: url(../images/service_bt_05.png);
}
#sv_06 {
	background-image: url(../images/service_bt_06.png);
}









/* ↓↓↓↓↓↓↓↓↓↓ ---以下スマホ--- ↓↓↓↓↓↓↓↓↓↓ */


@media screen and (max-width: 768px) {

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 基本あれこれ　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body {
	font-size: 14px;
}

/* ボックス */
.doc_set {
	padding-left: 20px;
	padding-right: 20px;
}
.inner {
	width: 100%;
}

/* テーブル */
.nomal_tbl table {
	border-top-style: none;
}
.nomal_tbl th {
	border-bottom: 1px solid #C9C9C9;
	border-top: 1px solid #C9C9C9;
	padding-top: 15px;
	padding-bottom: 15px;
	width: 100%;
	padding-left: 10px;
	padding-right: 10px;
	text-align: left;
	display: block;	
}
.nomal_tbl td {
	border-bottom-style: none;
	padding-top: 15px;
	padding-bottom: 35px;
	padding-left: 10px;
	padding-right: 10px;
	display: block;
	width: 100%;
}

/* PC・スマホ 表示非表示 */
.pc_none {
	display: inherit;
}
.sp_none {
	display: none;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* header      　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#header {
	height: 56px;
}

/* logo */
#logo {
	left: 19px;
	top: 19px;
}

/* menu */
#gv_menu {
	display: none;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ハンバーガーメニュー　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* toggle */
#nav-toggle {
	top: 17px;
	right: 15px;
}

/* nav */
#gloval-nav {
	display: inherit;
}

#gloval-nav a {
  text-decoration: none;
  transition: color 0.6s ease;
}

/* nav内ロゴ */
#nav_logo {
	left: 19px;
	top: 12px;
}

/* 左ブロック */
#block_left {
	width: 100%;
	height: 50vh;
	text-align: center;
	padding-right: 0px;
	font-size: 22px;
	display: inherit;
	position: relative;
}
#block_left ul {
	position: absolute;
	bottom: 40px;
	margin-left: auto;
	margin-right: auto;
	left: 0px;
	right: 0px;
	width: 100%;
}
#block_left li {
	margin-bottom: 15px;
    transform: translateX(200px);
}


/* 右ブロック */
#block_right {
	width: 100%;
	height: 50vh;
	display: inherit;
	font-size: 17px;
	padding-left: 0px;
	text-align: center;
}
#block_right ul {
	padding-top: 20px;
}
#block_right li {
	margin-bottom: 0px;
    transform: translateX(200px);
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* footer      　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#footer {
	padding-top: 30px;
}

/* about */
#ft_about {
	margin-bottom: 30px;
	padding-bottom: 30px;
	display: inherit;
	font-size: 12px;
	text-align: center;
}

#ft_abt_name {
	display: inherit;
	width: 100%;
	font-size: 20px;
	margin-bottom: 8px;
}
#ft_abt_adress {
	display: inherit;
	width: 100%;
}
#ft_abt_tel {
	display: inherit;
	width: 100%;
	text-align: center;
}

/* banner */
#ft_banner {
	margin-bottom: 40px;
}
#ft_banner li {
	float: none;
	margin-right: 0px;
	text-align: center;
	margin-bottom: 20px;
}
#bnr_eletec img {
	margin-top: 0px;

}
#bnr_ost img {
	padding-top: 0px;
}
#bnr_hts img {
	margin-top: 0px;
}

/* copy */
#copy {
	font-size: 12px;
	text-align: center;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* PAGE TOP            　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

#page_top {
	bottom: 50px;
	right: 10px;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* SERVICE ボタン　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#service_bt li {
	position: relative;
	width: 50%;
	padding-bottom: 0px;
	margin-bottom: 6px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 4px;
	padding-right: 4px;
}


.bt_thumb {
	height: 100%;
	background-image: url(transparent);
	text-indent: 0px;
}
.bt_thumb img {
	width: 100%;
	height: auto;
}

.bt_name {
	width: auto;
	margin-left: 0px;
	margin-right: 0px;
	font-size: 12px;
	padding-top: 2px;
	padding-bottom: 2px;
	position: static;
}


}
</pre></body></html>