@charset "UTF-8";

/* CSS Document */

a { transition: all 0.5s; }

ul { list-style-type: none; }

.pc { display: block; }
.sp { display: none; }




#header {
	position: absolute;
	top: 0;
	left: 0;
	min-width: 1260px;
	width: 100%;
	display: flex;
	height: 100px;
	z-index: 999;
}

#header:before {
}

#header .logo {
	background: rgba(0,78,162,0.6);
	display: flex;
	align-items: center;
	padding: 0 30px;
	margin: 0;
}

#header .logo a {
	display: block;
}

.header-r {
	flex: 1;
}

.header-info {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	border-bottom: 1.5px solid #fff;
	padding: 0 0 0 25px;
}

.header-info h1 {
	font-size: 22px;
	color: #FFF;
	padding-right: 30px;
	margin: 0;
	text-shadow: 1px 1px 5px #000;
}

.header-info h1 span {
	font-size: 90%;
}

.header-info p {
	margin-bottom: 0;
}

.header-info .btn {
	display: block;
	background: #ED6C00;
	color: #FFF;
	top: 0;
	right: 0;
	border-radius: 0;
	padding: 20px 15px;
}

.header-info .btn:hover {
	background: #FFF;
	color: #ED6C00;
}

#header.fixed {
	position: fixed;/*fixedを設定して固定*/
	z-index: 9999;/*最前面へ*/
	top:0;/*位置指定*/
	left:0;/*位置指定*/
	background-color: rgba(0,78,162,0.9);
	height: 80px;
	align-items: center;
}

#header.fixed .header-info {
	display: none;
}

#header.fixed .logo {
	background-color: transparent;
	height: 60px;
}

#header.fixed .header-r , #header.fixed .h-nav , #header.fixed .h-nav > ul {
	height: 80px;
}

#header.fixed .h-nav > ul > li > a {
	padding: 1.7rem 30px;
}

#header.fixed .h-nav ul li.has-child::after {
	top: 33px;
}

#header.fixed .h-nav li.has-child ul {
	top: 80px;
}









/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
.h-nav {
  color:#fff;
  text-align: center;
}
/*ナビゲーションを横並びに*/
.h-nav ul{
	padding: 0;
	margin: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
/*2階層目以降は横並びにしない*/
.h-nav ul ul{
  display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
.h-nav ul li{
  position: relative;
}

.h-nav ul li:hover {
  background: rgba(255,255,255,0.35);
	color: #004EA2;
}
.h-nav ul li:hover a {
	color: #004EA2;
	text-shadow: none;
}

/*ナビゲーションのリンク設定*/
.h-nav ul li a {
  display: block;
  text-decoration: none;
  color: #FFF;
  transition:all .3s;
	font-weight: 600;
	font-size: 15px;
	padding:20px 30px;
	text-shadow: 1px 1px 5px #000;
}

.h-nav ul li li a {
	padding:10px 20px;
}

.h-nav ul li a:hover{
  color:#004EA2;
	text-decoration: none;
	text-shadow: 1px 1px 5px #ccc;
}

.h-nav ul li.has-child a:active {
	
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
.h-nav ul li.has-child::after {
  content:'';
  position: absolute;
  right:15px;
 	 top:26px;
  	width:8px;
  	height:8px;
  border-top: 2px solid #FFF;
    border-right:2px solid #FFF;
    transform: rotate(135deg);
}

.h-nav ul li.has-child:hover {
}

.h-nav ul li.has-child:hover:after {
	border-top: 2px solid #004EA2;
	border-right: 2px solid #004EA2;
}


/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
.h-nav li.has-child ul{
    /*絶対配置で位置を指定*/
  position: absolute;
  left:0;
  top:62px;
  z-index: 4;
    /*形状を指定*/
  background:#003477;
	width:200px;
    /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
    /*アニメーション設定*/
  transition: all .3s;
}

.h-nav li.has-child ul li {
	width: 100%;
}

/*hoverしたら表示*/
.h-nav li.has-child:hover > ul,
.h-nav li.has-child ul li:hover > ul,
.h-nav li.has-child:active > ul,
.h-nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
.h-nav li.has-child ul li a{
  color: #fff;
  border-bottom:solid 1px rgba(255,255,255,0.6);
	text-shadow: none;
}

.h-nav li.has-child ul li:last-child a{
  border-bottom:none;
}

.h-nav li.has-child ul li a:hover,
.h-nav li.has-child ul li a:active{
  background:#FFF;
	color: #003477;
	pointer-events:auto;
}





/*==991px以下の形状*/

@media screen and (max-width:991px){
  .h-nav {
    padding: 0;
  }
  
  .h-nav ul{
    display: block;
  }
  
  .h-nav li.has-child ul,
  .h-nav li.has-child ul ul{
    position: relative;
  left:0;
  top:0;
  width:100%;
  visibility:visible;/*JSで制御するため一旦表示*/
  opacity:1;/*JSで制御するため一旦表示*/
  display: none;/*JSのslidetoggleで表示させるため非表示に*/
  transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}
  
.h-nav ul li a{
  border-bottom:1px solid #ccc;
}

/*矢印の位置と向き*/

.h-nav ul li.has-child::before{
  left:20px;  
}

.h-nav ul ul li.has-child::before{
    transform: rotate(135deg);
  left:20px;
}
    
.h-nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}

}









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

	   mainContents

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

/* arrow01 */

 .arrow01 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 1em 1.5em;
  font-size: 16px;
  transition: 0.3s;
}

.arrow01 a::before {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: 1em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: #000;
  transition: 0.3s;
}

.arrow01 a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  background-color: #000;
  transition: 0.3s;
}

.arrow01 a:hover {
  text-decoration: none;
}

.arrow01 a:hover::before,
.arrow01 a:hover::after {
  right: 0.5em;
}


/* arrow02 */

 .arrow02 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 0;
  font-size: 16px;
  transition: 0.3s;
}

.arrow02:before {
  content: '';
  position: absolute;
  bottom: calc(18px - 1px);
  right: 1em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: #000;
  transition: 0.3s;
	z-index: 1;
}

.arrow02:after {
  content: '';
  position: absolute;
  bottom: 16px;
  right: 1em;
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  background-color: #000;
  transition: 0.3s;
}

.arrow02:hover {
  text-decoration: none;
}

.arrow02:hover::before,
.arrow02:hover::after {
  right: 0.5em;
}




#mainContents {
	overflow: hidden;
	position: relative;
}

@media (min-width: 1200px) {
	.container {
  		max-width: 1000px;
	}
}

.bg-gray {
	width: 100%;
	background-color: #EFEFEF;
	padding: 80px 0;
}

.bg-gray .container p {
	margin: 0;
}

.bg-white {
	width: 100%;
	padding: 80px 0;
}

.ul-flex {
	display: flex;
}

.middle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}



/* mainVisual */


.mainVisual {
	overflow: hidden;
	width: 100%;
	height: 310px;
	background-size: cover !important;
}




/* breadcrumbs */

.breadcrumbs {
	background-color: #ED6C00;
	padding: 5px 30px; 
	position: absolute;
	top: 100px;
	z-index: 999;
}

.breadcrumbs ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.breadcrumbs ul li {
	position: relative;
	margin: 0;
	font-size: 18px;
	color: #FFF;
	font-weight: 600;
}

.breadcrumbs ul li:first-child {
	font-size: 28px;
	font-style: italic;
	letter-spacing: 0.2rem;
}

.breadcrumbs ul li:nth-child(2) {
}

.breadcrumbs ul li:first-child:after {
	content: "ー";
	color: #FFF;
	padding: 0 15px;
	font-size: 16px;
	line-height: 2.8;
}

.breadcrumbs ul li:nth-child(2):after {
	content: "";
}






.center {
	text-align: center;
	margin: 100px 0;
}




/*====== 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1 {
    /*描画位置※位置は適宜調整してください*/
	position: relative;
	left:50%;
	bottom: 250px;
    /*全体の高さ*/
	height:50px;
	z-index: 999;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /*線の形状*/
	width: 2px;
	height: 30px;
	background: #FFF;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	50%{
		height:50px;
		opacity: 1;
	}
	100%{
		height:0;
		top:100px;
		opacity: 0;
	}
}












/* mainBottom */

#mainBottom {
	width: 100%;
	background-color: #EFEFEF;
	padding: 100px 0;
}

#mainBottom ul {
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
}

#mainBottom ul li {
	margin-left: 2%;
}

#mainBottom ul li:first-child {
	margin-left: 0;
}


#mainBottom .arrow01 a {
  width: 350px;
  color: #044A96;
  font-weight: 700;
  background-color: #FFF;
  border: 1px solid #000;
}

#mainBottom .arrow01 a::before {
}

#mainBottom .arrow01 a::after {
}

 #mainBottom .arrow01 a:hover {
  text-decoration: none;
  background-color: #044A96;
  color: #FFF;
}

#mainBottom .arrow01 a:hover::before,
#mainBottom .arrow01 a:hover::after {
	background-color: #FFF;
}

#mainBottom .arrow01 a span {
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color: #000;
	position: absolute;
	right: 30%;
}

#mainBottom .arrow01 a:hover span {
	color: #FFF;
}









/* -----------------------
	     terms
------------------------*/

.mainVisual-terms {
	background: url("../images/mainVisual-terms.png") top center no-repeat;
}








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

		  footer

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

footer {
	position: relative;
	clear: both;
	overflow: hidden;
	width: 100%;
	background-color: #006CB8;
	padding: 50px 0 20px;
	border-bottom: 15px solid #ED6C00;
	z-index: 2;
}

.f-top {
	width: 1000px;
	margin: 0 auto;
}

.f-nav {
	width: 100%;
	color: #FFF;
	display: flex;
	justify-content: space-between;
}

.f-nav ul {
	padding: 0;
	list-style-type: none;
	margin-bottom: 0;
	line-height: 2;
}

.f-nav ul li {
	font-weight: 600;
	margin-bottom: 10px;
}

.f-nav-child {
	font-size: 85%;
	font-weight: normal !important;
	line-height: 2 !important;
	margin-bottom: 0 !important;
}

.f-nav ul p {
	margin-bottom: 5px;
	font-weight: 600;
}

.f-nav ul li a , .f-nav ul p a {
	color: #FFF;
}

.f-nav ul li a:hover , .f-nav ul p a:hover {
	color: #ED6C00;
}

.f-nav ul li ul {
	display: block;
}

.f-nav ul li ul li {
	width: 100%;
}




.f-bottom {
	width: 1000px;
	margin: 50px auto 0;
	border-top: 1px solid #FFF;
	padding-top: 50px;
	display: flex;
	justify-content: space-between;
}

.f-logo {
	width: 30%;
}

.f-name {
	color: #FFF;
	font-weight: 600;
	width: 30%;
}

.f-name p {
	margin-bottom: 5px;
}

.f-name p + p {
	font-weight: normal !important;
}

.f-name span {
	font-size: 20px;
}

.f-name p a {
	color: #FFF;
}

.f-name p a:hover {
	color: #ED6C00;
}

.f-info {
	color: #FFF;
	width: 40%;
}

.f-info dl {
	width: 100%;
	margin-bottom: 0;
	font-size: 90%
}

.f-info dl dt {
	clear: both;
	float: left;
	width: 25%;
}

.f-info dl dd {
	margin-left: 25%;
	width: 75%;
}


.copyright {
	color: #FFF;
	text-align: center;
	margin: 30px 0 0 0;
	font-size: 90%;
}




/* page-top */

#page-top {
	margin: 0;
}

/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:#ED6C00;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
}

#page-top a:hover{
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 0;
  z-index: 2;
    /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}










@media screen and ( max-width:767px ) {
	
	.pc { display: none; }
	.sp { display: block; }
	
	img {
		width:100%;
		max-width: 100%;
		height: auto;
	}
	
	.br-sp { display: none; }
	
	#header {
		background-color: rgba(0,78,162,0.9);
		position: static;
	top: 0;
	left: 0;
		min-width: 100%;
	width: 100%;
	display: flex;
		height: 70px;
	}

#header:before {
}

	#header .logo {
		background-color: transparent;
	display: flex;
	align-items: center;
		padding: 0 0 0 10px;
	margin: 0;
	}
	
	#header .logo img {
		width: 250px;
	}



	.header-r {
		display: none;
	}

	.header-info {
		display: none;
	}


	
	
	#header.fixed {
	position: fixed;/*fixedを設定して固定*/
	z-index: 999;/*最前面へ*/
	top:0;/*位置指定*/
	left:0;/*位置指定*/
	background-color: rgba(0,78,162,0.9);
		height: 70px;
	align-items: center;
}

#header.fixed .header-info {
	display: none;
}

#header.fixed .logo {
	background-color: transparent;
	height: 60px;
}

	
	
	
	
	
	
	
	
	

/*========= ナビゲーションのためのCSS ===============*/

	#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 9999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#999;
    /*動き*/
	transition: all 0.6s;
	}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

	/*ナビゲーション*/
	#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
		top: 70px;
    left:50%;
    transform: translate(-50%,0);
		padding: 0;
		width: 90%;
	}

	/*リストのレイアウト設定*/

	#g-nav li{
		list-style: none;
		border-bottom: 1px solid #FFF;
	}
	
	#g-nav li:first-child {
		border-top: 1px solid #FFF;
	}

	#g-nav li > a {
	color: #FFF;
	text-decoration: none;
		padding: 20px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	}
	
	#g-nav-list h1 {
		margin: 0;
		position: absolute;
		top: 10px;
		left: 5%;
	}
	
	#g-nav-list h1 img {
		width: 250px;
	}
	
	

	/*========= ボタンのためのCSS ===============*/
	.openbtn{
		position: absolute;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #FFF;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
	
	
	
	/* アコーディオン全体 */
	.accordion {
  margin: 0 auto;
	}

	/* アコーディオン */
	.accordion__item {
  		cursor: pointer;
	}

	/* アコーディオンのタイトル */
	.accordion__title {
  position: relative;
  	padding: 20px 60px 20px 20px;
  font-weight: bold;
  cursor: pointer;
	color: #FFF;
	}

	/* (+)アイコン */
	.accordion__title::before,
	.accordion__title::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  	background-color: #FFF;
  width: 20px;
  		height: 2px;
  transition: all 0.3s;
	z-index: 9999;
	}

.accordion__title::after {
  transform: rotate(90deg);
}

/* アコーディオンのコンテンツ */
.accordion__content {
  padding: 0 20px 15px 20px;
  display: none;
  cursor: pointer;
}
	
	.accordion__content p {}
	
	.accordion__content p:before {
		content: "・";
		color: #FFF;
	}
	
	.accordion__content p a {
		color: #FFF;
	}
	
	.accordion__content p a:hover {
		color: rgba(0,78,162);
	}

.accordion__content.is-open {
  display: block;
}

/* アコーディオン展開時の(-)アイコン */
.accordion__item.is-active .accordion__title::before {
  transform: rotate(180deg);
	z-index: 9999;
}

.accordion__item.is-active .accordion__title::after {
  transform: rotate(180deg);
  opacity: 0;
	z-index: 9999;
}




	
	





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

	     mainContents(sp)

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

/* arrow01 */

 .arrow01 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 1em 1.5em;
  	font-size: 100%;
  transition: 0.3s;
}

.arrow01 a::before {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: 1em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: #000;
  transition: 0.3s;
}

.arrow01 a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  background-color: #000;
  transition: 0.3s;
}

.arrow01 a:hover {
  text-decoration: none;
}

.arrow01 a:hover::before,
.arrow01 a:hover::after {
  right: 0.5em;
}


/* arrow02 */

 .arrow02 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 0;
  font-size: 16px;
  transition: 0.3s;
}

.arrow02:before {
  content: '';
  position: absolute;
  bottom: calc(18px - 1px);
  right: 1em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: #000;
  transition: 0.3s;
	z-index: 1;
}

.arrow02:after {
  content: '';
  position: absolute;
  bottom: 16px;
  right: 1em;
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  background-color: #000;
  transition: 0.3s;
}

.arrow02:hover {
  text-decoration: none;
}

.arrow02:hover::before,
.arrow02:hover::after {
  right: 0.5em;
}




#mainContents {
	overflow: hidden;
	position: relative;
}

	.bg-gray {
		padding: 50px 0;
	}
	
	.bg-white {
		padding: 50px 0;
	}
	
	.middle {
		position: static;
		transform: none;
	}




	/* mainVisual(sp) */

	.mainVisual {
		height: 150px;
	}




	/* breadcrumbs(sp) */

	.breadcrumbs {
		padding: 10px 3%; 
		position: static;
	}

	.breadcrumbs ul {
		display: flex;
	}

	.breadcrumbs ul li {
	}

	.breadcrumbs ul li {
		font-size: 100%;
	}

	.breadcrumbs ul li:first-child {
		font-size: 120%;
		letter-spacing: 0.1rem;
	}

	.breadcrumbs ul li:nth-child(2) {
	}

	.breadcrumbs ul li:first-child:after {
		padding: 0 10px;
		font-size: 100%;
		line-height: 2;
	}

	.breadcrumbs ul li:nth-child(2):after {
	}






	.center {
		margin: 30px 0;
	}



















	/* mainBottom(sp) */

	#mainBottom {
		padding: 50px 3%;
	}

	#mainBottom ul {
		display: block;
	}

	#mainBottom ul li {
		margin-left: 0;
	}

	#mainBottom ul li:first-child {
		margin-bottom: 20px;
	}


	#mainBottom .arrow01 a {
 		 width: 100%;
	}

	#mainBottom .arrow01 a::before {
	}

	#mainBottom .arrow01 a::after {
	}

 	#mainBottom .arrow01 a:hover {
	}

	#mainBottom .arrow01 a:hover::before,
	#mainBottom .arrow01 a:hover::after {
	}

	#mainBottom .arrow01 a span {
	}

	#mainBottom .arrow01 a:hover span {
	}




/* -----------------------
	     calendar
------------------------*/

.mainVisual-calendar {
	background: url("../images/mainVisual-calendar.png") top center no-repeat;
}




/* -----------------------
	     terms
------------------------*/

.mainVisual-terms {
	background: url("../images/mainVisual-terms.png") top center no-repeat;
}


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

		  footer(sp)

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

	#footer {
		padding: 30px 0 20px;
		border-bottom: 8px solid #ED6C00;
	}

	.f-top {
		width: 100%;
		padding: 0 3%;
	}

	.f-nav {
	}

	.f-nav ul {
		float: left;
		width: 49%;
		margin-bottom: 20px;
	}
	
	.f-nav ul:nth-child(even) {
		margin-left: 2%;
	}
	
	
	.f-nav ul:nth-child(3) {
		clear: both;
	}
	
	.f-nav ul:nth-child(5) , .f-nav ul:nth-child(6) {
		margin-bottom: 10px;
	}

	.f-nav ul li {
		margin-bottom: 0;
	}

	.f-nav-child {
		line-height: 1.8 !important;
	}

	.f-nav ul p {
	}

	.f-nav ul li a , .f-nav ul p a {
	}

	.f-nav ul li a:hover , .f-nav ul p a:hover {
	}

	.f-nav ul li ul {
	}

	.f-nav ul li ul li {
	}
	
	@media (min-width: 576px) {
		.f-nav ul {
			width: 33.33%;
		}
		
		.f-nav ul:nth-child(3) {
			clear: inherit;
		}
		
		.f-nav ul:nth-child(4) {
			clear: both;
		}
		
		.f-nav ul:nth-child(even) {
			margin-left: 0;
		}
	}




	.f-bottom {
		width: 100%;
		margin: 30px auto 0;
		padding: 30px 3% 0;
		display: block;
	}

	.f-logo {
		width: 100%;
		text-align: center;
	}
	
	.f-logo img {
		width: auto;
		max-width: none;
		height: 60px;
	}

	.f-name {
		width: 100%;
		text-align: center;
	}

	.f-name p {
	}

	.f-name p + p {
	}

	.f-name span {
		font-size: 125%;
	}

	.f-info {
		width: 100%;
		margin-top: 20px;
	}

	.f-info dl {
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
	}

	.f-info dl dt {
		text-align: center;
	}

	.f-info dl dd {
	}


	.copyright {
		font-size: 75%;
	}




	/* page-top(sp) */

	#page-top {
	}

	/*========= ページトップのためのCSS ===============*/
	
	/*リンクの形状*/
	
	#page-top a {
  	width: 40px;
  	height: 40px;
	}

	#page-top a:hover{
	}


	
	
	
	
	
	
	
}









@media only screen and (min-width:768px) and (max-width:1199px) {
	
	.tab {
		display: block !important;
	}
	
	
	
	/* -----------------------
		   header(tab)
	------------------------*/
	
	#header {
		position: static;
		min-width: 100%;
		height: 70px;
		background-color: rgba(0,78,162,0.9);
	}

	#header:before {
	}

	#header .logo {
		background-color: transparent;
		padding: 0 0 0 10px;
	}
	
	#header .logo img {
		width: 250px;
	}



	.header-r {
		display: none;
	}

	.header-info {
		display: none;
	}
	
	
	#header.fixed {
		height: 70px;
	}

	#header.fixed .header-info {
	}

	#header.fixed .logo {
	}
	
	
	
	
	
	
	
	

/*========= ナビゲーションのためのCSS ===============*/

	#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 9999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#999;
    /*動き*/
	transition: all 0.6s;
	}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

	/*ナビゲーション*/
	#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
		top: 70px;
    left:50%;
    transform: translate(-50%,0);
		padding: 0;
		width: 90%;
	}

	/*リストのレイアウト設定*/

	#g-nav li{
		list-style: none;
		border-bottom: 1px solid #FFF;
	}
	
	#g-nav li:first-child {
		border-top: 1px solid #FFF;
	}

	#g-nav li > a {
	color: #FFF;
	text-decoration: none;
	padding: 20px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	}
	
	#g-nav-list h1 {
		margin: 0;
		position: absolute;
		top: 10px;
		left: 5%;
	}
	
	#g-nav-list h1 img {
		width: 250px;
	}
	
	

	/*========= ボタンのためのCSS ===============*/
	.openbtn{
		position: absolute;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #FFF;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
	
	
	
	/* アコーディオン全体 */
	.accordion {
  margin: 0 auto;
	}

	/* アコーディオン */
	.accordion__item {
  		cursor: pointer;
	}

	/* アコーディオンのタイトル */
	.accordion__title {
  position: relative;
  	padding: 20px 60px 20px 20px;
  font-weight: bold;
  cursor: pointer;
	color: #FFF;
	}

	/* (+)アイコン */
	.accordion__title::before,
	.accordion__title::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  	background-color: #FFF;
  width: 20px;
  		height: 2px;
  transition: all 0.3s;
	z-index: 9999;
	}

.accordion__title::after {
  transform: rotate(90deg);
}

/* アコーディオンのコンテンツ */
.accordion__content {
  padding: 0 20px 15px 20px;
  display: none;
  cursor: pointer;
}
	
	.accordion__content p {}
	
	.accordion__content p:before {
		content: "・";
		color: #FFF;
	}
	
	.accordion__content p a {
		color: #FFF;
	}
	
	.accordion__content p a:hover {
		color: rgba(0,78,162);
	}

.accordion__content.is-open {
  display: block;
}

/* アコーディオン展開時の(-)アイコン */
.accordion__item.is-active .accordion__title::before {
  transform: rotate(180deg);
	z-index: 9999;
}

.accordion__item.is-active .accordion__title::after {
  transform: rotate(180deg);
  opacity: 0;
	z-index: 9999;
}
	
	
	
	
	/* ----------------------------
	   		mainContents(tab)
	-----------------------------*/


	#mainContents {
	}

	.bg-gray {
		padding: 60px 0;
	}

	.bg-white {
		padding: 60px 0;
	}

	.ul-flex {
	}

	.middle {
	}



	/* mainVisual(tab) */


	.mainVisual {
		height: 200px;
	}




	/* breadcrumbs(tab) */

	.breadcrumbs {
		padding: 3px 20px; 
		top: 0
	}

	.breadcrumbs ul {
	}

	.breadcrumbs ul li {
	}

	.breadcrumbs ul li {
		font-size: 110%;
	}

	.breadcrumbs ul li:first-child {
		font-size: 150%;
		letter-spacing: 0.1rem;
	}

	.breadcrumbs ul li:nth-child(2) {
	}

	.breadcrumbs ul li:first-child:after {
	}

	.breadcrumbs ul li:nth-child(2):after {
	}








	/* mainBottom(tab) */

	#mainBottom {
		padding: 80px 0;
	}

	#mainBottom ul {
	}

	#mainBottom ul li {
	}

	#mainBottom ul li:first-child {
	}


	#mainBottom .arrow01 a {
		font-size: 90%;
	}

	#mainBottom .arrow01 a::before {
	}

	#mainBottom .arrow01 a::after {
	}

 	#mainBottom .arrow01 a:hover {
	}

	#mainBottom .arrow01 a:hover::before,
	#mainBottom .arrow01 a:hover::after {
	}

	#mainBottom .arrow01 a span {
	}

	#mainBottom .arrow01 a:hover span {
	}
	
	
	
	
	/* -----------------------
		   footer(tab)
	------------------------*/

	footer {
	}

	.f-top {
		width: 100%;
	}

	.f-nav {
	}

	.f-nav ul {
	}

	.f-nav ul > li {
		font-size: 80%;
	}

	.f-nav-child {
		font-size: 75% !important;
	}

	.f-nav ul p {
		font-size: 80%;
	}

	.f-nav ul li a , .f-nav ul p a {
	}

	.f-nav ul li a:hover , .f-nav ul p a:hover {
	}

	.f-nav ul li ul {
	}

	.f-nav ul li ul li {
	}




	.f-bottom {
		width: 100%;
		margin: 40px auto 0;
		padding-top: 40px;
	}

	.f-logo {
		width: 20%;
	}
	
	.f-logo img {
		width: 100%;
	}

	.f-name {
		width: 30%;
		text-align: center;
	}

	.f-name p {
	}

	.f-name p + p {
		font-size: 90%;
	}

	.f-name span {
		font-size: 110%;
	}

	.f-name p a {
	}

	.f-name p a:hover {
	}

	.f-info {
		width: 40%;
	}

	.f-info dl {
		font-size: 80%
	}

	.f-info dl dt {
		float: none;
		width: 100%;
	}

	.f-info dl dd {
		margin-left: 0;
		width: 100%;
	}


	.copyright {
		font-size: 85%;
	}




	/* page-top(tab) */

	#page-top {
	}

	/*リンクの形状*/
	#page-top a {
  		width: 50px;
  		height: 50px;
	}

	#page-top a:hover{
	}

	/*リンクを右下に固定*/
	#page-top {
	}	
	
	
	
	
}




@media only screen and (min-width:992px) and (max-width:1199px) {
	
	/* ---------------------------------
		   footer(tab:992px-1199px)
	----------------------------------*/
	
	.f-nav ul > li {
		font-size: 95%;
	}

	.f-nav-child {
	}

	.f-nav ul p {
		font-size: 95%;
	}
	
}
