@charset "utf-8";
/*------------------------------------------------------------------------------
[1] レイアウト
[2] 詳細デザイン（共通）
[2] 詳細デザイン
[3] 緊急エリア
------------------------------------------------------------------------------*/
/*******************************************************************************
[1] レイアウト
*******************************************************************************/
#wrap{
	width:100%;
}
#content3{
	width:100%;
	background:transparent;
	max-width:none;
	min-width:auto;
}
.container{
	margin:auto;
	padding: 0px;
	width:100%;
	max-width:1200px;
	min-width:auto;
}
/*******************************************************************************
[2] 詳細デザイン（共通）
*******************************************************************************/
#topmainimage p{
	max-width:1400px;
	margin:auto;
}
#topmainimage img{
	box-shadow:0 0 5px #666;
}
#submenu ul li a{
    padding: 30px 20px;
    font-size:200%;
    font-weight:bold;
}
/*******************************************************************************
[2] 詳細デザイン
*******************************************************************************/
#kinkyuwraptop{
	margin-top:20px;
}
#topbg.notopmainimage{
	 margin-top:270px;
}
#topmainimage img{
    width: 100%;
    height: auto;
}
#searcmenuhbg{
    margin-bottom: 80px;
    padding-bottom: 100px;
    background-color: #f3f8fe;
}
/*------------------------------------------------------------------------------
	#submenu
------------------------------------------------------------------------------*/
#submenu{
    margin-top: calc(0px - 40px - 2em);
    margin-bottom: 50px;
    position: relative;
}
#submenu ul{
    display: flex;
    list-style: none;
}
#submenu ul li{
    width: calc(100% / 3);
}
#submenu ul li a{
    padding: 30px 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: center;
	justify-content: center;
    color: #fff;
	background-color: #033570;
    text-decoration: none;
    font-size:160%;
    transition: 1000ms;
    box-shadow: 0px 0px 7px 0px rgba(0,0,0, 0.2);
}
#submenu ul li:nth-child(1) a::before {
	content: "";
	display: block;
	width: 89px;
	height: 56px;
	margin-right: 0.5em;
	background: url(images/top/mark_kenmin.png) center no-repeat;
}
#submenu ul li:nth-child(2) a::before {
	content: "";
	display: block;
	width: 89px;
	height: 56px;
	margin-right: 0.5em;
	background: url(images/top/mark_jigyo.png) center no-repeat;
}
#submenu ul li:nth-child(3) a::before {
	content: "";
	display: block;
	width: 89px;
	height: 56px;
	margin-right: 0.5em;
	background: url(images/top/mark_kanko.png) center no-repeat;
}
#submenu ul li:nth-child(1) a:hover::before,
#submenu ul li.choice:nth-child(1) a::before {
	background: url(images/top/mark_kenmin_o.png) center top no-repeat;
}
#submenu ul li:nth-child(2) a:hover::before,
#submenu ul li.choice:nth-child(2) a::before {
	background: url(images/top/mark_jigyo_o.png) center top no-repeat;
}
#submenu ul li:nth-child(3) a:hover::before,
#submenu ul li.choice:nth-child(3) a::before{
	background: url(images/top/mark_kanko_o.png) center top no-repeat;
}
#submenu ul li:first-child a{
    border-radius: 5px 0px 0px 5px;
}
#submenu ul li:not(:first-child) a{
    border-left: 1px solid #406791;
}
#submenu ul li:last-child a{
    border-radius: 0px 5px 5px 0px;
}
#submenu ul li:hover a,
#submenu ul li.choice a{
    background: #FFF;
    color: #033570;
    transition: 1000ms;
}
#submenu ul li a span{
	line-height:1.4;
}
#submenu ul li a span span{
	display: block;
    font-size:65%;
}
/* 富士山カメラ */
#submenu .liveview{
    position: absolute;
    right: calc(100% / 3 / 2 - 140px);
    bottom: calc(100% - 30px);
}
#submenu .liveview img{
	display: block;
}
/*------------------------------------------------------------------------------
	850px以下
------------------------------------------------------------------------------*/
@media screen and (max-width:850px){
	#submenu .liveview{
			right:0;
	}
}
/*==============================================================================
	検索
==============================================================================*/
#topsearch{
    box-shadow: 0px 0px 7px 0px rgba(0,0,0, 0.2);
}
/*------------------------------------------------------------------------------
	タブ表示（サイト内検索／ページ番号検索）
------------------------------------------------------------------------------*/
#searchtab{
	list-style-type:none;
	display:flex;
	box-sizing:border-box;
}
#searchtab li{
	width:100%;
}
#searchtab li a{
	padding:24px 30px 30px 30px;
	display:block;
	position:relative;
	font-size:130%;	
	font-weight:normal;
	background-color:#D7D9DB;
	border-bottom:none;	
	text-decoration:none;
	text-align:center;
	transition:all .5s;
}
#searchtab li a::after{
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    bottom: 22px;
    left: 50%;
    content: "";
    border-left: 1px solid #222;
    border-top: 1px solid #222;
    transform: rotate(225deg);
}
#searchtab li.ui-tabs-active a{
	color:#222222;
	background:#FFF;
}
#searchtab li.ui-tabs-active a::after{
    border-color: #222;
}
#searchtab li:not(.ui-tabs-active) a:hover{
	color:#fff;
	background:#033570;
}
#searchtab li:not(.ui-tabs-active) a:hover::after{
    border-color: #fff;
}
/*------------------------------------------------------------------------------
	サイト内検索
------------------------------------------------------------------------------*/
#searchmenu{
	padding:55px 80px;
	box-sizing:border-box;
	background:#FFF;
	border-top:none;
}
/* キーワード検索 */
#searchmenu .formwrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
#searchmenu .formwrap form{
    width: calc(100% - 20px + 5em);
    display: flex;
    align-items: center;
    border: 2px solid #CCC;
    border-radius: 100vh;
}
#searchmenu .formwrap input{
	display:block;
	vertical-align:middle;
}
#searchmenu .formwrap input[type="text"]{
	padding:20px 20px 20px 50px!important;
    width: calc(100% - 65px);
	height:auto!important;
	box-sizing:border-box;
	background-position:left 10px center!important;
	border: none;
    border-radius: 100vh 0px 0px 100vh!important;
	font-size: 130%;
}
#searchmenu .formwrap input[type="submit"]{
	border:none!important;
	border-left:2px solid #CCC!important;
	display: block;
	height:100%; 
	padding: 20px 70px 20px 30px;
	border-radius: 0 100vh 100vh 0;
	background: url(images/top/icon.png) no-repeat right 30px center;
	font-size: 130%;
	font-weight: bold;
	-webkit-appearance:none;
	cursor:pointer;
}
#searchmenu .formwrap input[type="submit"]:hover{
	background-color:#EFEFEF;
}
#searchmenu .formwrap p{
    margin-left: 25px;
    padding-left: 20px;
    width: calc(5em + 20px);
    display: flex;
    position: relative;
}
#search2 .formwrap p{
    width: calc(14em + 20px);
    display: block;
}
#searchmenu .formwrap p::before{
    width: 5px;
    height: 5px;
    display: block;
    position: absolute;
    top: calc(0.5em + 2px);
    left: 4px;
    content: "";
    border-left: 2px solid #222;
    border-top: 2px solid #222;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
#searchmenu .formwrap  p a{
    text-decoration: none;
}
/*------------------------------------------------------------------------------
	注目キーワード
------------------------------------------------------------------------------*/
#search1 .keyword{
	margin:40px auto 0 auto;
}
#search1 .keyword dl{
    padding-left:calc(9em + 40px);
    position: relative;
}
#search1 .keyword dt{
	padding-left:40px;
    position: absolute;
    top: 5px;
    left: 0;
    font-weight:bold;
    font-size:120%;
    line-height: 1.5;
    letter-spacing: normal;
    background: url(images/top/mark_keyword.png) no-repeat;
}
#search1 .keyword dd{
    margin:0px 10px 10px 0px;
    line-height: 1.5;
    display: inline-block;
    letter-spacing: normal;
}
#search1 .keyword dd a{
	display:block;
	padding:10px 25px 8px;
	background:#033570;
	color:#fff;
	text-decoration:none;
	line-height: 1.2;
	transition:all .5s;
    border-radius: 40px;
}
#search1 .keyword dd a:hover{
	background:#464b51;
}
/*------------------------------------------------------------------------------
	ページ番号検索
------------------------------------------------------------------------------*/
#searchmenu .navidetail{
	margin:0px auto 20px auto;
	width:80%;
}
#searchmenu .navidetail form{
    width: calc(100% - 20px + 5em);
    display: flex;
    align-items: center;
    border: 2px solid #CCC;
    border-radius: 100vh;
}
#searchmenu .navidetail input[type="text"]{
	padding:20px 20px 20px 50px!important;
	width:calc(100% - 100px) !important;
    border-radius: 100vh 0px 0px 100vh!important;
	font-size: 130%;
    border: none;
}
#searchmenu .navidetail #idbtn{
	border:none!important;
	border-left:2px solid #CCC!important;
	display: block;
	height:100%; 
	padding: 20px 70px 20px 30px;
	border-radius: 0 100vh 100vh 0;
	background: url(images/top/icon.png) no-repeat right 30px center;
	font-size: 130%;
	font-weight: bold;
	-webkit-appearance:none;
	cursor:pointer;
}
#searchmenu .navidetail #idbtn:hover{
	background-color:#EFEFEF;
}
#searchmenu #idresult p{
	margin:10px 0 0;
	color:#c50000;
	font-weight:bold;
}
/*------------------------------------------------------------------------------
	#toptopics
------------------------------------------------------------------------------*/
#toptopicsbg{
    margin-bottom: 100px;
}
#toptopicsbg h2{
    margin-bottom: 75px;
    padding-bottom: 25px;
    position: relative;
    text-align: center;
    font-size: 220%;
    border-bottom: 1px solid #ccc;
}
#toptopicsbg h2::after{
    height: 5px;
    width: 4em;
    position: absolute;
    content:"";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #043472;
}
#toptopicsbg h2 span{
    display: block;
}
#toptopicsbg h2 span[lang="en"]{
    margin-top: 5px;
    font-size: 40%;
    color: #033570;
}
#toptopicsbg .wrap{
    margin-bottom: 145px;
	display:flex;
	flex-wrap:wrap;
}
#toptopicsbg .wrap .left{
	max-width: 580px;
	width:100%;
}
#toptopicsbg .wrap .right{
	max-width: 570px;
	width:100%;
}
/*------------------------------------------------------------------------------
	1000px以下
------------------------------------------------------------------------------*/
@media screen and (max-width:1000px){
	#searchmenu {
		padding:50px 30px;
	}
}
/*==============================================================================
	スクロールメニュー（トップページ、汎用トップ）
==============================================================================*/
#toppagebody #pickup{
	margin:0px auto 20px 0;
	width:100%;
	text-align:center;
	position: relative;
}
#toppagebody .main_view{
	width:100%;
	position:relative;
}
#toppagebody #pickup .window{
	padding:0px;
	width:100%;
	height:auto;
	overflow:visible;
	box-sizing:border-box;
}
#toppagebody #pickup .window::before{
	content:'';
	padding-bottom:21.5%;
	width:100%;
	height:0;
	display:block;
	position:absolute;
	box-sizing:border-box;
	top:0px;
	left:0px;
	z-index:-1;
}
#toppagebody #pickup .window::after{
	content:'';
	margin:0px 0px 10px 0px;
	padding-bottom:21.5%;
	width:100%;
	height:100%;
	display:block;
	box-sizing:border-box;
}
#toppagebody #pickup .main{
	height:auto;
	width:100%;
	position:absolute;
	overflow:visible;
}
#toppagebody #pickup .image_reel{
	position:relative;
}
#toppagebody #pickup .main p.photoleft{
	width:100%;
	height:auto;
	float:none;
	position:absolute;
	top:0;
	left:0;
}
#toppagebody #pickup .main p.photoleft img{
	width:100%;
	height:auto;
}
/*------------------------------------------------------------------------------
	停止・再生・番号ボタン共通
------------------------------------------------------------------------------*/
#toppagebody .main_view p.btn img,
#toppagebody .main_view p.btn button,
#toppagebody .main_view .paging li img{
	vertical-align:bottom;
}
/*　停止・再生ボタン
------------------------------------------------------------------------------*/
#toppagebody #pickup .btn button{
	margin:0px;
	padding:0px;
	background:none;
	border:none;
	border-radius:0px;
	-webkit-appearance:none;
	-moz-appearance:none;
	cursor:pointer;
}
#toppagebody #pickup p.btn{
	width:96px;
	position:absolute;
	z-index:200;
}
/*　番号ボタン
------------------------------------------------------------------------------*/
#toppagebody #pickup .paging{
	display:none;/*--Hidden by default, will be later shown with jQuery--*/
	position:absolute;
	z-index:100;
}
#toppagebody #pickup .paging ul{
	list-style:none;
	text-align:left;
}
#toppagebody #pickup .paging li{
	float:left;
}
#toppagebody #pickup .paging a{
	display:block;
	text-align:center;
}
/*------------------------------------------------------------------------------
	■スクロールメニュー【A】画像のみ
------------------------------------------------------------------------------*/
#toppagebody #pickup #scroll_a{
	margin-bottom:60px;
}
#toppagebody #pickup #scroll_a .window::before{
	padding-bottom:86.2068%;
}
#toppagebody #pickup #scroll_a .window::after{
	padding-bottom:86.2068%;
}
/*　詳しく見る
------------------------------------------------------------------------------*/
#toppagebody #scroll_a .more{
	padding:2px 8px;
	position:absolute;
	right:5px;
	bottom:5px;
	color:#222222;
	font-size:75%;
	background:#FFFFFF;
	border:1px solid #A6B8D5;
	line-height:1.2;
	border-radius:3px;
}
#toppagebody #scroll_a a:hover .more{
	background:#EDF1F7;
}
#toppagebody #scroll_a .photoleft a{
	background-color:#FFFFFF;
	display:block;
}
#toppagebody #scroll_a .photoleft a:hover img{
	opacity:0.8;
}
/*　停止・再生ボタン
------------------------------------------------------------------------------*/
#toppagebody #scroll_a p.btn{
	left:0px;
	top:auto;
	bottom:-40px;
}
/*　番号ボタン
------------------------------------------------------------------------------*/
#toppagebody #scroll_a .paging{
	width:calc(100% - 110px);
	left:110px;
	bottom:-32px;
}
#toppagebody #scroll_a .paging li{
	margin:0px 5px 0px 0px;
}
.flexwrap{
	display:flex;
}
#toppagebody #pickup{
	width:calc(50% - 15px);
}
#toptopics .bannerimg{
	width:calc(50% - 15px);
}
#toptopics .bannerimg ul{
    margin: 0 0 -20px -20px;
}
#toptopics .bannerimg ul li{
    margin-bottom: 18px;
    margin-left: 20px;
    width: calc(100% / 2 - 20px);
}
#toptopics .bannerimg ul li a{
    box-shadow: none;
}
#toptopics .bannerimg ul li img{
    margin: 0px;
    display: block;
}
/*==============================================================================
	トピックス
==============================================================================*/
/*------------------------------------------------------------------------------
	タブ表示
------------------------------------------------------------------------------*/
#topics{
	margin-bottom:20px;
    box-shadow: 0px 0px 7px 0px rgba(0,0,0, 0.2);
}
#topics ul#tab{
	display:flex;
	list-style-type:none;
	justify-content: center;
}
#topics ul#tab li{
	width:calc(100% / 2);
}
#topics ul#tab li a{
	padding:24px 30px 30px 30px;
	display:block;
	position:relative;
	color:#FFF;
	font-size:150%;	
	font-weight:normal;
	background:#033570;
	border-bottom:none;	
	text-decoration:none;
	text-align:center;
	transition:all .5s;
}
#topics ul#tab li a::after{
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    bottom: 22px;
    left: 50%;
    content: "";
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    transform: rotate(225deg);
}
#topics ul#tab li a:hover{
	color:#222;
	background:#D0E7FF;
}
#topics ul#tab li.ui-tabs-active a{
	color:#222;
	background:#FFF;
}
#topics ul#tab li.ui-tabs-active a::after{
    border-color: #222;
}
#topics ul#tab li:not(.ui-tabs-active) a:hover{
	color:#fff;
	background-color:#464b51;
}
#topics ul#tab li:not(.ui-tabs-active) a:hover::after{
    border-color: #fff;
}
/*------------------------------------------------------------------------------
	トピックス／広報
------------------------------------------------------------------------------*/
#tmenu{
	margin:-1px 0px 0px 0px;
	padding:60px 80px;
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	box-sizing:border-box;
}
#tmenubox{
	width:100% ;
}
/*	トピックス
------------------------------------------------------------------------------*/
#tmenu ul{
	margin-top:10px;
	list-style-type:none;
}
#tmenu ul li{
	margin:0px 0px 30px 0px;
	padding:0px 0px 30px 0px;
	position:relative;
	box-sizing:border-box;
	border-bottom:1px solid #CCC;
	line-height: 1.5;
}
#tmenu ul li:last-child{
	margin:0px 0px 60px 0px;
}
#tmenu ul li .date{
	width:10em;
	display:inline-block;
	letter-spacing:normal;
	vertical-align:top;
}
#tmenu ul li .newsli{
	width:calc( 100% - 10.5em );
	display:inline-block;
	letter-spacing:normal;
}
#tmenu ul:not(.topicsdetail) li a{
    padding-right: 50px;
    display: block;
	position:relative;
}
#tmenu ul:not(.topicsdetail) li a::before {
    width:6px;
    height:6px;
    display:block;
    position:absolute;
    right: 10px;
    top: 0.5em;
    content:"";
    border-left:1px solid #222;
    border-top:1px solid #222;
    -webkit-transform:rotate(135deg);
    transform:rotate(135deg);
}
/*　RSS等
------------------------------------------------------------------------------*/
#topics ul.topicsdetail {
    margin:20px 0px 0px 0px;
	clear:both;
    text-align:center;
}
#topics ul.topicsdetail li {
    margin:0px 40px 0px 0px;
    display:inline;
    clear:none;
    border:none;
}
#topics ul.topicsdetail li a {
    padding: 15px 0 13px;
    display: inline-block;
    width: 212px;
    background: #232B39;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}
#topics ul.topicsdetail li a:hover{
	 background: #464B51;
}
#topics ul.topicsdetail li a span{
    padding-left: 26px;
    display: inline-block;
    position: relative;
}
#topics ul.topicsdetail li a span::before{
    width: 18px;
    height: 18px;
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 10px);
    background: url("images/top/list.png");
}
#topics ul.topicsdetail li.rss a span::before{
    background: url("images/top/rss.png");
}
/*------------------------------------------------------------------------------
	#mediabg
------------------------------------------------------------------------------*/
#mediabg {
    padding-top: 90px;
    padding-bottom: 120px;
    background-color: #f0f3f8;
}
#mediabg h2{
    margin-bottom: 70px;
    padding-bottom: 25px;
    position: relative;
    text-align: center;
    font-size: 220%;
    border-bottom: 1px solid #ccc;
}
#mediabg h2::after{
    height: 5px;
    width: 4em;
    position: absolute;
    content:"";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #043472;
}
#mediabg h2 span{
    display: block;
}
#mediabg h2 span[lang="en"]{
    margin-top: 5px;
    font-size: 40%;
    color: #033570;
}
#mediabg .mediawrap{
    margin-bottom: 45px;
    display: flex;
    justify-content: space-between;
}
#mediabg .mediawrap > div{
    padding: 45px 64px;
    width: calc(50% - 15px);
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0px 0px 7px 0px rgba(0,0,0, 0.2);
}
/*	ふじのくにメディアチャンネル
------------------------------------------------------------------------------*/
#mediabg .mediawrap #movie{
    text-align: center;
}
#mediabg .mediawrap #movie h3{
    margin-bottom: 20px;
}

#mediabg .mediawrap #movie h3 img{
	max-width: 100%;
	height: auto;
}
#mediabg .mediawrap #movie > a{
    margin-bottom: 20px;
    padding-top: 35px;
    width: 293px;
    height: 200px;
    display: inline-block;
    background: url("images/top/channel_bg.png") no-repeat center center;
    box-sizing: border-box;
}
#mediabg .mediawrap #movie > a p img{
    border-radius: 10px;
    overflow: hidden;
}
#mediabg .mediawrap #movie p.text a{
    padding-left: 105px;
    display: inline-block;
    position: relative;
    text-decoration: none;
}
#mediabg .mediawrap #movie p.text a::before{
    width: 89px;
    height: 27px;
    position: absolute;
    content:"";
    background: url("images/top/channel_check.png");
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
/*	県民だより
------------------------------------------------------------------------------*/
#mediabg .mediawrap #koho{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
}
#mediabg .mediawrap #koho .kohotitle{
    width: 244px;
}
#mediabg .mediawrap #koho .kohotitle h3{
    margin-bottom: 20px;
}
#mediabg .mediawrap #koho .kohoimg p{
    padding: 5px;
    box-shadow: 0px 0px 7px 0px rgba(0,0,0, 0.2);
}
#mediabg .mediawrap #koho .flexstyle3{
    margin: 0;
    margin-top: 35px;
    width: 100%;
    justify-content:space-between;
}
#mediabg .mediawrap #koho .flexstyle3 li{
    margin: 0;
    width: calc(50% - 7px);
    min-height: auto;
    border: none;
    box-shadow: none;
}
#mediabg .mediawrap #koho .flexstyle3 li a{
    padding: 15px 15px 13px;
    border-radius: 5px;
    color: #fff;
    background: #232B39;
    text-decoration: none;
}
#mediabg .mediawrap #koho .flexstyle3 li:last-child a{
    background: #033570;
}

#mediabg ul.flexstyle1{
	margin:0 0 20px -30px;
}
#mediabg ul.flexstyle1 li{
	margin:0 0 30px 30px;
    width: calc(100% / 4 - 30px);
}
#mediabg ul.flexstyle1 li a{
    padding: 15px;
    justify-content: center;
    background: #232B39;
    box-shadow: 0px 0px 7px 0px rgba(0,0,0, 0.2);
    color: #FFF;
}
#mediabg ul.flexstyle1 li:nth-of-type(even) a{
    background: #033570;
}
#mediabg ul.flexstyle1 li a .title{
    margin-bottom: 10px;
    display: block;
    font-size: 130%;
}
#mediabg ul.flexstyle1 li a .text{
    font-weight: normal;
}
/*------------------------------------------------------------------------------
	1200px以下
------------------------------------------------------------------------------*/
@media screen and (max-width:1200px){
	#mediabg .mediawrap > div{
		 padding:30px;	
	}
	#mediabg .mediawrap #koho .kohotitle{
    width: auto;
		text-align: center;
		margin-bottom:10px;
  }
	#mediabg .mediawrap #koho .kohoimg{
		margin:auto;
	}
}
/*------------------------------------------------------------------------------
	780px以下
------------------------------------------------------------------------------*/
@media screen and (max-width:780px){
  #mediabg .mediawrap #movie > a{
		background-size: 230px;
		width: 230px;
		height: 170px;
		background-position:0 8px;
	}
	#mediabg .mediawrap #movie > a p img{
		width: 210px;
		height: auto;
    padding-top: 0px;
	}
}
/*	ランキング
------------------------------------------------------------------------------*/
#mediabg #likeranking{
    padding: 25px 30px;
    background: #FFF;
    box-shadow: 0px 0px 7px 0px rgba(0,0,0, 0.2);
}
#mediabg #likeranking h3{
    margin-bottom: 25px;
    text-align: center;
    color: #033570;
    font-size: 160%;
}
#mediabg #likeranking h3 span{
    position: relative;
    display: inline-block;
}
#mediabg #likeranking ol{
    border-top: 1px solid #CCC;
}
#mediabg #likeranking ol li{
    padding: 20px 40px 17px;
    border-bottom: 1px solid #CCC;
    display: flex;
    align-items: center;
}
#mediabg #likeranking ol li:last-child{
    border-bottom: none;
}
#mediabg #likeranking ol li .like{
    margin-left: 30px;
    margin-right: 15px;
    padding: 10px 10px 8px 46px;
    display: inline-block;
    color: #de1237;
    border-radius: 5px;
    background: url("images/top/like/mark_line.png") no-repeat left 10px center;
}
/*------------------------------------------------------------------------------
	#infobg
------------------------------------------------------------------------------*/
#infobg{
    margin-bottom: 100px;
}
#infobg h2{
    margin-bottom: 100px;
    padding-top: 135px;
    padding-bottom: 140px;
    text-align: center;
    font-size: 220%;
    color: #fff;
    background: url("images/top/info_bg.jpg") center;
    background-size: cover;
}
#infobg h2 span{
    display: block;
	text-shadow:1px 1px 0px #033570,-1px 1px 0px #033570,1px -1px 0px #033570,-1px -1px 0px #033570,1px 0px 0px #033570,0px 1px 0px #033570,-1px 0px 0px #033570,0px -1px 0px #033570;
}
#infobg h2 span[lang="en"]{
    margin-top: 5px;
    font-size: 40%;
}
/*	目的から探す テーマから探す
------------------------------------------------------------------------------*/
#infobg #purpose,#infobg .theme{
    margin-bottom: 80px;
    box-shadow: 0px 0px 7px 0px rgba(0,0,0, 0.2);
}
#infobg #purpose h3,#infobg .theme h3{
    padding: 25px 10px 22px;
    text-align: center;
    color: #fff;
    background: #033570;
    font-size: 140%;
}
#infobg #purpose ul.flexstyle1,
#infobg .theme ul.flexstyle1{
    margin: 0;
}
#infobg #purpose ul.flexstyle1 li,
#infobg .theme ul.flexstyle1 li{
    margin: 0;
    background: none;
    border-right:1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
#infobg #purpose ul.flexstyle1 li a,
#infobg .theme ul.flexstyle1 li a{
    padding: 40px 15px;
    box-shadow: none;
    color: #222;
    font-weight: normal;
}
#infobg #purpose ul.flexstyle1 li a:hover,
#infobg .theme ul.flexstyle1 li a:hover{
    background: #F3F8FE;
}
#infobg #purpose ul.flexstyle1 li:nth-child(4n+1):nth-last-child(-n+4),
#infobg #purpose ul.flexstyle1 li:nth-child(4n+1):nth-last-child(-n+4) ~ li{
  border-bottom:none;
}
#infobg #purpose ul.flexstyle1 li:nth-child(4n){
  border-right:none;
}
#infobg #purpose ul.flexstyle1 li{
    width: calc(100% / 4);
}
#infobg .theme ul.flexstyle1 li{
    width: calc(100% / 3);
}
#infobg .theme ul.flexstyle1 li:nth-child(3n+1):nth-last-child(-n+3),
#infobg .theme ul.flexstyle1 li:nth-child(3n+1):nth-last-child(-n+3) ~ li{
  border-bottom:none;
}
#infobg .theme ul.flexstyle1 li:nth-child(3n){
  border-right:none;
}
/* 組織・関連機関 */
#infobg #organization{
    box-shadow: 0px 0px 7px 0px rgba(0,0,0, 0.2);
}
#infobg #organization h3{
    padding: 25px 10px 22px;
    text-align: center;
    color: #fff;
    background: #033570;
    font-size: 140%;
}
#infobg #organization ul.flexstyle1{
    margin: 0;
    padding: 45px 30px;
}
#infobg #organization ul.flexstyle1 li{
    margin: 0 15px;
    width: calc(100% / 6 - 30px);
    background: none;
    box-shadow: 0px 0px 7px 0px rgba(0,0,0, 0.2);
}
#infobg #organization ul.flexstyle1 li:not(:nth-child(-n+6)){
    margin-top: 30px;
}
#infobg #organization ul.flexstyle1 li a{
    padding: 0;
    box-shadow: none;
    color: #222;
    font-weight: normal;
}
#infobg #organization ul.flexstyle1 li a:hover{
    background: #F3F8FE;
}
#infobg #organization ul.flexstyle1 li a img{
    margin-bottom: 12px;
    max-width: 100%;
}
/*------------------------------------------------------------------------------
	#relevancebg
------------------------------------------------------------------------------*/
#relevancebg {
    margin-bottom: 100px;
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f0f3f8;
}
#relevancebg h2{
    margin-bottom: 70px;
    padding-bottom: 25px;
    position: relative;
    text-align: center;
    font-size: 220%;
    border-bottom: 1px solid #ccc;
}
#relevancebg h2::after{
    height: 5px;
    width: 4em;
    position: absolute;
    content:"";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #043472;
}
#relevancebg h2 span{
    display: block;
}
#relevancebg h2 span[lang="en"]{
    margin-top: 5px;
    font-size: 40%;
    color: #033570;
}
#relevancebg #slidelink4{
    margin-bottom: 0px;
    padding: 0;
}
#relevancebg #slidelink4list ul{
    padding-bottom: 10px;
}
#relevancebg #slidelink4list ul li {
    margin: 1px 0px 0px 30px;
    width: 385px;
    position: relative;
}
#relevancebg #slidelink4list ul li img {
    box-shadow: 0px 0px 7px 0px rgba(0,0,0, 0.2);
    display: block;
}
#relevancebg #slidelink4scroll li{
	width:0px;
	height:0px;
	position:absolute;
	top: calc(50% - 10px);
	background: none;
	border-radius:100%;
	text-indent:-99999px;
	z-index:2;
	cursor:pointer;
}
#relevancebg #slidelink4scroll li.forward{
	left:0;
}
#relevancebg #slidelink4scroll li.forward::after{
	margin-top:-15px;
	margin-left:0px;
	width:30px;
	height:30px;
	content:"";
	position:absolute;
	top:50%;
	left:-29px;
	border-bottom:3px solid #222;
	border-left:3px solid #222;
	transform:rotate(45deg);
}
#relevancebg #slidelink4scroll li.back{
	right:0;
}
#relevancebg #slidelink4scroll li.back::after{
	margin-top:-15px;
	margin-left:0px;
	width:30px;
	height:30px;
	content:"";
	position:absolute;
	top:50%;
	left:-4px;
	border-top:3px solid #222;
	border-right:3px solid #222;
	transform:rotate(45deg);
}
/*------------------------------------------------------------------------------
	1275px以下
------------------------------------------------------------------------------*/
@media screen and (max-width:1275px){
	#relevancebg #slidelink4{
			padding: 0 60px;
	}
	#relevancebg #slidelink4scroll li.back{
  	right:40px;
	}
	#relevancebg #slidelink4scroll li.forward{
		left:40px;
	}
}
/*------------------------------------------------------------------------------
	#miryokubg
------------------------------------------------------------------------------*/
#miryokubg {
    margin-bottom: 70px;
}
#miryokubg h2{
    margin-bottom: 70px;
    padding-bottom: 25px;
    position: relative;
    text-align: center;
    font-size: 220%;
    border-bottom: 1px solid #ccc;
}
#miryokubg h2::after{
    height: 5px;
    width: 4em;
    position: absolute;
    content:"";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #043472;
}
#miryokubg h2 span{
    display: block;
}
#miryokubg h2 span[lang="en"]{
    margin-top: 5px;
    font-size: 40%;
    color: #033570;
}
#miryokubg .bannerimg{
	padding:0px 0px 30px 0px;
}
#miryokubg .bannerimg ul{
	margin:0 0 -30px -30px;
	display:flex;
	flex-wrap:wrap;
	list-style:none;
}
#miryokubg .bannerimg ul li{
	margin:0 0px 30px 30px;
	 width:calc(100% / 3 - 30px);
}
/*******************************************************************************
[3] 緊急エリア
*******************************************************************************/
#kinkyuwrap{
    margin-bottom: 50px;
}
/*==============================================================================
	緊急情報
==============================================================================*/
.kinkyu{
	margin:0px 0px 20px 0px;
	padding:0px;
    display: flex;
	background:#FFFFFF;
	border:15px solid #af2e32;
    border-left: none;
}
.kinkyu div h2{
	padding: 10px;
    min-width: 270px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
	color:#FFFFFF;
	font-size:130%;
	background:#af2e32;
}
.kinkyu div h2 span{
    padding-top: 60px;
    display: block;
    background: url("images/top/kinkyu.png") no-repeat center top;
}
.kinkyu .kinkyuinner{
    padding: 30px;
    width: 100%;
}
.kinkyu h3{
	margin:0px 12px 10px 0px;
	padding:5px 5px 5px 15px;
	font-size:115%;
    color: #af2e32;
	border-left:8px solid #af2e32;
	border-bottom:1px solid #CCCCCC;
}
.kinkyu p{
	padding:0px 15px 5px 0px;
}
.kinkyu ul{
	padding:0px 15px 5px 0px;
	list-style-type:none;
}
.kinkyu ul li{
	margin-bottom:3px;
	padding-left:20px;
	position:relative;
}
.kinkyu ul li::before{
    width:15px;
    height: 15px;
    position: absolute;
    top: calc(0.5em - 2px);
    left: 0px;
    content: "";
    border-radius: 50%;
    background: #af2e32;
    border: none;
}
.kinkyu ul li::after{
    width: 3px;
    height: 3px;
    display: block;
    position: absolute;
    top: calc(0.5em + 3px);
    left: 4px;
    content: "";
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
/*==============================================================================
	重要なお知らせ
==============================================================================*/
.important{
	margin:0px 0px 20px 0px;
	padding:0px 0px 0px 0px;
	background:#FFFFFF;
	border:3px solid #fdabab;
}
.important h2{
	margin-bottom:10px;
	padding:8px 10px 8px 15px;
	color:#222;
	font-size:130%;
	background:#fdabab;
}
.important h3{
	margin:0px 12px 10px 12px;
	padding:5px 5px 5px 10px;
	font-size:115%;
	background:#F0F3F8;
	border-left:6px solid #fdabab;
}
.important p{
	padding:0px 20px 5px 20px;
}
.important ul{
	padding:0px 20px 10px 20px;
	list-style-type:none;
}
.important ul li{
	margin-bottom:3px;
	padding-left:25px;
	position:relative;
}
.important ul li::before{
    width:15px;
    height: 15px;
    position: absolute;
    top: calc(0.5em - 2px);
    left: 0px;
    content: "";
    border-radius: 50%;
    background: #fdabab;
    border: none;
}
.important ul li::after{
    width: 3px;
    height: 3px;
    display: block;
    position: absolute;
    top: calc(0.5em + 3px);
    left: 4px;
    content: "";
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.important.level2{
	border-color:#ffe374;
}
.important.level2 h2{
	background:#ffe374;
}
.important.level2 h3{
	border-left-color:#ffe374;
}
.important.level2 ul li::before{
    background: #ffe374;
}
.important.level3{
	border-color:#033570;
}
.important.level3 h2{
	color:#FFF;
	background:#033570;
}
.important.level3 h3{
	border-left-color:#033570;
}
.important.level3 ul li::before{
    background: #033570;
}
/*------------------------------------------------------------------------------
	1200px以下
------------------------------------------------------------------------------*/
@media screen and (max-width:1200px){
	.container{
		padding-left:15px;
		padding-right:15px;
		box-sizing: border-box;
	}
}