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

* {
	margin: 0;
	padding: 0;
	list-style-type: none;
	border: none;
	box-sizing: border-box;
}

.cf:before,
.cf:after {
    content:"";
    display:table;
}
 
.cf:after {
    clear:both;
}

::-moz-selection {
	background-color: #555;
	color: #FFF;
}

::selection {
	background-color: #555;
	color: #FFF;
}

@font-face {
  font-family: 'Noto-Medium';
  src: url('../font/Noto-Medium.woff') format('woff'),
       url('../font/Noto-Medium.ttf')  format('truetype');
}

@font-face {
  font-family: 'Noto-Regular';
  src: url('../font/Noto-Regular.woff') format('woff'),
       url('../font/Noto-Regular.ttf')  format('truetype');
}

@font-face {
  font-family: 'Noto-Light';
  src: url('../font/Noto-Light.woff') format('woff'),
       url('../font/Noto-Light.ttf')  format('truetype');
}

@font-face {
  font-family: 'Noto-DemiLight';
  src: url('../font/Noto-DemiLight.woff') format('woff'),
       url('../font/Noto-DemiLight.ttf')  format('truetype');
}

@font-face {
  font-family: 'GenEiKoburiMinT-R';
  src: url('../font/GenEiKoburiMinT-R.woff') format('woff'),
       url('../font/GenEiKoburiMinT-R.ttf')  format('truetype');
}

h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
}

img {
	display: block;
}

body {
	font-size: 14px;
	font-family: 'Noto-DemiLight',"游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3",Hiragino Kaku Gothic ProN,"メイリオ",Meiryo,sans-serif;
	color: #444;
	line-height: 1.7;
	text-align: justify;
	font-feature-settings: "palt";
	box-sizing: border-box;
	background-color: #FFF;
}

/*ieハック*/
#notice {
	display: none;
	display: block\9;
	font-size: 100%;
	font-weight: bold;
	color: #FF0000;
	text-align: center;
	padding: 10px 0;
	margin: 200px 0 0 0;
	position: relative;
	background-color: #FFF;
	z-index: 100;
}

@media all and (-ms-high-contrast:none){
body {
	  font-family: "メイリオ", Meiryo, "ＭＳ ゴシック", "MS Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
} 
}

/*ボタン*/
.hover {
    position: relative;
    border: 1px solid #C8C8C8;
    transition: 0.2s;
}

.hover::before,
.hover::after,
.hover span::before,
.hover span::after {
	width: 0;
    height: 0;
    position: absolute;
    content: '';
    border: 1px solid transparent;
    transition: 0.2s;
	z-index: 2;
	visibility: hidden;
}

.hover::before {
    top: -1px;
    left: -1px;
    border-left-color: #004DA0;
}

.hover::after {
    bottom: -1px;
    right: -1px;
    border-right-color: #004DA0;
}

.hover span::before {
    bottom: -1px;
    left: -1px;
    border-bottom-color: #004DA0;
}

.hover span::after {
    top: -1px;
    right: -1px;
    border-top-color: #004DA0;
}

.hover:hover::before,
.hover:hover::after {
    height: 100%;
    visibility: visible;
}

.hover:hover span::before,
.hover:hover span::after {
    width: 100%;
    visibility: visible;
}

/*ナビゲーション*/
header {
	width: 100%;
	padding: 3px 3px 0 3px;
	position: fixed;
	top: 0;
	transition: 0.3s;
	z-index: 3;
}

#top {
	width: 100%;
	padding: 10px 15px 10px 20px;
	margin: 0 auto;
	display: -webkit-flex;
    display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
	background-color: #FFF;
	transition: 0.3s;
}

header.fixed {
	padding: 0;
	border-bottom: 1px solid #C8C8C8;
}

header.fixed #top {
	padding: 8px 33px;
	background-color: #FFF;
}

#top p {
	width: 140px;
}

#top nav {
	display: -webkit-flex;
    display: flex;
	-webkit-align-items: center;
    align-items: center;
}

#top nav ul {
	display: -webkit-flex;
    display: flex;
}

#top nav ul li {
	height: 1em;
	line-height: 1;
	letter-spacing: 0.01em;
	display: flex;
	display: -webkit-flex;
}

#top nav ul li:nth-child(1) {
	width: 6em;
}

#top nav ul li:nth-child(2) {
	width: 6em;
}

#top nav ul li:nth-child(3) {
	width: 6em;
}

#top nav ul li:nth-child(4) {
	width: 6em;
}

#top nav ul li:nth-child(5) {
	width: 5em;
}

#top nav ul li:nth-child(6) {
	width: 6.3em;
}

#top nav ul li:nth-child(7) {
	width: 6em;
}

#top nav ul li a {
	width: 100%;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 90%;
	color: #444;
	text-decoration: none;
	letter-spacing: 0.03em;
	display: block;
	position: relative;
	transition: 0.3s;
}

.en,
.jp {
	position: absolute;
	text-align: center;
	transition: 0.3s;
}

.jp {
	font-size: 90%;
	padding: 1px 0 0 0;
	opacity: 0;
}

#top nav ul li a:hover .en {
	opacity: 0;
}

#top nav ul li a:hover .jp {
	opacity: 1;
}

#webcatalog {
	font-size: 80%;
	color: #444;
	line-height: 1;
	text-decoration: none;
	padding: 5px 22px 5px 5px;
	border: 1px solid #C8C8C8;
	background-image: url(../images/common/icon_blank.svg);
	background-position: right center;
	background-repeat: no-repeat;
}

/*ハンバーガーメニュー*/
#trigger,
#trigger span {
	transition: ease 0.2s;
}

#trigger {
	display: none;
	width: 20px;
	height: 17px;
	position: absolute;
	right: 13px;
	top: 22px;
}

#trigger span {
	width: 100%;
	height: 3px;
	position: absolute;
	left: 0;
	background-color: #004DA0;
}

#trigger span:nth-of-type(1) {
	top: 0;
}

#trigger span:nth-of-type(2) {
	top: 7px;
}

#trigger span:nth-of-type(3) {
	bottom: 0;
}

.active #trigger span:nth-child(1) {
	-webkit-transform: translateY(7px) rotate(-45deg);
	transform: translateY(7px) rotate(-45deg);
}

.active #trigger span:nth-child(2) {
	opacity: 0;
}

.active #trigger span:nth-child(3) {
	-webkit-transform: translateY(-6px) rotate(45deg);
	transform: translateY(-6px) rotate(45deg);
}

/*ヘッダーイメージ*/
#image {
	width: 100%;
	height: 150px;
	background-position: center center;
	background-size: cover;
    position: fixed;
	top: 0;
    z-index: -1
}

/*コンテンツ*/
#content_1,
#content_2 {
	width: 100%;
	padding: 40px 0 0 0;
	margin: 150px 0;
	background-color: #FFF;
}

#content_1 {
	margin: 150px 0;
}

#content_2 {
	margin: 70px 0 150px 0;
}

#content_1 h1,
#content_2 h1 {
	max-width: 1240px;
	padding: 0 20px;
	margin: 0 auto 20px auto;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 200%;
	color: #004DA0;
	line-height: 1;
	position: relative;
}

#content_1 h1 span,
#content_2 h1 span {
	font-family: 'Noto-Medium';
	font-size: 50%;

}

#intro {
	max-width: 1240px;
	padding: 0 20px;
	margin: 0 auto 40px auto;
	font-family: 'Noto-Medium';
	color: #555;
	font-feature-settings: "palt";
}

#intro a {
	color: #555;
	text-decoration: underline;
}

#intro a:hover {
	text-decoration: none;
}


/*フッター*/
footer {
	width: 100%;
	padding: 30px 60px 15px 60px;
	font-size: 80%;
	color: #DFDFDF;
	line-height: 1.8;
	letter-spacing: 0.1em;
	display: -webkit-flex;
    display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-align-items: flex-end;
    align-items: flex-end;
	background-color: #333;
}

footer a {
	color: #FFF;
	text-decoration: none;
	transition: 0.2s;
}

footer a:hover {
	opacity: 0.5;
}

footer div:first-child p {
	max-width: 200px;
	margin: 0 0 10px 0;
}

footer div:first-child span {
	display: block;
}

footer div:first-child span:nth-child(3) {
	margin: 0 0 10px 0;
}

footer dl {
	display: table;
}

footer dl dt {
	width: 7em;
}

footer dl dd {
	display: table-cell;
}


footer div:last-child nav ul {
	margin: 0 0 15px 0;
	display: flex;
}

footer div:last-child nav ul li {
	line-height: 1;
	margin: 0 10px 0 0;
}

footer div:last-child nav ul li:last-child {
	margin: 0;
}

footer div:last-child span {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 90%;
	text-align: right;
	display: block;
}

footer div:last-child span::before {
	content: "©";
}

/*トップへ戻る*/
#return {
	width: 51px;
	height: 51px;
	position: fixed;
	bottom: 50px;
	right: 5px;
	z-index: 100;
}

@media screen and (max-width: 1000px) {
body {
	font-size: 13px;
}

/*ナビゲーション*/
header {
	position: relative;
	border-bottom: 1px solid #C8C8C8;
}

#top {
	padding: 10px;
}

#top p {
	width: 110px;
}

header.fixed {
	padding: 3px 3px 0 3px;
}

header.fixed #top {
	padding: 10px;
}

#top nav {
	padding: 20px;
	margin: 0 0 0 0;
	display: block;
	border: 1px solid #C8C8C8;
	position: absolute;
	right: 3px;
	top: -360px;
	transition: 0.3s;
	background-color: #FFF;
	z-index: 2;
}

#top nav ul {
	display: block;
}

#top nav ul li {
	margin: 0 0 20px 0;
	border: none;
}

#webcatalog {
	padding: 3px 25px 3px 5px;
}

/*ハンバーガーメニュー*/
#trigger {
	display: block;
}

.active nav {
	-webkit-transform: translateY(410px);
	transform: translateY(410px);
}

/*ヘッダーイメージ*/
#image {
	display: none;
}

/*コンテンツ*/
#content_1,
#content_2 {
	padding: 20px 0 75px 0;
	margin: 0;
}

/*フッター*/
footer {
	padding: 30px 10px 15px 10px;
	display: block;
}

footer div:first-child {
	margin: 0 0 15px 0;
}

footer div:last-child nav {
	display: none;
}

footer div:last-child span {
	text-align: center;
}

/*トップへ戻る*/
#return {
	display: none;
}
}

@media screen and (max-width: 700px) {
/*コンテンツ*/
#content_1 h1,
#content_2 h1 {
	padding: 0 10px;
	margin: 0 auto 10px auto;
}

#intro {
	padding: 0 10px;
	margin: 0 auto 20px auto;
}
}</pre></body></html>