@charset "UTF-8";
*{
   margin: 0px;
   padding: 0px;
}
body {
	margin:0px;
	font-size: 0;
	font-family: "Shin Maru Go Regular";
    color: #660000;
}

/* ========== リンク設定 ========== */
a:hover.link-image img{
 opacity:0.7;
 filter: alpha(opacity=70);
 }

a{
	color:#660000;
}
a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a:active {
    text-decoration: none;
}

input[type="image"]:hover {
 opacity:0.7;
 filter: alpha(opacity=70);
}


/* div内　左右両端配置 */
.space_between{
	display:flex;
	justify-content:space-between;
}
.return{
	display:flex;
    flex-wrap: wrap;
	justify-content:space-between;
}


/* インフォメーションウインドウ */
div#window{
	border:1px #FF0000 solid;
	background-color:#FFCCCC;
	padding:5px;
	font-size:small;
	color:#FF0000;
	margin:5px 0;
}
/* 画像に枠線 */
.image-border{
	border:1px #660066 solid;	
}

/* テキストオーバーフロー */
.overflow{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* divリンク */
.linkbox {
    position: relative;
}
.linkbox a {
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
}
.linkbox:hover{
	opacity:0.7;
	filter: alpha(opacity=70);
}



