@charset "shift_jis"; 

/*********************************************************
共通設定
*********************************************************/


/*
見出し
*********************************************************/

/*サイトロゴ画像*/
h1{}
/*ページタイトル*/
h2 {
	text-align:center;
	color:#fff;
	font-weight:bold;
	font-size:1.4em;
	padding:25px;
	background-color: rgba(27, 48, 77, 0.8);
}
/*タイトル*/
h3 {
	padding:15px;
	margin-bottom:15px;
	background:#1a304c;
	color:#fff;
	border-radius: 5px;        /* CSS3草案 */  
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 5px;   /* Firefox用 */
	line-height:1.4em;
	font-size:1.2em;
	font-weight:bold;
}
/*サブタイトル*/
h4 {
	padding:15px;
	margin-bottom:15px;
	background:#fff;
	border:1px solid #ddd;
	border-radius: 5px;        /* CSS3草案 */  
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 5px;   /* Firefox用 */
	line-height:1.4em;
	font-size:1.2em;
	font-weight:bold;
}
h5 {
	padding:15px;
	margin-bottom:15px;
	border-bottom:2px solid #1a304c;
	line-height:1.4em;
	font-size:1.2em;
	font-weight:bold;
}

.txtSet {
	margin-bottom:50px;
	text-align:center;
}
.txtSet dt {
	color:#109cda;
	font-size:1.8em;
	margin-bottom:30px;
	line-height:1.6em;
}
.txtSet dd {
	font-size:1.1em;
	line-height:1.6em;
}

/*TABLET*/
@media only screen and (min-width : 600px){
.txtSet dt {
	font-size:2.6em;
	margin-bottom:30px;
}
.txtSet dd {
	font-size:1.4em;
	line-height:1.8em;
}
}
/*PC*/
@media only screen and (min-width : 1025px){
}
/*IE*/
@media all and (-ms-high-contrast:none){
}


/*
共通-コンテンツ
*********************************************************/

.contents {
	padding:20px 0;
}
.contents2 {
	padding:20px 0 0;
}
.contents3 {
	padding:0 0 20px;
}
.ctBgGray {
	background:#f7f7f7;
}

/*TABLET*/
@media only screen and (min-width : 600px){
.contents {
	padding:40px 0;
}
.contents2 {
	padding:40px 0 0;
}
}
/*PC*/
@media only screen and (min-width : 1025px){
.contents {
	padding:80px 0;
}
.contents2 {
	padding:80px 0 0;
}
}

/*
subMenu
***********************************************************/
.subMenu{
	position:relative;
	z-index:1;
  display:flex;
  align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
	border-top:#258ecf solid 2px;
	border-bottom:#258ecf solid 2px;
	padding:10px 5px;
	background-color:rgba(255,255,255,0.5);
	gap:5px;
	}
.subMenu p{
	 flex: 1 0 30%;
		}
.subMenu a{
  display: flex;
  align-items: center;
  justify-content: center;
	position:relative;
	height:100%;
	text-align:center;
	color:#333;
	text-decoration:none;
	font-weight:bold;
	border:#cccccc solid 1px;
	padding:10px 2px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	behavior: url(border-radius.htc); /* IE */
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#ffffff),
		to(#f7f7f7));
	background:-webkit-linear-gradient(top, #ffffff 0% , #f7f7f7 100%);
	background:-moz-linear-gradient   (top, #ffffff 0% , #f7f7f7 100%);
	background:-o-linear-gradient     (top, #ffffff 0% , #f7f7f7 100%);
	background:-ms-linear-gradient(top, #ffffff, #f7f7f7); /* IE */
	background:linear-gradient        (top, #ffffff 0% , #f7f7f7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
		GradientType=0,startColorstr='#FFffffff', endColorstr='#FFf7f7f7');/*IE10用（色の頭にFFが必要）*/
	transition: 0.1s all ease 0s;
	}
	.subMenu a:hover,
	.subMenu a:active{
		background:#f7f7f7;
		color:#c00000;
		box-shadow:none;
		-moz-box-shadow:none;
		-o-box-shadow:none;
		-webkit-box-shadow:none;
		}
@media only screen and (min-width : 600px){
	.subMenu p{
		 flex: 1 0 20%;
			}

}
@media only screen and (min-width : 1025px){
	.subMenu{
		padding:20px 15px;
		gap:10px;
		}
	.subMenu p{
		 flex: 1 0 10%;
			}
}

/*
ヘッダー
*********************************************************/
#header{
	clear:both;
	float:none;
	padding:3px 0;
	padding-right:50px;
	}
.logo img{max-height:44px;}

/*TABLET*/
@media only screen and (min-width : 600px){
}
/*PC*/
@media only screen and (min-width : 1025px){
	.logo img{max-height:50px;}
}

/*IE*/
@media all and (-ms-high-contrast:none){
}

/*
フッター
*********************************************************/
#footer{
	/*position: absolute; ←wrapperの一番下に表示 */
	bottom: 0;
	left:0;
	width:100%;
	clear:both;
	float:none;
	padding:30px 0;
	background:#1a304c;
	color:#fff;
	}
.footWrap {
	display:flex;
  flex-wrap: wrap;
	align-items:flex-start;
	justify-content:space-between;
}
.footWrap div:first-child {
	width:100%;
	text-align:center;
}
.footWrap div:last-child {
	width:100%;
}
.footWrap > div p:nth-child(1) {
	font-size:1.4em;
	line-height:1.4em;
	margin-bottom:10px;
}
.footWrap > div p:nth-child(2) {
	margin-bottom:10px;
}
.footWrap > div p:nth-child(3) {
	margin-bottom:10px;
	font-size:1.2em;
	font-weight:bold;
	line-height:1.4em;
	color:#ffba00;
}
.footWrap > div p:nth-child(4) {
	margin-bottom:10px;
}
.footWrap > div p:nth-child(4) img {
	margin:auto;
}
.footWrap > div p:nth-child(5) a {
	text-align:center;
	margin-bottom:30px;
}
.footWrap div iframe {
	border-radius: 7px;        /* CSS3草案 */  
	-webkit-border-radius: 7px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 7px;   /* Firefox用 */
	height:370px;
}
.copyright{
	padding:20px 0;
	font-size:0.6em;
	line-height:1;
	text-align:center;
	}
/*TABLET*/
@media only screen and (min-width : 600px){
#footer{padding:60px 0;}
}
/*PC*/
@media only screen and (min-width : 1025px){
#footer{padding:100px 0;}
.footWrap div:first-child {
	width:48%;
	text-align:left;
}
.footWrap div:last-child {
	width:48%;
}
.footWrap > div p:nth-child(1) {
	font-size:2em;
	line-height:1.4em;
	margin-bottom:20px;
}
.footWrap > div p:nth-child(2) {
	margin-bottom:20px;
}
.footWrap > div p:nth-child(3) {
	margin-bottom:20px;
	font-size:1.3em;
	font-weight:bold;
	line-height:1.4em;
	color:#ffba00;
}
.footWrap > div p:nth-child(4) {
	margin-bottom:20px;
}
.footWrap > div p:nth-child(4) img {
	margin:0;
}
.footWrap > div p:nth-child(5) a {
	text-align:left;
	margin-bottom:0;
}
}
/*IE*/
@media all and (-ms-high-contrast:none){
}

/*********************************************************
共通指定
*/
.bgNavy {
	background:#1a304c;
}
.bgNavyWave {
	position:relative;
	background:#1a304c;
	z-index:1;
}
.bgNavyWave:after{
	position:absolute;
	bottom:-150px;
	left:0;
	height: 95px;
	background-image:url(../images/common/wave.png);
	background-size: cover;
	background-position: left;
	background-repeat: repeat-x;
	z-index: 2;		
}
.bgSkyblue {
	position:relative;
	background:#d5ecff;
}
.WhitePlate {
	padding:30px;
	border-radius: 10px;        /* CSS3草案 */  
	-webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 10px;   /* Firefox用 */
	/*シャドウ（順序 横・下・ぼかし・広がり・色）*********************/ 
	box-shadow: 0 0 5px 0px rgba(0,0,0,0.2); 
	-moz-box-shadow: 0 0 5px 0px rgba(0,0,0,0.2); 
	-o-box-shadow: 0 0 5px 0px rgba(0,0,0,0.2); 
	-webkit-box-shadow: 0 0 5px 0px rgba(0,0,0,0.2);
	background:#fff;
}
.WhitePlate dt {
	color:#109cda;
	font-size:1.6em;
	font-weight:bold;
	margin-bottom:20px;
}
.WhitePlate dd {
	line-height:1.8em;
}
/*TABLET*/
@media only screen and (min-width : 600px){
.WhitePlate {
	padding:50px;
}
}
.linkTxt a {
	display:block;
	margin-top:15px;
	color:#ffba00 !important;
	text-decoration:none;
	text-align:right;
}
.linkTxt a:hover,
.linkTxt a:active {
	color:#ffba00 !important;
	text-decoration:underline;
}
.linkTxt a i {
	margin-right:10px;
}


/*********************************************************
index
*/
.header{
	position:fixed;
	width:100%;
	top:0;
	left:0;
	display:flex;
	justify-content: space-between;
	z-index:6;
	padding-top:60px;
	padding-left:60px;
	padding-right:60px;
	box-sizing: border-box;
	}
.header.fixed{
	padding:20px 30px 20px 30px;
	background-color: rgba(27,48,77,0.8); /*#1B304D*/
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	}
.header.fixed img{
	max-height: 50px;
	}
	
.mainVisual{
	overflow:hidden;
	position: relative;
	width: 100%;
	height: 100vh;
	display:flex;
	align-items: center;
	justify-content: center;
	z-index:5;
	}
	.mainVisual:before,
	.mainVisual:after{
		content:"";
		position:absolute;
		width: 100%;
		}
	.mainVisual:before{
		top: 0;
		left: 0;
		height: 100vh;
		background-image:url(../images/mainImg/bg1.png);
		background-color: rgba(0, 0, 0, 0.4);  /*#000000*/
		z-index: 2;
		}
	.mainVisual:after{
		bottom:0;
		left:0;
		height: 48px;
		background-image:url(../images/mainImg/bg2.png);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		z-index: 2;		
		}
	.mainVisual_catchcopy{
		z-index:3;
		}
	.mainVisual_bnr{
		position:absolute;
		right:5%;
		bottom:5%;
		z-index:3;
		text-align:right;
		}
	.mainVisual_bnr img {
		width:40%;
		
	}
/*TABLET*/
@media only screen and (min-width : 600px){
	.mainVisual_bnr img {
		width:60%;
	}
}
/*PC*/
@media only screen and (min-width : 1025px){
	.mainVisual_bnr img {
		width:100%;
	}
}

	.mainVisual_video{
		overflow:hidden;
		z-index:1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
		}
		.mainVisual_video video{
			max-width:none;
			}

.about{
  background-image: url(../images/common/wave.png), url(../images/bgBlue.jpg);
  background-position: top left, bottom center;
  background-size: auto, cover;
  background-repeat: repeat-x, no-repeat;
	background-color:#d5ecff;
	position:relative;
	}
.about.contents{
	padding:140px 0 100px;
	}
.about_pic {
	width:100%;
	height: 300px;
	background:url(../images/slideImg.png) top left repeat-x;
	margin-bottom:50px;
}
/*TABLET*/
@media only screen and (min-width : 600px){
.about.contents{
	padding:200px 0 100px;
	}
.about_pic {
	margin-bottom:100px;
}
}


/*NEWS*/
.topNews {
	width:100%;
	padding-bottom:0;
}
.news{
	/*width:100%;*/
	width:100%;
	/*height:270px;*/
	background:url(../news.jpg) center top no-repeat;
	}
.bgNavyWave .inner {
	display:flex;
  flex-wrap: wrap;
	align-items:flex-start;
	/*justify-content:space-between;*/
	justify-content:space-around;
}
.topNewsTtl {
	color:#ffde00;
	text-align:center;
	width:100%;
	letter-spacing:0.2em;
	font-size:2em;
}
.topNewsTtl span {
	display:block;
	color:#fff;
	letter-spacing:0.5em;
	font-size:0.45em;
	margin-top:10px;
}
.topCalendar {
	width:100%;
}
.topCalendar img {
	margin:auto;
}
.topCalendar dl {
}
.topCalendar dt {
	color:#fff;
	font-style:italic;
	font-size:1.3em;
	letter-spacing:0.1em;
	margin-bottom:15px;
}
.topCalendar dd {
}

/*
.newsScroll{
	max-height:400px;
	overflow-y:auto;
	}
	.newsScroll::-webkit-scrollbar {
    width: 10px;
		}
	.newsScroll::-webkit-scrollbar-track {
    background-color:#ddd;
		}
 	.newsScroll::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
		background-color:#ccc;
		}
*/

.news{}
.news dl{
	float:none;
	clear:both;
	padding:10px;
	border-bottom:#ccc solid 1px;
	}
.news .newsDate{
	float:left;
	width:100px;
	padding:5px 0;
	font-weight:bold;
	color:#fff;
	}
.news .newsCate{
	float:right;
	padding:6px 2px 3px;
	margin-top:5px;
	width:100px;
	background:#fff;
	text-align:center;
	border-radius: 25px;        /* CSS3草案 */  
	-webkit-border-radius: 25px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 25px;   /* Firefox用 */
	line-height:1em;
	font-size:0.8em;
	font-weight:bold;
	}
	.newsCate.cate1 { color:#237e80; }
	.newsCate.cate2 { color:#941ca2; }
	.newsCate.cate3 { color:#eb7620; }
	.newsCate.cate4 { color:#1044d8; }
	.newsCate.cate5 { color:#d5d200; }
	
.news .newsTtl{
	float:none;
	clear:both;
	padding-top:5px;
	}
.news a {
	text-decoration:none;
	color:#fff;
}
.news a:hover,
.news a:active {
	text-decoration:underline;
	color:#fff;
}
.news .linkTxt a {
	text-decoration:none;
	color:#ffba00;
	text-align:right;
}

.second .news .newsTtl {
	color:#1a304c;
}


/*TABLET*/
@media only screen and (min-width : 600px){
.topNews {
	padding-bottom:40px;
}
.news{
	width:100%;
	}
.topNewsTtl {
	width:100%;
}
.topCalendar {
	width:100%;
}
}
/*PC*/
@media only screen and (min-width : 1025px){
.news{
	width:57%;
	}
.topNewsTtl {
	width : 130px;
}
.topCalendar {
	width:25%;
}
	.news .newsCate{
		float:left;
		}
	.news .newsTtl{
		float:left;
		clear:none;
		padding:5px 0 5px 20px;
		width : 80% ;
		width : -webkit-calc(100% - 280px) ;
		width : calc(100% - 280px) ;
		color:#fff;
	}
}
/*IE*/
@media all and (-ms-high-contrast:none){
}

.topWhitePlate {
}
.topWhitePlate .WhitePlate {
	display:flex;
  flex-wrap: wrap;
	align-items:flex-start;
	justify-content:space-between;
}
.topWhitePlate .WhitePlate dl {
	width:100%;
	order:1;
}
.topWhitePlate .WhitePlate p {
	width:100%;
	order:2;
	margin-top:10px;
}
.topWhitePlate .WhitePlate p.linkTxt{
	width:100%;
}
/*TABLET*/
@media only screen and (min-width : 600px){
.topWhitePlate .WhitePlate dl {
	width:55%;
	order:0;
}
.topWhitePlate .WhitePlate p {
	width:40%;
	order:0;
	margin-top:0;
}
}

/*フッター統計情報＋バナー2本***********/
.statisticsWrap {
	display:flex;
  flex-wrap: wrap;
	align-items:flex-start;
	justify-content:space-between;
	margin-bottom:50px;
}
.statisticsWrap dt {
	color:#ffcc33;
	font-size:1.6em;
	background:#1a304c;
	border-radius: 7px;        /* CSS3草案 */  
	-webkit-border-radius: 7px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 7px;   /* Firefox用 */
	text-align:center;
	padding:50px 10px;
	position:relative;
	width:100%;
	margin-bottom:15px;
}
.statisticsWrap dt::after {
	content: "\25BC";
	position:absolute;
	left:50%;
	bottom:-19px;
	transform:translateX(-50%);
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%,-50%);
	color:#1a304c;
}
.statisticsWrap dt span {
	display:block;
	color:#fff;
	font-size:0.7em;
	margin-top:10px;
}
.statisticsWrap dd {
	width:100%;
	background:#f7f7f7;
	border:3px solid #f1f1f1;
	border-radius: 7px;        /* CSS3草案 */  
	-webkit-border-radius: 7px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 7px;   /* Firefox用 */
	padding:20px;
}
.statisticsSystem {
	display:flex;
  flex-wrap: wrap;
	align-items:flex-start;
	justify-content:space-around;
	text-align:center;
}
.statisticsSystem li {
	padding:0 10px;
	margin-bottom:15px;
	/*border-right:2px solid #ccc;*/
	font-size:1.3em;
	font-weight:bold;
	text-shadow: 2px 2px 2px #ffffff, -2px 2px 2px #ffffff, 2px -2px 2px #ffffff, -2px -2px 2px #ffffff;
}
/*.statisticsSystem li:last-child {
	border:none;
}*/
.statisticsSystem li em {
	font-style:normal;
	color:#109cda;
}
.statisticsSystem li span a  {
	display:block;
	text-decoration:none;
	font-size:0.8em;
	text-shadow:none;
	font-weight:normal;
	background:#109cda;
	color:#fff;
	padding:15px 20px;
	margin-top:15px;
	border-radius: 7px;        /* CSS3草案 */  
	-webkit-border-radius: 7px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 7px;   /* Firefox用 */
	line-height:1em;
	/*シャドウ（順序 横・下・ぼかし・広がり・色）*********************/ 
	box-shadow: 2px 2px 0 2px rgba(0,0,0,0.1); 
	-moz-box-shadow: 2px 2px 0 2px rgba(0,0,0,0.1); 
	-o-box-shadow: 2px 2px 0 2px rgba(0,0,0,0.1); 
	-webkit-box-shadow: 2px 2px 0 2px rgba(0,0,0,0.1);
}
.statisticsSystem li span a i {
	display:inline-block;
	color:#ffcc33;
	margin-right:5px;
}
.fBn {
	display:flex;
  flex-wrap: wrap;
	align-items:flex-start;
	justify-content:space-between;
}
.fBn li {
	width:100%;
	margin:5px 0;
}
.fBn img {
	width:100%;
	margin:auto;
}
/*TABLET*/
@media only screen and (min-width : 600px){
.statisticsWrap dt {
	padding:50px 10px;
	width:100%;
	margin-bottom:15px;
}
.statisticsWrap dd {
	width:100%;
	padding:20px;
}
.statisticsWrap dt::after {
	content: "\25BC";
	position:absolute;
	left:50%;
	bottom:-19px;
	transform:translateX(-50%);
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%,-50%);
	color:#1a304c;
}
.statisticsSystem li {
	margin-bottom:15px;
}
.fBn li {
	width:49%;
	margin:0;
}
}

/* PC */
@media only screen and (min-width: 1025px) {
.statisticsWrap dt {
	padding:60px 20px;
	width:40%;
}
.statisticsWrap dd {
	width:58%;
	padding:36px 20px;
}
.statisticsWrap dt::after {
	content: "\25B6";
	color:#1a304c;
	position:absolute;
	top:50%;
	right:-20px;
	left:auto;
	bottom:auto;
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
}
}

/*後から調整分*/
.statisticsSystem-kk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
 -webkit-box-pack: center;
     -ms-flex-pack: center;
         justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.statisticsSystem-kk li {
  width: 100%;
 padding:10px;
 border-bottom:1px solid #ddd;
}

.statisticsSystem-kk li:nth-child(3) {
 border-bottom:none;
 }

.statisticsSystem-kk li p {
  text-align: center;
  font-weight: bold;
 margin-bottom:10px;
}

.statisticsSystem-kk li a {
  display: block;
  text-decoration: none;
  background: #109cda;
  color: #fff;
 padding:0.5em;
 text-align:center;
}

.statisticsSystem-kk-box li a i {
 color:#ffcc33;
 margin-right:5px;
}

/* TABLET: 600px以上で2列 */
@media only screen and (min-width: 600px) {
  .statisticsSystem-kk li {
    width: 50%;
  border-right:1px solid #ddd;
  border-bottom:0;
  }
 .statisticsSystem-kk li:nth-child(2) {
  border-right:none;
  }
 .statisticsSystem-kk li:nth-child(3) {
  border-right:none;
  }
}

/* PC: 1025px以上で3列 */
@media only screen and (min-width: 1025px) {
  .statisticsSystem-kk li {
    width: 33.3333%;
  padding:20px;
  }
 .statisticsSystem-kk li:nth-child(2) {
  border-right:1px solid #ddd;
  }

}

/* IE対策（念のため） */
@media all and (-ms-high-contrast: none) {
  .statisticsSystem-kk {
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
  }
  .statisticsSystem-kk li {
    width: 33.3333%; /* IEでは常に3列に固定（調整可） */
  }
}


/*********************************************************
2nd
*/

/* 共通設定 
***************************/
.mainVisual2nd {
	overflow:hidden;
	position: relative;
	width: 100%;
	height: auto;
	display:flex;
	align-items: center;
	justify-content: center;
	background:url(../images/common/secondTtlBg.jpg) center center no-repeat;
	background-size:cover;
	padding:150px 0;
	}
.secondLinkBtn {
	padding:10px 0;
	background:#f7f7f7;
}
/*PC*/
@media only screen and (min-width : 1025px){
.secondLinkBtn {
	padding:20px 0;
	background:#f7f7f7;
}
}
.secondLinkBtn ul {
	display:flex;
  flex-wrap: wrap;
	align-items:flex-start;
	justify-content:center;
}
.secondLinkBtn li a {
	display:block;
	text-align:center;
	line-height:1em;
	padding:5px 10px;
	margin:3px;
	border:1px solid #ddd;
	background:#fff;
	border-radius: 5px;        /* CSS3草案 */  
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 5px;   /* Firefox用 */
	font-size:0.8em;
	text-decoration:none;
}
/*PC*/
@media only screen and (min-width : 1025px){
.secondLinkBtn li a {
	padding:10px 20px;
	font-size:0.9em;
	margin:5px;
}
}
i.iR10 {
	margin-right:10px;
}
i.iL10 {
	margin-left:10px;
}
a i {
	margin-right:10px;
}
a:link.nomalBtn {
	text-align:center;
	padding:10px 20px;
	line-height:1em;
	background:#cc0000;
	color:#fff;
	text-decoration:none;
	font-weight:bold;
	border-radius: 5px;        /* CSS3草案 */  
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 5px;   /* Firefox用 */
}
a:hover.nomalBtn {
	background:#ffde00;
}
/*アンカーリンクの位置指定*/
a.jump_point {
	height: 1px;
	display: block;
	padding-top: 120px;
	margin-top: -120px;
}

.contentsBlock {
	padding:0 0 15px;
	margin-bottom:15px;
	border-bottom:1px dashed #ddd;
	display:flex;
  flex-wrap: wrap;
	align-items:flex-start;
	justify-content:flex-start;
}
.contentsBlock dt {
	width:100%;
	margin-right:0;
	margin-bottom:10px;
}
.contentsBlock dt img {
	max-width:160px;
	width:100%;
	margin:auto;
}
.contentsBlock dd {
	width:100%;
}
/*PC*/
@media only screen and (min-width : 600px){
.contentsBlock {
	padding:0 0 15px;
	margin-bottom:15px;
	border-bottom:1px dashed #ddd;
	display:flex;
  flex-wrap: wrap;
	align-items:flex-start;
	justify-content:flex-start;
}
.contentsBlock dt {
	width:15%;
	margin-right:2%;
}
.contentsBlock dt img {
	max-width:160px;
	width:100%;
	margin:auto;
}
.contentsBlock dd {
	width:83%;
}
}

.tableLR {
	display:flex;
  flex-wrap: wrap;
	align-items:flex-start;
	justify-content:space-between;
}
.tableLR table {
	width:100%;
}
.tableLR table:first-child {
	margin-bottom:20px;
}
.tableLR table .thead th {
	background:#1a304c;
	color:#fff;
}
/*PC*/
@media only screen and (min-width : 600px){
.tableLR table {
	width:49%;
}
.tableLR table:first-child {
	margin-bottom:0;
}
}


/* お知らせ 
***************************/
.second .news {
	width:100%;
	background:none;
}
.second .news .newsDate{
	color:#1a304c;
	}
.second .news .newsCate{
	background:#fff;
	border:1px solid #ddd;
	}
	.second .newsCate.cate1 { border:1px solid #237e80; color:#237e80; /*最新情報*/ }
	.second .newsCate.cate2 { border:1px solid #941ca2; color:#941ca2; /*イベント情報*/ }
	.second .newsCate.cate3 { border:1px solid #eb7620; color:#eb7620; /*今月のおすすめ果物*/ }
	.second .newsCate.cate4 { border:1px solid #1044d8; color:#1044d8; /*ゆるキャラ*/ }
	.second .newsCate.cate5 { border:1px solid #ccc; color:#ccc; /*その他*/ }
.second .news a {
	color:#1a304c;
}

/* 市場事業者 
***************************/
.shop {}
.shop dl dt {
	font-weight:bold;
	margin-bottom:10px;
	color:#c30;
}

/* 市場社会見学 
***************************/
.eventImg {
	margin-bottom:60px;
}

/* プライバシーポリシー
***************************/
.pp {
	padding:30px;
	border:1px solid #ddd;
}

/* お問い合わせ
***************************/
.contactTxtCnt {
	text-align:left;
}
/*PC*/
@media only screen and (min-width : 1025px){
.contactTxtCnt {
	text-align:center;
}
}

/*市場のご案内（取扱品目）
***************************/
.itemList {
	display:flex;
  /*flex-wrap: wrap;*/
  flex-wrap: nowrap;
  /*flex-wrap: wrap-reverse;*/
	align-items:flex-start;
	justify-content:center;
	/*justify-content:space-between;*/
	/*justify-content:space-around;*/
}
.itemList li {
	margin:0 5px;
}

/*市場のご案内（売上高）
***************************/
.sales {
}
.sales {
}
.sales .table_pc td {
	text-align:center;
}

/*統計情報
***************************/
/* 日報 - 横並びアイコン */
.file-legend-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Flexboxを有効にする */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 要素の垂直方向の中央を揃える */
  gap: 0.5em; /* 各要素の間（画像とテキストの間など）に均等なスペースを設ける */
	font-size:0.875em;
	font-weight:700;
}
.file-legend-flex img {
  height: 20px; /* 画像の高さを40pxに指定 */
  width: auto; /* 画像の縦横比を維持 */
}
/*TABLET*/
@media only screen and (min-width : 600px){
}
/*PC*/
@media only screen and (min-width : 1025px){
}
/*IE*/
@media all and (-ms-high-contrast:none){
}



/* 日報 - テーブル */
/* --- Responsive Table Styles (SP) --- */
.daily-report-table {
    border: 1px solid #ccc;
		border-collapse: collapse;
}

/* PC用のヘッダー行を非表示に */
.daily-report-table tbody tr:first-child {
    display: none;
}

.daily-report-table thead{
	width: 100%;
	display: block;
	}
	.daily-report-table thead th{
		color:#fff;
		background-color:#1a304c !important;
		}

/* 各要素をブロックとして表示 */
.daily-report-table,
.daily-report-table tbody,
.daily-report-table tr,
.daily-report-table th,
.daily-report-table td {
    display: block;
    width: 100% !important;
}

.daily-report-table tbody {
    border-top: none;
}

/* 行のスタイル */
.daily-report-table tr {
    border: none;
    border-bottom: 1px solid #ccc;
}
.daily-report-table tr:last-child {
    border-bottom: none;
}

/* 日付部分をカードヘッダーに */
.daily-report-table tr th {
    background-color: #f7f7f7;
    text-align: center;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px;
}

.daily-report-table td {
    text-align: left;
    padding: 10px;
    position: relative;
    border: none;
    border-bottom: 1px solid #ccc;
}
.daily-report-table tr td:last-child {
    border-bottom: none;
}

/* 休日用の背景色と文字色 */
.daily-report-table .holiday td {
    background-color: #FDEEED;
    color: #8C1C13;
    font-weight: bold;
}
.daily-report-table .holiday td p{
	width:auto;
	}

.daily-report-table td a {
    display: inline-flex;
    align-items: center;
    margin: 0 5px;
    text-decoration: none;
    color: #007bff;
}
.daily-report-table td a:hover {
    text-decoration: underline;
}
.daily-report-table td img {
    margin-right: 4px;
    height: 1em; /* 文字サイズに連動させる */
    width: auto;
}

.daily-report-table th p,
.daily-report-table td p{
	display:inline-block;
	font-weight:700;
	width:3em;
	}


/* =================================== */
/* TABLET (600px 〜 1024px)            */
/* =================================== */
@media only screen and (min-width : 600px) {
    /* --- Responsive Table Styles (Tablet) --- */
    /* テーブル本来の表示形式に戻す */
    .daily-report-table,
    .daily-report-table tbody,
    .daily-report-table tr,
    .daily-report-table th,
    .daily-report-table td {
        display: revert;
    }
    /* 非表示にしていたヘッダーを再表示 */
    .daily-report-table thead,
    .daily-report-table tbody tr:first-child {
        display: revert;
    }
    /* スマホ用に設定したスタイルをリセット */
    .daily-report-table {
        border: none;
    }
    .daily-report-table tr th {
        border-bottom: 1px solid #ccc;
        background-color: #f7f7f7;
    }
    .daily-report-table td,
    .daily-report-table tr th,
    .daily-report-table tr {
        border: 1px solid #ccc;
    }
    .daily-report-table td {
        text-align: center;
        vertical-align: middle;
    }
		.daily-report-table th p,
		.daily-report-table td p{
			width:auto;
		}
.daily-report-table tr td:last-child {
    border-bottom: 1px solid #ccc;
}
    /* PC用のヘッダーの色分け */
    .daily-report-table .fruit {
        background-color: #e6ffed;
    }
    .daily-report-table .sea {
        background-color: #e6f7ff;
    }
}




