﻿ @charset "UTF-8";
 
 /* すべてのページに適用される　*/
 
* {
 padding: 0;
 margin: 0;
 box-sizing: border-box;
}
html {
	font-family: sans-serif;
}
html * {
	box-sizing: border-box;
}
body {
  margin: 0 0 0 0;
	background-color:#ffffff;;
}
.img {
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}


/*グロナビ用のサンプルCSSコード */
header{ 
  width:100%;
  background-color:#ffffff;
  padding:0 10%;
  margin: 15px 0 15px 0;
  display:flex;  /*ロゴとulを横に並べる*/
  justify-content:space-between;  /*両端に配置*/
  align-items: center;  /*ロゴ、メニューの文字を垂直中央に並べる*/
  /*position:fixed;  /*ヘッダーの位置を固定*/
  /*top:0;  /*ヘッダーの位置を固定（上0）*/
  /*left:0; /*ヘッダーの位置を左固定（左０）*/
}
a {	
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-size: 20px;
}
ul.topbar {
  list-style: none;
  display: flex;
}
li {
  margin-left:40px;
}
a:hover{
  /*background: #94b4fa; （色を変える場合） */
  opacity:0.3;  /*（不透明度50％の場合）*/
}
/*　グローバルメニュー終了　*/



/*　body　内容*/
h1 {
  margin: 0; padding: 0;
  font-size: 20px;
}
h2 {
  margin: 25px 0 0 0;
  font-size: 18px;
  font-weight: normal;
  color: #000000;
  font-weight: bold;
}
.wrapper {
	margin: 0 auto 0 auto;
	max-width: 980px;
}
hr {
  height: 1px;
  background-color: rgb(207, 207, 207);
  margin: 15px 0 5px 0;
  width: auto;
  border: none;
}


/*　サイトマップ　内容　*/
.sitemapbody{
  display: flex;
}
h2.sitemap{
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  background-color: black;
  color: #FFF;
}
h3{
  margin: 15px 0 0 0;
  font-size: 20px;
}
ul.sitetitle{
  list-style: none;
  width: 100%;
}
a.sitemaptitle{
  font-size: 16px;
  font-weight: normal;
}


/* フッター内容 */
.footermenu{
  display: flex;  /*横並びにする*/
  justify-content: center;  /*左によってしまうので中央に寄せる*/
  margin: 15px 0 5px 0;
}
ul.footer {
  list-style: none;
  display: flex;
}
a.footersub{
  font-size: 13px;
  font-weight: normal;
}
.copyright{
  text-align: center;
  font-size: 12px;
}


@media screen and (max-width: 930px){
  header{
    flex-direction: column; /*縦に並べる*/
    padding:0.5% 2%;  /* ロゴ上下に4%の余白　左右に2%の余白*/
    align-items: center;  /*ロゴ、メニューの文字を垂直中央に並べる*/
    margin: 0 0 0 0;
  }
}

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

  /*全体　-ナビゲーション-  */
  .wrapper {
	  margin: 0 8px;
  }

  header{
    flex-direction: column; /*縦に並べる*/
    padding:1% 2%;  /* ロゴ上下に4%の余白　左右に2%の余白*/
    align-items: center;  /*ロゴ、メニューの文字を垂直中央に並べる */
    justify-content:space-between;  /*両端に配置*/
  }
  a {	
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-size: 15px;
  }
  nav,ul.topbar{
    width:100%;   /*　nav,ulの横幅を100％*/
    justify-content: center;  /*左によってしまうので中央に寄せる*/
    margin:0;
    padding:0;
    align-items: center;  /*ロゴ、メニューの文字を垂直中央に並べる */
  }
  li{
    margin:0;
    padding:8px;
  }
 
  /* 更新情報終了 */
 .sitemapbody{
  display: block;
 }
  ul.sitetitle{
    list-style: none;
    width: 100%;
  }
}