@charset "UTF-8";
/* CSS Document */

#contents {
	background-image:url(../img/top_bk.jpg);
	background-repeat:no-repeat;
	height:425px;
	position:relative;
}

#contents h1 {
	position:absolute;
	top:150px;
	left:400px;
	border:none;
}

#contents #top_copy {
	position:absolute;
	top:80px;
	left:400px;
}

#contents table {
	position:absolute;
	top:250px;
	left:400px;
	width:390px;
}

#contents table td {
	text-align:center;
	width:50%;
}
#contents a.menu-title {
    font-size: 16px; /* 文字を小さく */
    font-weight: bold;
    color: blue; 
    display: inline-block;
    background: linear-gradient(to right, navy, steelblue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

#contents a.menu-title:hover {
    text-shadow: 1px 1px 2px blue, 0 0 3px steelblue; /* 少し発光 */
    transform: scale(1.05); /* ほんの少し拡大 */
}