@charset "utf-8";
/* スマホ用 */

body {
	font-family: 'Noto Sans Japanese', Helvetica, Arial, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	background: #fff;
	font-size: 16px;
	color: #222;
}

#container {
	overflow: hidden;
}

/* header */
#header {
	padding: 1%;
	box-sizing: border-box;
}

#header-logo {
	margin: 2% 0 0 2%;
}

#header-logo img {
	width: 70%;
}

/* グロナビ */
.drawer {
	float: left;
	width: 40%;
}

.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
	float: left;
	z-index: 100;
	background: #004f9c;
	width: 40px;
	height: 25px;
	padding: 21px 0 0px 13px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	color: #fff;
	text-decoration: none;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.drawer-content {
  width: 100%;
  position: fixed;
  top: 0;
  left: 100%;/* メニューを画面の外に飛ばす */
  z-index: 99;
  background:#004f9c;
  transition: .5s;
  margin-top: 45px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0;/* メニューを画面に入れる */
}	

.drawer-list {
	list-style-type: none;
}

.drawer-item {
	position: relative;
	float: left;
	width: 100%;
}

.drawer-item a {
	display: block;
	float: left;
	width: 100%;
	padding: 12px 5%;
	margin: 0;
	text-align: left;
	color: #fff;
	/*border-top: 1px solid #383838;*/
	border-top: 1px solid rgba(255,255,255,0.5);
	font-size: 14px;
	text-decoration: none;
	text-transform: uppercase;
}

label {
    display: block;
    cursor :pointer;
}

.contents-area {
	width: 85%;
	margin: 0 auto;
	overflow: hidden;
}

/* footer */
#footer01 {
	margin-top: 5%;
	background: #808080;
	color: #fff;
	padding: 3% 0;
	box-sizing: border-box;
}

#fotter-logo {
	text-align: center;
	margin-bottom: 1.5%;	
}

#fotter-logo img {
	width: 70%;
}

#ul-footer-link {
	text-align: center;
}

#ul-footer-link li {
	display: inline-block;
}

#ul-footer-link li a {
	color: #fff;
	text-decoration: none;
	font-size: 12px;
}

#ul-footer-link li a:hover {
	text-decoration: underline;
}

#footer02 {
	background: #4D4D4D;
	color: #fff;
	text-align: center;
	padding: 1%;
	box-sizing: border-box;
	font-size: 12px;
}

/* トップ以外のページ */#container-box {
	padding: 1%;
	box-sizing: border-box;
}

#article {
	background: #F5F5F5;
	padding:1px 0 5%; 
	box-sizing: border-box;
}

.h1-std {
	margin: 1.5%;
	background: #fff;
	font-size: 20px;
	padding: 4% 0;
	box-sizing: border-box;
	text-align: center;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .2);
}

.h1-std span {
	font-size: 18px;
	display: block;
}

#ul-topic-path {
	margin-top: 2%;
}

#ul-topic-path li {
	display: inline-block;
	font-size: 14px;
	margin-top: .2%;
}

#ul-topic-path li a {
	text-decoration: none;
	color: #222;
}

#ul-topic-path li a:hover {
	color: #003490;
}

.h2-std {
	font-size: 25px;
	margin: 5% 0 3% 0;
	border-left: #003490 10px solid;
	padding-left: 1%;
	box-sizing: border-box;
}

.h3-std {
	font-size: 23px;
}

.map {
	background: #003490;
	color: #fff !important;
	padding: .5%;
	box-sizing: border-box;
	font-size: 14px;
}

/* ボタン */
.p-btn-entry {
	width: 80%;
	margin: 0 auto;
}

.btn-entry {
	background: #004f9c;
	text-align: center;
	font-size: 18px;
	display: block;
	padding: 4% 0;
	box-sizing: border-box;
	border: 1px #004f9c solid;
	color: #fff !important;
	text-decoration: none;
	width: 100%;
}

.btn-entry:hover {
	box-shadow: 0 0 20px 5px rgba(255,255,255,.5) inset;
	border: 1px #fff solid;
	color: #fff !important;
	text-decoration: none !important;
}

.map {
	text-decoration: none;
}

/* リスト */
.ul-tbl-inner {
	list-style-type: disc;
	margin-left: 2%;
}

.ul-tbl-inner li {
	
}

.ul-2col {
	margin: 0 auto 2%;
}

.ul-2col li {
	display: inline-block;
	vertical-align: top;
	width: 48%;
	margin:1.5% 1% 0 0;
}

.ul-2col li figure {
	margin: 0;
}

.ul-2col li figure img {
	width: 100%;
	max-width: 100%;
}

.ul-3col {
	margin: 0 auto 2%;
}

.ul-3col li {
	display: inline-block;
	vertical-align: top;
	width: 32%;
	margin:1.5% 1% 0 0;
}

.ul-3col li figure {
	margin: 0;
}

.ul-3col li figure img {
	width: 100%;
	max-width: 100%;
}

.dl-tbl-inner dt {
	margin-bottom: 1%;
}

.dl-tbl-inner dd {
	margin-bottom: 1.5%;
	
}


.dl-tbl-inner dd ul {
	list-style-type: disc;
	margin-left: 4em;
}

/* パラグラフ */
.p-std {
	line-height: 1.5em;
	margin-bottom: .5em;
}

.p-lead {
	line-height: 1.5em;
	margin: 3% 0;
	text-align: center;
}

.p-std-ht2 {
	line-height: 2em;
}

.p-std-ht2 a {
	color: #222;
}

.p-std-ht2 a:hover {
	color: #003490;
	text-decoration: none;
}


/* font */
.col-nomal{
	color: #222 !important;
}

/* text */
.txt-center {
	text-align: center;
}