.news{ 
	display: flex;
	height: 72px;
	background: #1f3149;
	align-items: center;
	justify-content: center;
}
.news:hover{
	background: #307371;
}
.newsLink{
	width: 100%;
	font-size: clamp(1.25rem, 0.61vw + 1.1rem,  1.58rem);
	text-align: center;
	a, a:link, a:visited, a:focus{
		color: #00d5e0 !important;
	}
}
.stretched-link::after{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  z-index:1;
  pointer-events:auto;
  content:"";
  background-color:rgba(0,0,0,0)
}
.newsContents{
	margin: 2rem 0 3rem;
	h2{
		text-align: center;
	}
	.catchText{
		font-size: 14px;
		margin: 3rem 0;
		padding-left: 2rem;
		border-left: 16px solid #ccc;
	}
	.regular{
		text-align: right;
		font-size: 12px;
	}
}

h2.heading {
	margin-top: 56px;
	font-size: 2rem;
	text-align: left;
	line-height: 1.5;
}

h2.heading span {
	display: flex;
	align-items: center;
	color: #498ee0;
	font-size: 1.5rem;
	text-transform: uppercase;
}

h2.heading span::before {
	content: '';
	display: inline-block;
	margin-right: 20px;
	width: 40px;
	height: 1px;
	background-color: #498ee0;
}
.expText{
	margin: 2rem 0;
	text-align: justify;
}
.dateAccess{
	list-style: none;
	margin: 2rem 0;
	padding-left: 16px;
	li{
		padding-bottom: 12px;
	}
}
.eyeBlock{
	display: inline-block;
	font-size: 14px;
	margin-bottom: 2rem;
	padding: 1rem 2rem;
	border-radius: 8px;
	background: #eaf0f5;
	p{
		margin: 1rem 0 0 0;
	}
	.bold{
		font-weight: bold;
	}
	.remark{
		color: rgb(255, 80, 16);
	}
}
.appointment{
	display: inline-block;
	margin-bottom: 2rem;
	text-align: center;
	.btn--orange,
	a.btn--orange {
		font-size: 1.6rem;
		color: #013;
		background-color: #00d5e0;
	}
	.btn--orange:hover,
	a.btn--orange:hover {
		color: #fff;
		background: #498ee0;
	}
	a.btn--radius {
		border-radius: 100vh;
	}
}

.sp-only {
  display: none;
}
.pc-only {
  display: inline;
}

@media screen and (max-width: 768px) {
  .sp-only {
	display: inline;
  }
  .pc-only {
	  display: none;
	}
}