@charset "utf-8";
/*ページタイトル*/
#main_area{position:relative;height: 451px;margin-bottom: 20px;}
#main_area > div{
	position: absolute;
    left: 50%;
    width: calc(100vw - 70px);
    height: 451px;
    transform: translateX(-50%);
    border-radius: 30px;
}
#main_area div figure{
	border-radius: 30px;
	width: 100%;
	height: 100%;
	background-image: url("../images/news/main.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#main_area p{
	white-space: nowrap;
	position: absolute;
	bottom:15%;
	left:5%;
	font-size: 2.5rem;
	letter-spacing: 0.3vw;
	font-weight: 500;
	color:#FFF;
}
/*パンくず*/
#pankuzu > ul{
	font-size:16px;
	width: 95%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
#pankuzu li{
	color: #666666;
	letter-spacing: 1px;
	line-height: 120%;
}
#pankuzu li a{color: #04ade5;}
#pankuzu li:not(:last-child)::after{
	content: '>';
	width: 25px;
	height: 25px;
	padding: 0 20px;
}

/*各ページコンテンツ*/
.newslist,.entry {	max-width: 1000px;width: 100%;margin: 0 auto;}
.newslist li{
	padding:20px;
	border:1px solid #d1cbc3;
	border-radius: 15px;
	margin-bottom: 30px;
}
.newslist h3{
	color:#000;
	border-bottom:2px solid #04ade5;
	padding-bottom:10px;
	margin-bottom:5px;
}
time{display: block; font-size:16px;text-align: right;color:#4d4d4d;}
.newslist p{color:#4d4d4d;}
#pager{display:flex; justify-content: center;align-items: center;}
#pager li:not(.prev):not(.next){
	font-size: 18px;
	margin: 1% 1.2%;
	font-weight: 500;
}
#pager li a{
	color: #04ade5;
}
#pager li span,#pager li:not(.prev):not(.next) a:hover{
	border-bottom:2px solid #04ade5;
	color:#04ade5;
}
#pager .prev,#pager .next{margin: 1% 1.5%;}
#pager .next img{transform: rotate(180deg);}

a.btn{
	display: inline-block;
	width:200px;
	border-radius: 20px;
	text-align: center;
	color:#FFF !important;
	background-color: #04ade5;
	font-weight: 300;
	padding:5px 0;
}
a.btn:hover{
	opacity: 1.0!important;
	transform: scale(1.05);
}
/*記事詳細*/
.ti2 h2{text-align: center;max-width:30em;border-bottom:3px solid #04ade5; margin:auto; word-wrap: break-word; overflow-wrap: break-word; white-space: pre-wrap; word-break: break-all;}
.entry{border:1px solid #808080;padding:30px;border-radius: 30px;}
.entry p,.entry ol ,.entry ul {margin-bottom:1em;}
.entry h3{margin-bottom:1rem;font-size: 20px;background:#04ade5; color:#FFF; padding:8px 10px;border-radius: 10px;}

.entry h4{
    border: none;
    display: block;
    font-size: 18px;
    padding: 0.5rem;
    position: relative;
	margin-bottom: 1rem;
}
.entry h4:after {
    bottom: 0;
    background: repeating-linear-gradient(-45deg, transparent 0 2px, #9fd9f6 2px 4px);
    content: '';
    left: 0;
    height: 7px;
    position: absolute;
    width: 100%;
}

.entry ol li:not(:last-child),.entry ul li:not(:last-child){margin-bottom: 5px;}
.entry ul{background:#ceefff;padding:20px; border-radius: 10px;}
.entry ul li{padding-left:1em;text-indent: -1em;}
.entry ul li::before{content: "";display:inline-block; width:7px;height: 7px;background:#04ade5;border-radius: 50%;margin-right: 10px;}	

.entry ol {
	border:1px solid #04ade5;
	border-radius: 10px;
	padding:20px 20px 20px 15px;
	counter-reset: my-counter;
	list-style: none;
}
.entry ol li {
  line-height: 1.5;
  padding-left: 30px;
  position: relative;
}
.entry ol li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  border: 1px solid #04ade5;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  width: 22px;
  color: #04ade5;
  font-size: 85%;
  line-height: 1;
  position: absolute;
  top: 1.5px;
  left: 0;
}
.entry a{text-decoration:underline; color:#04ade5;}
.entry a:hover{text-decoration:none;}
/*----------------------------------------------------------*/
/* レスポンシブ
------------------------------------------------------------*/
/* 1250px以下から
------------------------------------------------------------*/
@media only screen and (max-width:1250px){
	#main_area > div{
		left: 50%;
		width: 100%;
		transform: translateX(-50%);
		padding:0 2vw;
	}
	#main_area div figure{
		background-position:top 0px left 80%;
	}
	#main_area p{
		font-size: 2.0rem;
	}
}
/* 1025px以下から
------------------------------------------------------------*/
@media only screen and (max-width:1025px){

}

/* 768px以下から
------------------------------------------------------------*/
@media only screen and (max-width:768px){
	#main_area,#main_area > div{height: 300px;}
	#main_area div figure{
		border-radius: 20px;
		background-image: url("../images/news/main_tab.webp");
	}
	#main_area p{
		bottom:25%;
		left:5%;
		letter-spacing: 0.3vw;
		text-shadow: 2px 2px 5px #333;
	}
	.entry h3,.entry h4{
		font-size:18px;
	}
	.entry h3::before{
		width:25px;
		height: 25px;

	}
}

/* 500px以下から
------------------------------------------------------------*/
@media only screen and (max-width:500px){
    body {min-width: inherit!important;width: 100%;}
	#main_area,#main_area > div{height: 300px;}
	#main_area p{
		bottom:15%;
		left:50%;
		transform: translateX(-50%);
		font-size: 1.25rem;
		font-weight: bold;
		letter-spacing:2px;
	}
	#main_area div figure{
		border-radius: 20px;
		background-image: url("../images/news/main_sp.webp");
	}
	.newslist{margin:0;width:100%;}
	.newslist li{
		padding:15px;
	}
	.entry{padding:10px;border-radius: 10px;}
	.entry h3::before{
		display: block;
		width:30px;
		height: 30px;

	}
	.entry ol,.entry ul {
		padding:10px;
	}
	/*パンくず*/
	#pankuzu > ul{
		font-size:.875em;
		justify-content: flex-start;
		margin-left:5px;
	}
	#pankuzu li.kiji{
	  width: 100%;
	  white-space: nowrap;
	  overflow: hidden;
	  text-overflow: ellipsis;
	}
}


