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

   mixin

===========================================================================*/
/* webfont */
@import url('//cdn.jsdelivr.net/npm/yakuhanjp@3.0.0/dist/css/yakuhanjp.min.css');
@import url('//cdn.jsdelivr.net/npm/yakuhanjp@3.4.1/dist/css/yakuhanmp-noto.min.css');
@import url('//fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&amp;display=swap');
@import url('//fonts.googleapis.com/css2?family=EB+Garamond:wght@600;700&amp;family=Lato:wght@700&amp;display=swap');
/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/
html {
	font-size: 62.5%;
}

/* media query -&gt; sp
=================================================================*/
@media only screen and (max-width: 767px) {
	width: 100%;
	height: 100%;
}

/*--------------------------------------------------------------------------
   head
---------------------------------------------------------------------------*/
head {
	font-family: 'pc';
}

/* media query -&gt; sp
=================================================================*/
@media only screen and (max-width: 767px) {
	head {
		font-family: 'sp';
	}
}

/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/
body {
	color: #333;
	font-family: 'YakuHanJP', '貂ｸ繧ｴ繧ｷ繝�け菴�', YuGothic, '貂ｸ繧ｴ繧ｷ繝�け Medium', 'Yu Gothic Medium', '貂ｸ繧ｴ繧ｷ繝�け', 'Yu Gothic', 'Noto Sans JP', 'Hiragino Sans', '繝偵Λ繧ｮ繝手ｧ偵ざ繧ｷ繝�け', 'Hiragino Kaku Gothic Pro', '繝偵Λ繧ｮ繝手ｧ偵ざ Pro W3', '繝｡繧､繝ｪ繧ｪ', 'Meiryo', '�ｭ�ｳ �ｰ繧ｴ繧ｷ繝�け', Osaka, Verdana, sans-serif;
	/*font-weight: 500;*/
	font-weight: 200;
	line-height: 1.8;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.os-mac body {
	font-weight: 600;
}

/* media query -&gt; sp
=================================================================*/
@media only screen and (max-width: 767px) {
	body {
		width: 100%;
		min-width: 320px;
		height: auto;
		line-height: 1.5;
	}
}

/*--------------------------------------------------------------------------
   a
---------------------------------------------------------------------------*/
a {
	color: inherit;
	outline: none;

	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:link,
a:visited {
	text-decoration: none;
}

/*--------------------------------------------------------------------------
   reset
---------------------------------------------------------------------------*/
* {
	word-wrap: break-word;
	outline: none;
}

img {
	vertical-align: top;
}

ul,
ol {
	list-style: none;
}

/* Placeholder
-----------------------------------------------*/
::-webkit-input-placeholder {
	color: #999;
}

::-moz-placeholder {
	color: #999;
}

:-ms-input-placeholder {
	color: #999;
}

:-moz-placeholder {
	color: #999;
}

/*--------------------------------------------------------------------------
   selection
---------------------------------------------------------------------------*/

::selection {
	background-color: #b3d4fc;
	color: #fff;
	text-shadow: none;
}

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

Super Form Reset

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
	display: inline-block;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	vertical-align: middle;
	white-space: normal;
	-webkit-appearance: none;

	   -moz-appearance: none;
	        appearance: none;
}

/* Remove the stupid outer glow in Webkit */
input:focus,
select:focus,
textarea:focus {
	outline: 0;
}

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
	box-sizing: content-box;
	white-space: pre-wrap;
	word-wrap: break-word;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
	box-sizing: border-box;
}

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
	width: 13px;
	height: 13px;
}

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
	-webkit-box-sizing: content-box;
	-webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
	display: none;
}

/* Buttons
-----------------------------------------------*/
button,
input[type='reset'],
input[type='button'],
input[type='submit'] {
	/* Fix IE7 display bug */
	overflow: visible;
	width: auto;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
	padding: 0;
	border: 0;
	background: none;
}

/* Textarea
-----------------------------------------------*/
textarea {
	/* Turn off scroll bars in IE unless needed */
	overflow: auto;
	/* Move the label to the top */
	vertical-align: top;
}

/* Selects
-----------------------------------------------*/
select[multiple] {
	/* Move the label to the top */
	vertical-align: top;
}

/*--------------------------------------------------------------------------
   l-page
---------------------------------------------------------------------------*/
.l-page-wrapper {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

@media only screen and (max-width: 767px) {
	.l-page {
		overflow-x: hidden;
		overflow-y: auto;
		width: 100%;
		height: 100%;

		-webkit-overflow-scrolling: touch;
	}
}

@media only screen and (max-width: 767px) {
	.l-page__main {
		padding-top: 75px;
	}
}

/*--------------------------------------------------------------------------
   l-wrap
---------------------------------------------------------------------------*/
.l-wrap {
	position: relative;
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 10px;
}

/* media query -&gt; sp
=================================================================*/
@media only screen and (max-width: 767px) {
	.l-wrap {
		width: auto;
		max-width: none;
		padding: 0 20px;
	}
}

/*--------------------------------------------------------------------------
   l-grid
---------------------------------------------------------------------------*/
.l-grid {
	box-sizing: border-box;
}

.l-grid::after {
	display: table;
	clear: both;
	content: '';
}

.l-grid__item {
	display: block;
	box-sizing: inherit;
	float: left;
}

.l-grid__item--1of2 {
	width: 50%;
}

.l-grid__item--1of3 {
	width: 33.33333333%;
}

.l-grid__item--1of4 {
	width: 25%;
}

.l-grid__item--1of5 {
	width: 20%;
}

.l-grid__item--1of6 {
	width: 16.66666666%;
}

/*--------------------------------------------------------------------------
   l-grid
---------------------------------------------------------------------------*/
.l-inline-grid {
	box-sizing: border-box;
	white-space: nowrap;
}

.l-inline-grid__item {
	display: inline-block;
	box-sizing: inherit;
}

.l-inline-grid__item--1of2 {
	width: 50%;
}

.l-inline-grid__item--1of3 {
	width: 33.33333333%;
}

.l-inline-grid__item--1of4 {
	width: 25%;
}

.l-inline-grid__item--1of5 {
	width: 20%;
}

.l-inline-grid__item--1of6 {
	width: 16.66666666%;
}

/*--------------------------------------------------------------------------
   l-flex-grid
---------------------------------------------------------------------------*/
.l-flex-grid {
	display: -ms-flexbox;
	display: flex;
	box-sizing: border-box;

	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.l-flex-grid__item {
	box-sizing: inherit;
}

.l-flex-grid__item--full {
	width: 100%;
}

.l-flex-grid__item--1of2 {
	width: 50%;
}

.l-flex-grid__item--1of3 {
	width: 33.33333333%;
}

.l-flex-grid__item--1of4 {
	width: 25%;
}

.l-flex-grid__item--1of5 {
	width: 20%;
}

.l-flex-grid__item--1of6 {
	width: 16.66666666%;
}

/*--------------------------------------------------------------------------
   .g-header
---------------------------------------------------------------------------*/
.g-header {
	position: absolute;
	z-index: 999;
	width: 62.9%;
	max-width: 1208px;
	height: 94px;
	padding-right: 1.45%;
	border-radius: 0 0 40px 0;
	background-color: #fff;
	transition: box-shadow .2s;
}

@media screen and (max-width: 1210px) {
	.g-header {
		width: 750px;
	}
}

@media only screen and (max-width: 767px) {
	.g-header {
		width: 100%;
		min-width: 320px;
		height: 75px;
		padding: 0 13px;
		border-radius: 0;
	}
}

.g-header.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 0 8px rgba(51, 51, 51, .2);
}

.g-header__logo {
	position: absolute;
	top: 50%;
	left: 11.6%;
	z-index: 99;
	line-height: 1;
	transform: translateY(-50%);
}

@media screen and (max-width: 1700px) {
	.g-header__logo {
		left: 6%;
	}
}

@media screen and (max-width: 1600px) {
	.g-header__logo {
		left: 2%;
	}
}

@media only screen and (max-width: 767px) {
	.g-header__logo {
		left: 13px;
	}
}

.g-header__logo a {
	display: inline-block;
	text-align: center;
}

.g-header__logo .img img {
	width: 141px;
	height: auto;
}

@media screen and (max-width: 1540px) {
	.g-header__logo .img img {
		width: 112px;
	}
}

@media only screen and (max-width: 767px) {
	.g-header__logo .img img {
		width: 96px;
	}
}

.g-header__logo .txt {
	display: block;
	margin-top: 6px;
	color: #004683;
	font-size: 1.9rem;
	font-weight: 700;
}

@media screen and (max-width: 1540px) {
	.g-header__logo .txt {
		font-size: 1.6rem;
	}
}

.g-header__menubtn {
	display: none;
}

@media only screen and (max-width: 767px) {
	.g-header__menubtn {
		display: block;
		position: absolute;
		top: 8px;
		right: 13px;
		z-index: 999;
		width: 55px;
		height: 55px;
		border-radius: 50%;
		background-color: #005fb2;
		cursor: pointer;
	}
	.g-header__menubtn .lines {
		display: block;
		position: absolute;
		top: 16px;
		left: 18px;
		width: 20px;
		height: 10px;
		margin: 0;
		padding: 0;
		box-shadow: none;
		border: none;
		border-radius: none;
		text-indent: -9999px;
		font-size: 0;
		-webkit-appearance: none;

		   -moz-appearance: none;
		        appearance: none;
	}
	.g-header__menubtn .lines span {
		display: inline-block;
		box-sizing: border-box;
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #fff;
		transition: all .4s;
	}
	.g-header__menubtn .lines span:nth-of-type(1) {
		top: 0;
		animation: menu-bar01 .75s forwards;
	}
	.g-header__menubtn .lines span:nth-of-type(2) {
		bottom: 0;
		animation: menu-bar02 .75s forwards;
	}
	.g-header__menubtn .lines:focus {
		outline: none;
	}
	.g-header__menubtn .txt {
		display: block;
		position: absolute;
		bottom: 10px;
		left: 50%;
		width: 100%;
		text-align: center;
		color: #fff;
		font-family: 'Lato', sans-serif;
		font-size: 1.1rem;
		transform: translateX(-50%);
	}
	.g-header__menubtn .txt::before {
		position: absolute;
		top: 0;
		left: 50%;
		width: 100%;
		content: 'CLOSE';
		transform: translateX(-50%);
		opacity: 0;
	}
	.g-header__menubtn .txt span {
		display: inline-block;
	}
}

.g-header__wrap {
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;

	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
	.g-header__wrap {
		display: block;
		overflow-y: scroll;
		position: absolute;
		top: 75px;
		left: 0;
		height: calc(100vh - 75px);
		padding: 35px 20px;
		background-color: #005fb2;
		visibility: hidden;
		pointer-events: none;
		opacity: 0;
	}
}

.g-header__gnav {
	/*position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;*/
}

.g-header__gnav .gnav {
	display: -ms-flexbox;
	display: flex;
}

@media only screen and (max-width: 767px) {
	.g-header__gnav .gnav {
		display: block;
	}
}

.g-header__gnav .gnav__item {
	position: relative;
	font-size: 1.6rem;
}

@media screen and (max-width: 1540px) {
	.g-header__gnav .gnav__item {
		font-size: 1.4rem;
	}
}

@media only screen and (max-width: 767px) {
	.g-header__gnav .gnav__item {
		padding-left: 30px;
		font-size: 1.8rem;
		font-weight: 700;
	}
	.g-header__gnav .gnav__item::before {
		position: absolute;
		top: 50%;
		left: 0;
		width: 15px;
		height: 3px;
		background-color: #fff;
		content: '';
		opacity: 0;
	}
}

.g-header__gnav .gnav__item:not(:first-of-type) {
	margin-left: 30px;
}

@media screen and (max-width: 1340px) {
	.g-header__gnav .gnav__item:not(:first-of-type) {
		margin-left: 15px;
	}
}

@media only screen and (max-width: 767px) {
	.g-header__gnav .gnav__item:not(:first-of-type) {
		margin: 20px 0 0;
	}
}

.g-header__gnav .gnav__item a {
	display: block;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.g-header__gnav .gnav__item a {
		color: #fff;
	}
}

.g-header__gnav .gnav__item a::after {
	display: block;
	width: 0;
	height: 3px;
	margin: 2px auto 0;
	background-color: #005fb2;
	content: '';
	transition: width .2s linear;
}

@media only screen and (max-width: 767px) {
	.g-header__gnav .gnav__item a::after {
		content: none;
	}
}

.mode-pc .g-header__gnav .gnav__item a:hover::after,
.mode-pc .g-header__gnav .gnav__item a.current::after {
	width: 100%;
}

.g-header__contact {
	overflow: hidden;
	width: 186px;
	height: 54px;
	margin-left: 1.35%;
	border-radius: 30px;
}

@media screen and (max-width: 1540px) {
	.g-header__contact {
		width: 148px;
		height: 43px;
	}
}

@media only screen and (max-width: 767px) {
	.g-header__contact {
		width: auto;
		height: 63px;
		margin: 30px 30px 0 30px;
	}
}

.g-header__contact a {
	display: -ms-flexbox;
	display: flex;
	position: relative;
	width: 100%;
	height: 100%;
	padding-right: 20px;
	background-color: #005fb2;
	color: #fff;
	font-size: 1.8rem;

	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media screen and (max-width: 1540px) {
	.g-header__contact a {
		font-size: 1.5rem;
	}
}

@media only screen and (max-width: 767px) {
	.g-header__contact a {
		padding: 0 26px;
		background-color: #fff;
		color: #005fb2;
		font-size: 2.2rem;
		font-weight: 700;

		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

.g-header__contact a::after {
	position: absolute;
	top: 50%;
	right: 20px;
	width: 20px;
	height: 8px;
	background: url('../image/common/ico_arw_white.svg') no-repeat 50% 50%/contain;
	content: '';
	transition: .3s;
	transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
	.g-header__contact a::after {
		right: 25px;
		background: url('../image/common/ico_arw_blue.svg') no-repeat 50% 50%/contain;
	}
}

.mode-pc .g-header__contact a:hover::after {
	right: 14px;
}

/*menu open*/
@media screen and (max-width: 1080px) {
	.is-menuopen .g-header .g-header__menubtn .lines span:nth-of-type(1) {
		transform: translateY(5px) rotate(-45deg);
	}
	.is-menuopen .g-header .g-header__menubtn .lines span:nth-of-type(2) {
		transform: translateY(-3px) rotate(45deg);
	}
	.is-menuopen .g-header .g-header__menubtn .txt::before {
		opacity: 1;
	}
	.is-menuopen .g-header .g-header__menubtn .txt span {
		opacity: 0;
	}
	.is-menuopen .g-header .g-header__wrap {
		visibility: visible;
		transition-timing-function: liner;
		transition-duration: .4s;
		transition-property: all;
		pointer-events: all;
		opacity: 1;
	}
}

/* PC 蟆代＠繧ｹ繧ｯ繝ｭ繝ｼ繝ｫ縺励◆繧峨�繝�ム縺ｮ鬮倥＆蟆上＆縺� */
/*--------------------------------------------------------------------------
   .g-footer
---------------------------------------------------------------------------*/
#Footer {
	margin-bottom: 0 !important;
}

#Footer .inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

#Footer .serach-area,
#Footer #FtFixedNav {
	display: none !important;
}

/*--------------------------------------------------------------------------
   .g-main
---------------------------------------------------------------------------*/
.g-main {
	opacity: 0;
}

.load-complete .g-main {
	transition: opacity 1s ease;
	transition-delay: .6s;
	opacity: 1;
}
</pre></body></html>