@charset "utf-8";


/*===============================================
●画面の横幅が769px以上
===============================================*/
@media screen and (min-width : 769px ){
#pc------------------------------------------- {
}
h2.ttl span {
	font-size: 56px;
	margin-bottom: 10px;
}
article {
	max-width: 1024px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
}
article ul li a {
    color: #393939;
    text-decoration: none;
    border-bottom: 1px solid #393939;
    display: block;
    padding: 25px 0;
    position: relative;
	display: flex;
}

/* 疑似要素で画像を仕込む */
article ul li a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 50px; /* 画像に合わせて調整 */
    height: 50px;
    background-image: url("../images/pc/top/news_arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease; /* ←ふんわり表示 */
}

/* hover時にゆっくり表示 */
article ul li a:hover::after {
    opacity: 1;
}
article ul li a time {
	margin-right: 40px;
}





.wp-pagenavi {
    padding-top: 60px;
	text-align: center;
}
.wp-pagenavi .pages {
    display: none;
}
.wp-pagenavi a:hover {
    opacity: 0.6;
}
.wp-pagenavi .previouspostslink {
    background-image: url("../images/pc/news/prev.png");
    width: 50px;
    height: 50px;
    background-size: cover;
    display: inline-block;
    text-indent: -9999px;
    position: relative;
    top: 0px;
	margin-right: 10px;
}
.wp-pagenavi .nextpostslink {
    background-image: url("../images/pc/news/next.png");
    width: 50px;
    height: 50px;
    background-size: cover;
    display: inline-block;
    text-indent: -9999px;
    position: relative;
    top: 0px;
	margin-left: 10px;
}
.wp-pagenavi .page {
    font-weight: 500;
    text-decoration: none;
    width: 50px;
	height: 50px;
	line-height: 50px;
    display: inline-block;
	border-radius: 100px;
	background-color: #D9E9F4;
	font-size: 14px;
	font-family: 'Jost', sans-serif;
	color: #0064B8;
	margin-left: 10px;
	margin-right: 10px;
}
.wp-pagenavi .current {
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: relative;
    top: -20px;
    display: inline-block;
    background-color: #0064B8;
	border-radius: 100px;
	margin-left: 10px;
	margin-right: 10px;
}
.wp-pagenavi .last {
	display: none;
}
.wp-pagenavi .first {
	display: none;
}
.wp-pagenavi .extend {
	display: none;
}




main .box {
	margin-top: 100px;
	width: 90%;
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}
main .box h2 {
	font-size: 22px;
	border-top: 1px solid #cecece;
	margin-top: 10px;
	padding-top: 30px;
	margin-bottom: 30px;
}
main .box .btn a {
	width: 200px;
	height: 50px;
	display: block;
	background-color: #0064B8;
	margin-left: auto;
	margin-right: auto;
	color: #fff;
	text-align: center;
	border-radius: 100px;
	background-image: url("../images/pc/news/back.png");
	background-repeat: no-repeat;
	background-position: left center;
	margin-top: 50px;
	font-family: 'Noto Sans JP', sans-serif;
}
main .box .btn a:hover {
	opacity: 0.7;
}
}



/*===============================================
●画面の横幅が768pxまで
===============================================*/
@media screen and (max-width:768px){
	
/*===============================================
●sp-tablet
===============================================*/
#sptablet------------------------------------------- {
}
h2.ttl span {
	font-size: 12vw;
	margin-bottom: 1vw;
}
article {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
article ul li a {
  color: #393939;
  text-decoration: none;
  border-bottom: 0.266vw solid #393939; /* 1px */
  display: block;
  padding: 5.33vw 0;
  position: relative;
  text-align: left;
}

/* 疑似要素維持済み */
article ul li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 13.33vw; /* 50px */
  height: 13.33vw;
  background-image: url("../images/pc/top/news_arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

article ul li a:hover::after {
  opacity: 1;
}

article ul li a span {
  width: 66.66vw; /* 250px */
  display: block;
  line-height: 1.6em;
}






.wp-pagenavi {
    padding-top: 5vw;
	text-align: center;
}
.wp-pagenavi .pages {
    display: none;
}
.wp-pagenavi a:hover {
    opacity: 0.6;
}
.wp-pagenavi .previouspostslink {
    background-image: url("../images/pc/news/prev.png");
    width: 8vw;
    height: 8vw;
    background-size: cover;
    display: inline-block;
    text-indent: -9999px;
    margin-right: 1vw;
    position: relative;
}
.wp-pagenavi .nextpostslink {
    background-image: url("../images/pc/news/next.png");
    width: 8vw;
    height: 8vw;
    background-size: cover;
    display: inline-block;
    text-indent: -9999px;
    margin-left: 1vw;
    position: relative;
}
.wp-pagenavi .page {
    font-size: 3.5vw;
    font-weight: 500;
    text-decoration: none;
    color: #0064B8;
    width: 8vw;
	height: 8vw;
	 line-height: 8vw;
	border-radius: 100px;
	background-color: #D9E9F4;
    display: inline-block;
	margin-left: 1vw;
	margin-right: 1vw;
}
.wp-pagenavi .current {
    font-size: 3.5vw;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    width: 8vw;
	height: 8vw;
    line-height: 8vw;
    position: relative;
    top: -2.5vw;
    display: inline-block;
    background-color: #0064B8;
	border-radius: 100px;
	margin-left: 1vw;
	margin-right: 1vw;
}
.wp-pagenavi .last {
	display: none;
}
.wp-pagenavi .first {
	display: none;
}
.wp-pagenavi .extend {
	display: none;
}





main .box {
	margin-top: 15vw;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}
main .box h2 {
	font-size: 5vw;
	border-top: 1px solid #cecece;
	margin-top: 2vw;
	padding-top: 5vw;
	margin-bottom: 5vw;
}
main .box .btn a {
	width: 50vw;
	height: 12vw;
	line-height: 12vw;
	display: block;
	background-color: #0064B8;
	margin-left: auto;
	margin-right: auto;
	color: #fff;
	text-align: center;
	border-radius: 100px;
	background-image: url("../images/pc/news/back.png");
	background-repeat: no-repeat;
	background-position: left center;
	margin-top: 10vw;
	font-family: 'Noto Sans JP', sans-serif;
}
main .box .btn a:hover {
	opacity: 0.7;
}
}



/*===============================================
●画面の横幅が400pxまで
===============================================*/
@media screen and (max-width:400px){
/*===============================================
●sp400
===============================================*/
#sp400------------------------------------------- {
}
}



/*===============================================
●画面の横幅が320pxまで
===============================================*/
@media screen and (max-width:320px){
/*===============================================
●sp320
===============================================*/
#sp320------------------------------------------- {
}
}



/*===============================================
●画面の横幅が481pxから768pxまで
===============================================*/
@media screen and (min-width:481px) and (max-width:768px) {
/*===============================================
●tablet
===============================================*/
#tab------------------------------------------- {
}
}