@charset "UTF-8";
/*-------news.php----------------------------------------- *
 * CSSは必要最低限しか指定してませんのでお好みで（もちろん外部化OK） *
-----------------------------------------------------------*/

/* clearfix */
.clearfix:after { content:"."; display:block; clear:both; height:0; visibility:hidden; }
.clearfix { display:inline-block; }

/* for macIE \*/
* html .clearfix { height:1%; }
.clearfix { display:block; }

ul#newsList_01{
	margin:0 0 10px;/*- 15px → 10px -*/
	padding-top: 20px;/*- 0 → 20 -*/
	font-family:"メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
ul#newsList_01 li{
	color:#666;
	font-size:12px;
	margin:0;
	padding:7px 10px;/*- 5px 0;→ 10px 10px; -*/
	margin-bottom:3px;
	border-bottom:1px dotted #ccc;
	line-height:120%;
	list-style-type:none;
}
a{color:#36F;text-decoration:underline;}
a:hover{color:#039;text-decoration:none;}

.catName_01{/*- お知らせアイコン部分 -*/
	display:inline-block;
	padding:6px 8px;/*- 3px 8px → 6px 8px-*/
    background-color: #ffffff;
	border:1px solid #ccc;
	border-radius:6px;
	font-size:11px;
	line-height:100%;
	margin:0 2px;
}
.newMark{
	display:inline-block;
	border:1px solid #F00;
	padding:1px 4px;
	font-size:11px;
	line-height:100%;
	background:#F00;
	color:#fff;
	box-shadow:1px 1px 1px #999;
	border-radius:8px;
	font-style:italic;
}
.comment{
	display:block;
	padding:3px 0;
	float:left;
	overflow:hidden;
	width:80%;/* 本文部分の幅。ここは特に設置ページ合わせて変更下さい */
}
.thumbNailWrap_01{/*-コメント本文の部分-*/
	display:block;
	width:110px;
	float:left;
	height:50px;/*- 80px → 50px -*/
	overflow:hidden;
}

/* Pager style（外部化可） */
.pager{
	text-align:right;
	padding:10px;
	clear:both;
}
/*ページャーボタン*/
.pager a{
    border: 1px solid #999;
    border-radius: 5px 5px 5px 5px;
    color: #333;
    font-size: 12px;
    padding: 3px 7px 2px;
    text-decoration: none;
	margin:0 1px;
}

/*現在のページのボタン*/
.pager a.current{
    background: #999;
    border: 1px solid #999;
    border-radius: 5px 5px 5px 5px;
    color: #fff;
    font-size: 12px;
    padding: 3px 7px 2px;
	margin:0 1px;
    text-decoration: none;
}

.pager a:hover{
    background:#999;
    color: #fff;
}

.overPagerPattern{
	padding:0 2px ;	
}
/* Pager style */

.title{
  margin-left: 10px;
}
/*---news.phpここまで----*/


/*------ top-umekomi.php      -*
-------------------------------*/

ul#newsList_02{
	margin:0 0 10px;/*- 15px → 10px -*/
	padding-top: 20px;/*- 0 → 20 -*/
	font-family:"メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
ul#newsList_02 li{
	color:#666;
	font-size:13px;/*- 12px → 13px-*/
	margin:0;
	padding:20px 20px;/*- 5px 0;→ 15px 10px; -*/
	margin-bottom:3px;
	border-bottom:1px dotted #ccc;
	line-height:120%;
	list-style-type:none;
}

.catName_02{/*- お知らせアイコン部分 -*/
	display:inline-block;
	padding:8px 5px;/*- 3px 8px → 8px 5px-*/
    background-color: #ffffff;
	border:1px solid #ccc;
	border-radius:6px;
	font-size:11px;
	line-height:100%;
	margin:0 2px;
}
.thumbNailWrap_02{/*-コメント本文の部分-*/
	display:block;
	width:110px;
	float:left;
	height:80px;
	overflow:hidden;
}

/* ボタン */
/*-右 矢印スライドボタン
https://retval.jp/blog/css-button-animation/ -*/
.button {
  width: 150px;/* 300px-> 150px */
  position: absolute;
  top: 0;
  right: 0;
}

.button-link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: .3s;
}

.button-text {
  font-size: 14px;/* 18px-> 14px */
}
.arrow-extend {
  padding: 10px;/* 20px-> 10px */
  color: #333;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.arrow-extend::before {
  content: '';
  width: 30px;/* 60px-> 30px */
  height: 30px;/* 60px-> 30px */
  background-color: #cddc00;
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: .4s;
  z-index: -1;
}

.arrow-extend::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  position: absolute;
  left: 8px;/* 24px-> 8px */
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.arrow-extend:hover::before {
  width: 100%;
}

/*-左 矢印スライドボタン･････左矢印･････
https://retval.jp/blog/css-button-animation/ -*/
.button_02 {
  width: 150px;/* 300px-> 150px */
  position: absolute;
  top: 0;
  left: 0;
}

.button-link_02 {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: .3s;
}

.button-text_02 {
  font-size: 14px;/* 18px-> 14px */
}
.arrow-extend_02 {
  padding: 10px;/* 20px-> 10px */
  color: #333;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.arrow-extend_02::before {
  content: '';
  width: 30px;/* 60px-> 30px */
  height: 30px;/* 60px-> 30px */
  background-color: #cddc00;
  border-radius: 100px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: .4s;
  z-index: -1;
}

.arrow-extend_02::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  position: absolute;
  right: 8px;/* 24px-> 8px */
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}

.arrow-extend_02:hover::before {
  width: 100%;
}
/*-矢印ボタン左向き（戻る）おわり-*/

.test01 {
  text-align: right;
}
/*-----top-umekomo.phpここまで------*/


/*-       news-detail.php        -*
----------------------------------*/
body{
	font-family:"メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:14px;
}
h2{
	font-size:16px;
	color:#369;
	margin:10px 0px 10px 0;
	font-weight:normal;
	border:1px solid #3D79B6;
	border-bottom:3px solid #3D79B6;
	padding:5px 10px;
	text-shadow:1px 1px 0px #fff;
	
	background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(243,243,243,1) 50%, rgba(237,237,237,1) 51%, rgba(255,255,255,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(50%,rgba(243,243,243,1)), color-stop(51%,rgba(237,237,237,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 51%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 51%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 51%,rgba(255,255,255,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 51%,rgba(255,255,255,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}
#up_ymd{
	text-align:left;;
	font-size:14px;/*-13px → 14px-*/
	margin:5px 10px;
}
.detailUpfile{
	margin:5px 0 35px;
	text-align:center;
}
.backORcloseBtn{
	text-align:center;
	line-height:100%;
	margin-top:15px;
}
.backORcloseBtn a{
	display:inline-block;
	padding:4px 15px;
	border:1px solid #aaa;
	color:#999;
	border-radius:6px;
	text-decoration:none;
	font-size:15px;/*-12px → 15px-*/
}
.detailUpfile img{
	max-width:100%;
	height:auto;
}
.pNav{
	font-size:14px;/*- 11px → 14px-*/
}


/*----spanを使う改行方法----------------
https://gorigoricode.com/span-newline/
------------------------------------*/
span {
  display: inline-block;
}