@charset "UTF-8";

.forSP{
    display: none;
}
@media screen and (max-width:768px) {
    .forSP{
        display: block;
    }
}
.forPC{
    display: block;
}
@media screen and (max-width:768px) {
    .forPC{
        display: none;
    }
}

.textlink a {
	position: relative;
	color: #000000;
	/*font-weight: bold;*/
	text-decoration: none;
	transition: 0.3s;
}
.textlink a::before {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #000000;
	transition: 0.3s;
}
.textlink a:hover {
	color: #3381e0;
	transition: 0.3s;
}
/*.textlink a::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #3381e0;
	transition: width 0.5s;
}*/
.textlink a:hover::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #3381e0;
	transition: 0.3s;
}
.marker_y {
  background: linear-gradient(transparent 50%, #fffdab 50%);
  padding: 0 2px;
}