@charset "utf-8";

/*----------------------------------------------------------------------
基本レイアウト
----------------------------------------------------------------------*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
	font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .05rem;
  font-feature-settings: "palt";
  color: #333333;
}

a{
  color: #333333;
  display: inline-block;
}

a img {
  transition: .5s;
}

a img:hover {
  opacity: 0.6;
}

a.anchor{
    display: block;
    padding-top: 80px;
    margin-top: -80px;
}

.inner{
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
}

.row{
	display: flex;
}

.g_ttl_wrap h2{
	position: relative;
	font-size: 170%;
	text-align: center;
	margin-bottom: 2rem;
}

.g_ttl_wrap h2::before{
	position: absolute;
	content: '';
	height: 4px;
	width:40px;
	background: #006ebe;
	left: 0;
	right: 0;
    bottom: -1rem;
	margin: auto;
}

/*----------------------------------------------------------------------
header
----------------------------------------------------------------------*/

header{
	background:#fff;
	width: 90%;
	margin: 0 auto;
	padding: 15px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo{
	line-height: 0;
}

.logo img{
	width: 260px;
}

.font_size,
.size-btn{
	font-weight: bold;
	font-size: 1.4rem;
}

.font_size{
	align-items: center;
}

.font_size p{
	margin-right: 10px;
}

.font_size,
.font_size ul{
	display: flex;
}

.font_size ul li{
	margin-right: 5px;
}

.size-btn{
	color: #006ebe;
	border:3px solid #006ebe;
	background: #fff;
	padding: 2px 6px;
	border-radius: 3px;
	cursor: pointer;
	transition: .3s;
}

.size-btn:hover,
.is-active{
	background:#006ebe;
	color: #fff;
}

.g-nav-list a{
	font-weight: bold;
}

.main_nav{
	background: #f0f0f0;
}



/*----------------------------------------------------------------------
category
----------------------------------------------------------------------*/

/** カテゴリ一覧ボタン **/

.sub_nav ul{
	display: flex;
	margin-left: -2rem;
}

.sub_nav ul li{
	width: calc(100% / 5 - 2rem);
	margin-left: 2rem;
	border: 5px solid #fff;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.10) 0 3px 0 .05rem;
	display: inline-block;
}

.sub_nav ul li a{
	font-size: 110%;
	font-weight: 500;
	line-height: 1.4;
	display: flex;
	height: 5.5em;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    text-align: center;
}

.sub_nav ul li:hover{
	border-bottom: 0;
	box-shadow:none;
    margin-top: 5px;
}

.category{
	color: #fff;
}

.cate_news{
	background: #006ebe;
}

.cate_event{
	background: #eb9b64;
}

.cate_npo{
	background: #a57dba;
}

.cate_scholarship{
	background: #389eb0;
}

.cate_download{
	background: #e67387;
}

.cate_worker{
	background: #c2987e;
}



/*----------------------------------------------------------------------
新着情報
----------------------------------------------------------------------*/


.news_date{
	margin-right: 30px;
}

.news_list .category{
	padding: 1px 0;
	font-weight: 500;
	margin-right: 30px;
	flex-shrink: 0;
	width: 8em;
	text-align: center;
}

.news_list li {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.news_list li a{
    line-height: 1.5;
	transition: .3s;
}

.news_list li a:hover{
	opacity: .5;
}


/*----------------------------------------------------------------------
footer
----------------------------------------------------------------------*/

footer{
	padding: 40px 0;
	background: #006ebe;
}

.ban_list ul{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: -3rem;
}

.ban_list ul li{
	margin-left: 3rem;
}

footer .row{
	justify-content: space-between;
	align-items: flex-end;
}

address{
	font-size: 95%;
	color: #fff;
	font-style: normal;
	padding: 40px 0 0;
}

address span{
	font-size: 110%;
	font-weight: bold;
	display: block;
	margin-bottom: .5rem;
}

address a{
	color: #fff;
	text-decoration: underline;
}

address a:hover{
	text-decoration: none;
}

.copy{
	color: #fff;
	font-size: 80%;
}




@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-170px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}








@media screen and (min-width: 769px) {

.wrapper{
	position: relative;
	min-height: 100vh;
	padding-bottom: 284px;
    box-sizing: border-box;
}

.main_nav.HeightMin + .container{
	padding-top:63px;
}

/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
.main_nav.HeightMin{
  position: fixed;
    z-index: 999999;
	top:0;
  animation: DownAnime 0.5s forwards;
box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
  width: 100%;
}
	
.g-nav{
	width: 1100px;
	max-width: 90%;
	margin: 0 auto;
}
	
.g-nav-list{
	display: flex;
	justify-content: space-around;
}
	
.nav_item a{
	padding: 1.2em 0;
	transition: .5s;
	box-sizing: border-box;
}	
.nav_item a:hover{
	opacity: .6;	
}

.nav_item {
    position: relative;
}

.nav_item::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #006ebe;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nav_item:hover::after {
  transform: scale(1, 1);
}

.nav_item .aco_btn{
	cursor: default;
}
	
.nav_item .aco_btn:hover{
	opacity: 1;
}
	
.accordion ul.acco_nav {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.accordion ul.acco_nav {
   box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
   position: absolute;
   top: 1em;
   width: 22em;
   left: 50%;
   transform:translateX(-50%);
   -webkit-transform:translateX(-50%);
   margin: auto;
   background: #fff;
   -webkit-transition: all .5s ease;
   transition: all .3s ease;
   line-height: 140%;
   border:1px solid #006ebe;
}

.accordion:hover ul.acco_nav {
    top: 4.1em;
    visibility: visible;
    opacity: 1;
	left: 50%;
    transform:translateX(-50%);
    -webkit-transform:translateX(-50%);
	margin: auto;
	box-sizing: border-box;
}

.accordion ul.acco_nav li a{
	color: #006ebe;
	transition: .3s all;
	text-align: center;
	padding: 1.4rem 0;
	display: block;
	font-size: 90%;
	border-bottom: 1px solid #006ebe;
	box-sizing: border-box;
	position: relative;
}

.accordion ul.acco_nav li a::before{
	position: absolute;
	content: '';
    right: 15px;
	top:0;
	bottom: 0;
	margin: auto;
    width: 6px;
    height: 6px;
    border-top: 2px solid #006ebe;
    border-right: 2px solid #006ebe;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
	
li.accordion ul.acco_nav li a:hover{
	background:#006ebe;
	color:#fff;
	opacity: 1;
}
	
.accordion ul.acco_nav li a:hover::before{
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;	
}
	
li.accordion ul.acco_nav li:last-child a{
	border-bottom: none;
}

li.accordion ul.acco_nav li{
	width:100%;
	margin:0;
}

li.accordion ul.acco_nav li:last-child{
	border-bottom: none;
}

.container{
	margin: 0 0 120px;
}
	
footer{
	position: absolute;
	bottom: 0;
	width: 100%;
}
	
}

@media screen and (max-width: 768px) {

body{
	font-size: 1.4rem;
}

.logo{
	margin: 0 100px 0 10px;
}
	
.logo img{
	width: 190px;
}

.font_size{
	display: none;
}
	
header {
	position: fixed;
	z-index: 999;
    align-items: center;
	line-height: 0;
	padding:0;
	width: 100%;
	height: 70px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.g-nav{
  position:fixed;
  z-index: 100;
  top:-120%;
  left:0;
  width:100%;
  height: 100vh;
  background:#f2f8fc;
  padding: 110px 0;
  transition: all 0.5s ease-in-out;
  overflow-y: scroll;
  opacity: 0;
}

.g-nav.panelactive{
    top: 0;
	opacity: 1;
}

.g-nav ul.g-nav-list{
    width: 90%;
	margin: 0 auto;
    -webkit-overflow-scrolling: touch;
	border-bottom: 1px solid #CBCBCB;
}

/*リストのレイアウト設定*/

.g-nav li{
  list-style: none;
    text-align: center; 
}

.g-nav li a{
  color: #333;
  text-decoration: none;
  padding:15px 35px 15px 15px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-align: left;
}

/*========= toggle ===============*/
.toggle{
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  top:0;
  right: 0;
  cursor: pointer;
    width: 70px;
    height:70px;
	background: #006ebe;
}
  
/*×に変化*/  
.toggle span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
	left: 0;
    right: 0;
    margin: auto;
    height: 3px;
    border-radius: 2px;
  background: #fff;
    width: 45%;
  }

.toggle span:nth-of-type(1) {
  top:25px; 
}

.toggle span:nth-of-type(2) {
  top:35px;
}

.toggle span:nth-of-type(3) {
  top:45px;
}

.toggle.active span:nth-of-type(1) {
	top: 27px;
    left: 0;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
}

.toggle.active span:nth-of-type(2) {
  opacity: 0;
}

.toggle.active span:nth-of-type(3){
	top: 39px;
    left: 0;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
}

ul.acco_nav li,
.nav_item{
	position: relative;
	border-top: 1px solid #CBCBCB;
}
	
.nav_item::before,
ul.acco_nav li::before{
	position: absolute;
	content: '';
    right: 1.75rem;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid #006ebe;
    border-right: 2px solid #006ebe;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.g-nav li.accordion::before{
	display: none;
}
	
.g-nav li.accordion a{
	position: relative;
}
	
.aco_btn{
	position: relative;
}
	
.aco_btn::before{
	position: absolute;
	content: '＋';
	right: 1rem;
	top:50%;
    transform: translateY(-50%) ;
	font-size: 1.6rem;
	color:#006ebe;
}
	
.aco_btn.open::before{
	content: '－';
}

.acco_nav{
	display: none;
}

.g-nav li.accordion ul.acco_nav li a{
	font-weight: normal;
	font-size: 1.3rem;
	padding-left: 30px;
}

.g-nav .ban_list{
	width: 90%;
	margin: 2rem auto 0;
}

.g-nav .ban_list ul li a{
	padding: 0;
}
	
.container{
	padding-top: 70px;
}
	
	

.g_ttl_wrap h2 {
	font-size: 2rem;
	line-height: 1.4;
}
	
.g_ttl_wrap h2::before {
	bottom: -1.5rem;
}
	
.sub_nav ul{
	flex-wrap: wrap;
}
	
.sub_nav ul li {
	width: calc(100% / 3 - 2rem);
	margin-bottom: 2rem;
    border: 4px solid #fff;
}

.sub_nav ul li:hover {
    border-bottom: 0;
    box-shadow: none;
    margin-top: 4px;
}	


.news_list li {
	flex-wrap: wrap;
}
	
.news_list li a {
	margin-top: 10px;
	width: 100%;
}	
	
.news_date {
	margin-right: 10px;
}
	
.news_list .category {
	font-size: 1.3rem;
}
		
	
	
footer{
    margin: 40px 0 0;
}	
	
footer .row{
	flex-direction: column;
	align-items: center;
}	


.ban_list ul {
	margin-left: -1rem;
 	flex-wrap: wrap;
}
	
.ban_list ul li {
	line-height: 0;
    margin-left: 1rem;
	margin-bottom: 1rem;
}
	
	
}


@media screen and (max-width: 480px) {

.sub_nav ul{
	margin-left: -1.5rem;
}
	
.sub_nav ul li {
    width: calc(100% / 2 - 1.5rem);
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}
	
.sub_nav ul li a{
	font-size: 3.6vw;
	font-weight: bold;
	line-height: 1.3;
    height: 5em;
}

	
footer {
	padding: 40px 0 20px;
}
	
address{
	text-align: center;
	padding: 60px 0 20px;
}
	
.ban_list ul {
	flex-wrap: wrap;
}
	
.ban_list ul li {
	width: calc(100% / 2 - 1rem);
	text-align: center;
}	

	
}

