@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}

body {
	min-width: 900px;
	font-size: 62.5%;
}

body,
table,
input, textarea, select, option {
	font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Arial,"Yu Gothic", "Meiryo", sans-serif;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
	display: block;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

img {
	vertical-align: top;
}

a,
a:link {
	color: #0090ff;
	text-decoration: none;
}

a:visited {
	color: #5fa1ff;
}

a:hover {
	text-decoration:underline;
}

a:active {
	color: #5fa1ff;
}
.ex-link {
  font-size: 15px;
  line-height: 1.85;
  color: #0090ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.ex-link::after {
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 5px;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask: url("../../img/common/ex_link.svg") no-repeat center / contain;
  mask: url("../../img/common/ex_link.svg") no-repeat center / contain;
}


/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1000px;
	color: #002d64;
	font-size: 15px;
	line-height: 1.5;
	background-color: #96c9f8;
}

#container{
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	text-align: left;
}
#main {
	flex: auto;
	margin: 0 auto;
	width: 960px;
	padding: 40px;
	padding-bottom: 60px;
	background-color: #fff;
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	display: flex;
	align-items: center;
	height: 75px;
	padding: 15px 0 10px;
	background-color: #283158;
}

#gHeader h1 {
	text-align: center;
	margin: 0 auto;
	width: 960px;
	font-size: 35px;
	letter-spacing: 1px;
}
#gHeader h1 span{
	display: block;
	font-size: 13px;
	font-weight: normal;
	color: #fff;
	letter-spacing: 0;
}
#gHeader h1 a{
	color: #fef000;
	text-decoration: none;
}
#gHeader h1 a:hover {
	opacity: 0.7;
}

/*------------------------------------------------------------
	パンクズリスト
------------------------------------------------------------*/
#pagePath {
}

#pagePath li {
	display: inline;
	color: #000;
	font-size: 1.2em;
}

#pagePath li a {
}

/*------------------------------------------------------------
	conts
------------------------------------------------------------*/
#conts {
	width: 728px;
	float: right;
}

/*------------------------------------------------------------
	sideBar
------------------------------------------------------------*/
#sideBar {
	width: 200px;
	float: left;
}

.sNavi {
	margin-bottom: 30px;
	border-top: 1px solid #dfeffd;
}

.sNavi li {
	border: 1px solid #dfeffd;
	border-top: none;
	position: relative;
}

.sNavi a {
	padding: 0 0 0 20px;
	display: block;
	font-size: 15px;
	line-height: 3.33;
	color: #fff;
	text-decoration: none;
	background-color: #002d64;
}

.sNavi li a::after{
	content: "＞";
	font-size: 1em;
	position: absolute;
	right: 15px;
}

.sNavi a:hover {
	text-decoration: underline;
	background: #002D64;
	background: linear-gradient(180deg,rgba(0, 45, 100, 1) 0%, rgba(0, 45, 100, 0.8) 50%, rgba(0, 45, 100, 1) 100%);
}

.sNavi li a:hover::after{
	right: 8px;
}

.sNavi li a span{
	display: inline-block;
	transform: scaleX(0.85);
	transform-origin: top left;
}
/*
#sideBar .banner {
	padding: 0;
	background-color: #329996;
	border: 1px solid #017F7C;
}
*/
#sideBar .banner box{
	display: flex;
	flex-direction: column;
}

#sideBar .banner box img{
	width: 100%;
	height: auto !important;
	margin-top: 1rem;
}
/*------------------------------------------------------------
	TOPにもどる
------------------------------------------------------------*/
.pagetopBtn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(0, 142, 251, 0.75);/*#002d64;*/
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  opacity: 0; /*非表示*/
  transform: translateY(20px);
  transition: all .5s ease;
}
.pagetopBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 1rem;
  transition: all .5s ease;
}
.pagetopBtn a:hover {
  opacity: .7;
}
.pagetopBtn.is-show {
  opacity: 1; /*表示*/
  transform: translateY(0);
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/

#gFooter {
	padding-top: 24px;
	overflow: hidden;
	text-align: center;
	color: #fff;
	background-color: #283158;
}
#gFooter p span{
	display: block;
	margin-bottom: 1em;
	font-weight: bold;
}
#gFooter p.copyright {
/*margin: 0 auto;*/
	margin-top: 24px;
	padding: 0.5em 0;
	color: #140700;
	font-size: 12px;
	background-color: #50a5f3;
}
#gFooter a,
#gFooter a:link,
#gFooter a:visited,
#gFooter a:active {
	color: #fff;
	text-decoration: none;
}

#gFooter a:hover {
	text-decoration:underline;
}
