@charset "utf-8";

/**
 * html5追加リセット
 */

html {
  width: 100%;
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt" 1;
}

body {
  width: 100%;
  margin: 0;
/*  background-image: url('###');*/
/*  background-repeat: repeat;*/
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333333;
}

h1,h2,h3,h4,h5,h6 {
  margin: 0;
  padding: 0;
  border: none;
  font-weight: normal;
}

img {
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
}

a {
  color: #015db2;
  text-decoration: none;

}
a:hover {
  opacity: 0.5;
  transition: 0.5s;
}

ul {
    margin: 0;
    list-style:none;
}

li {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
  border: none;
}

table th,table td {
  /*padding: 0;
  background-color: transparent;
  font-weight: normal;
  text-align: left;*/
}

i {
  font-family:"Font Awesome 5 Free";
}

address {
  font-style: normal;
}

* {
  box-sizing:border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

div.spacer-flex-column {
  height: 100%;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}




/* 共通
----------------------------------------*/

.clear {
  clear: both;
}

.tab, .sp  {
  display: none;
}

/* FontAwesomeを使う場合 */
/*
a.link-pdf {
  display: inline-block;
  margin: 0 0.5em 0 0;
  padding: 0 0 0.3em 0;
  line-height: 1.6;
}
a.link-pdf::after {
  position: relative;
  left: 0.2em;
  font-family: "Font Awesome 5 Free";
  content: "\f1c1";
  font-size: 1.2em;
  font-weight: bold;
  color: rgb(223, 86, 86);
}
*/

/* 位置調整 */

div.align-right {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

/* 共通ボタン(装飾のみ) */
/* width-各ボタンに設定 約文字数+4em*/

.btn-com-blue {
	position: relative;
	height: 2em;
	padding: 0.5em 3em 0.5em 0.5rem;
	background-color: #104793;
	border-radius: 3px;
}

.btn-com-blue::after {
	position: absolute;
	content: '';
	top: 50%;
	right: 0.5em;

	display: inline-block;
	vertical-align: middle;
	color: #ffffff;
	line-height: 1;
	width: 0.3em;
	height: 0.3em;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(-50%) translateX(-25%) rotate(45deg);
}

.btn-com-blue a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.btn-com-blue a span {
	display: block;
	position: absolute;
	top: 50%;
	left: 0.5em;
	width: 100%;
	padding: 0;
	font-size: 1.6rem;
	line-height: 1;
	color: #ffffff;
	transform: translateY(-50%);
}




/* ヘッダー */

header {
  width: 100%;
}

div.header-contents {
  position: relative;
  width: 100%;
  height: 85px;
  background-image: url('../images/bg_header.gif');
  background-repeat: repeat;
  z-index: 20;
}

div.header-contents-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}

div.header-contents h1 {
  margin: 0 2% 0 0;
}




/* メインメニュー */

.spbtn {
  display: none;
}

nav.header {
  width: 100%;
  height: auto;
  background-image: url('../images/bg_header.gif');
  background-repeat: repeat;
}

nav.header ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

nav.header ul li {
  position: relative;
  width: calc(95%/4);
  height: 35px;
  border-left: 1px #00AADD solid;
}

nav.header ul li:last-child {
  width: 5%;
  border-right: 1px #00AADD solid;
}

/*
nav.header ul li::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;

  display: inline-block;
  vertical-align: middle;
  color: #00b7ee;
  line-height: 1;
  width: 0.3em;
  height: 0.3em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-50%) translateY(-25%) rotate(135deg);
}
*/

nav.header ul li a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 1;
  text-align: center;
}
nav.header ul li a:hover {
  text-decoration: none;
}

nav.header ul li a span {
  font-size: 2.3rem;
  line-height: 1;
  color: #ffffff;
  font-weight: bold;
}

/* スマホのみメニューを固定 */
/*.fixed {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
}*/

div.area-search-form {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding: 0.5em 0.8em 0.5em 0.5em;
  z-index: 10; /* 重なり順をスライドの上に指定 */
}

.btn-search-form {
  width: 100%;
  height: 100%;
}

.btn-search-form:hover {
  opacity: 0.5;
  transition: 0.5s;
}

.btn-search-form span {
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url('../images/top/icn_search.svg');
}




/* メニュー
----------------------------------------*/

/* コンテンツタイトル */

#main_nav > h2 {
  position: relative;
  width: 100%;
  height: 90px;
  margin: 0;
  border-top: 4px #eeeeee solid;
  border-bottom: 4px #eeeeee solid;
  background-image: image-set(url('../images/bg_category.png') 1x, url('../images/bg_category@2x.png') 2x);
  background-repeat: no-repeat;
  background-position: bottom right;
}


#main_nav > h2 span {
  display: block;
  position: absolute;
  position: relative;
  top: 50%;
  left: 30px;
  padding: 0 0 0 1.5em;
  font-size: 2rem;
  line-height: 1;
  color: #015db2;
  transform: translateY(-50%);
}

#main_nav > h2 span::before {
  position: absolute;
  content: "";
  top: calc -0.05em;
  left: 0;
  width: 0.9em;
  height: 0.9em;

  background-color: #00b7ee;
}

#main_nav > h2 span::after {
  position: absolute;
  content: "";
  width: 0.6em;
  height: 0.6em;
  top: 0.4em;
  left: 0.5em;
  background-color: #cdf4f9;
}




#main_nav nav {
  margin: 20px 0 0 0;
  background-color: #f5f5f5;
  border-top: 5px #015db2 solid;
  border-bottom: 5px #cccccc solid;
}
.main_nav_spbtn{
  display:none;
}

#main_nav nav > ul {
  border-top: 2px #cccccc solid;
  padding: 4px 30px 0 30px;
}

#main_nav nav > ul > li {
  position: relative;
  width: 100%;
  height: 3em;
  border-bottom: 1px #dddddd solid;
}

#main_nav nav > ul > li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 3px;
  height: 10px;
  background-color: #00b7ee;
  transform: translateY(-50%);
}

#main_nav nav > ul > li::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  color: #104793;
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-50%) translateX(-25%) rotate(45deg);
}

#main_nav nav > ul > li a {
  display: block;
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

#main_nav nav > ul > li a span {
  position: absolute;
  top: 50%;
  left: 1em;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #104793;
  transform: translateY(-50%);
}


#main_nav nav ul ul {
  display:none;
  margin: 0 0 0 1.2em;
}

#main_nav nav ul ul li {
  position: relative;
  width: 100%;
  padding: 0.7em 0 0.7em 0;
}
#main_nav nav ul ul li:first-of-type {
    margin: 0.5em 0 0 0;
}
#main_nav nav ul ul li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 6px;
  height: 3px;
  background-color: #015db2;
  transform: translateY(-50%);
}

#main_nav nav > ul li.open + ul {
  display:inherit;
}

#main_nav nav ul ul li.title {
  position: relative;
  width: 100%;
  height: 2.5em;
  margin: 0 0 0 0;
}
#main_nav nav ul ul li.title::before {
  display: none;
}
#main_nav nav ul ul li.title span {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 1.4rem;
  line-height: 1;
  color: #104793;
}


#main_nav nav ul ul li a {
  display: block;
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

#main_nav nav ul ul li a span {
  position: absolute;
  top: 50%;
  left: 1.2em;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #666666;
  transform: translateY(-50%);
}




/* コンテンツ
----------------------------------------*/

#main {
  font-size: 1.6rem;
  line-height: 1.8;
}
#main .inner {
  margin: 0 20px 60px;
}
.spbtn {
  display: none;
}
.pan{
  float:right;
  font-size:1rem;
  margin-top:0;
}
.pan + section{
  content: "";
  display: block;
  clear: both;
}




/* フッター
----------------------------------------*/

footer {
  margin: 150px 0 0 0;
	padding: 20px 0 0 0;
	background: #00AADD;

}
nav.footer-main-menu ul {
	display: flex;
  justify-content: center;
}

nav.footer-main-menu ul li {
  position: relative;
  line-height: 1;
  border-right: 1px #ffffff solid;
}

nav.footer-main-menu ul li:first-of-type {
  border-left: 1px #ffffff solid;
}

nav.footer-main-menu ul li span {
	padding: 0 1em;
	font-size: 1.4rem;
  line-height: 1;
  color: #ffffff;
}

nav.footer-other-menu ul {
	display: flex;
  justify-content: center;
  margin: 1em 0 0 0;
}
nav.footer-other-menu ul li {
  position: relative;
	padding: 0;
  line-height: 1;
}

nav.footer-other-menu ul li::before {
	position: absolute;
  content: '';
	top: 50%;
	left: 0;

	display: inline-block;
	vertical-align: middle;
	color: #ffffff;
	line-height: 1;
	width: 0.3em;
	height: 0.3em;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(-50%) translateX(-25%) rotate(45deg);
}

nav.footer-other-menu ul li span {
	padding: 0 1em;
	font-size: 1.4rem;
  line-height: 1;
  color: #ffffff;
}



ul.footer-banner {
	display: flex;
  justify-content: center;
  gap: 0 5px;
  margin: 1em 0 0 0;
}

footer .copyright {
	width: 100%;
	margin: 2em 0 0 0;
	padding: 1em 0;
	background-color: #f5f5f5;
	border-bottom: 1px #eeeeee solid;
	font-size: 1.4rem;
	line-height: 1;
	color: #333333;
  text-align: center;
}





/* スマホ
--------------------------------------*/

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

.pc  {
  display: none;
}

.sp  {
  display: inline;
}



/* ヘッダー */

div.header-contents {
  height: auto;
}

div.header-contents-inner {
  justify-content: center;
  flex-direction: column;
  gap: 0.5em 0;
  width: 100%;
  padding: 0.5em 0 0 0;
}

div.header-contents h1 {
  display: block;
  width: 100%;
  margin: 0 0 0 0;
}

div.header-contents h1 img {
  width: 80%;
  height: auto;
  margin: 0 0 0 10%;

}


/* メインメニュー */

nav.header {
  height: auto;
  display: none;
}

nav.header.fixed {
  top: calc(2.5rem + 3rem);
}

nav.header ul {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0 0 0 0;
  background-image: url('../images/top/bg_header.gif');
  background-repeat: repeat;
}

nav.header ul li {
  width: 100%;
  height: 3em;
  padding: 0.5em 0 0 0;
}

nav.header ul li::after {
  display: none;
}

nav.header ul li a span {
  display: block;
  padding: 0.5em 0 0 0;
  font-size: 2.2rem !important;
  font-weight: normal;
}

/* スマホのみメニューを固定 */
.fixed {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
}

.spbtn {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem 0 1.5rem 0;
  color: #246EB3;
  /*border-bottom: 2px solid #171C60;*/
  border-bottom: 2px solid #cccccc;
  background-color: rgba(255, 255, 255, 0.9);
}
.spbtn.fixed {
  position: fixed;
  top: 0;
}
.spnavbtn a {
  position: relative;
}
.spnavbtn a:hover {
  opacity: 1;
}

.spnavbtn a::before {
  display: block;
  content: "";
  position: absolute;
  top: 30%;
  left: -20px;
  border: 8px solid transparent;
  border-top: 10px solid #72bff6;
}
.spnavbtn.close a::before {
  top: -20%;
  border: 8px solid transparent;
  border-bottom: 10px solid #72bff6;
}



/* サブメニュー */

#main_nav nav {
  display: none;
  border-top: 3px #cccccc solid;
  border-bottom: 3px #cccccc solid;
}

#main_nav nav > ul {
  border-top: none;
  padding: 4px 0.5em 0 0.5em;
}




/*
#main_nav.navfixed{
position:fixed;
top: 37px;
z-index: 9999;
}
*/

.main_nav_spbtn{
display:block;
width:100%;
font-size:1.6rem;
font-weight:600;
padding:0.5em 0 0.5em 1.5em;
color:#FFF;
}
/*
.main_nav_spbtn.fixed{
position:fixed;
top:0;
}
*/
.main_nav_spnavbtn a{
position:relative;
}
.main_nav_spnavbtn a:hover {
  opacity: 1;
}
.main_nav_spnavbtn a::before{
display: block;
content: "";
position: absolute;
top: 30%;
left: -20px;
border: 8px solid transparent;  
border-top: 10px solid #72bff6;
}
.main_nav_spnavbtn.close a::before{
border: 8px solid transparent;  
border-bottom: 10px solid #72bff6;	
top: -20%;
}
.pan{
display:none;
}





/* フッター
----------------------------------------*/

nav.footer-main-menu ul {
	display: none;
}

nav.footer-other-menu ul {
  margin: 0;
}

ul.footer-banner {
	width: 100%;
}

ul.footer-banner img {
	width: 100%;
}



}


