@charset "UTF-8";
*{
   margin: 0px;
   padding: 0px;
}
body {
	margin:0px;
	font-size: 0;
	font-family: 'M PLUS Rounded 1c', sans-serif;
}
img{
	vertical-align:top;
}

/* ========== リンク設定 ========== */
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;
}
.wrap{
	display:flex;
    flex-wrap: wrap;
}


/* インフォメーションウインドウ */
div#window{
	border:1px #FF0000 solid;
	background-color:#FFCCCC;
	padding:5px;
	font-size:small;
	color:#FF0000;
	margin:5px;
}
/* 画像に枠線 */
.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);
}

.linkbox-color {
    position: relative;
}
.linkbox-color a {
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
}
.linkbox-color:hover{
	background-color: #fcf1f7;
}


/* マウスが乗ったらポップアップメッセージを表示 */
.sub-message {
    position: relative;
}
.sub-message span.remark {
    display: none;
}
.sub-message:hover span.remark {
    background: none repeat scroll 0 0 #EEFFEE;
    border: 1px solid #CCCCCC;
    color: #000000;
    display: block;
    line-height: 1.2em;
    margin: 0.5em;
    padding: 0.5em;
    position: absolute;
    top: 40px;
    width: 16em;
	font-size:small;
	z-index:1;
}

/* マウスが乗ったら色が変わる */
.tr_hover:hover{
	background-color: #fcf1f7;
}

/* flex 縦並び */
.flex-column{
	display:flex;
	flex-flow: column;
}

/* ===== PC・SP 共通項目 ===== */
div#link-icon{
	border:1px #9c3367 solid;
	background-color:#fcf9fb;
	display:inline-block;
	padding:0 5px;
	font-size:small;
	color:#660000;
	border-radius:5px;
	text-align:center;
}
div#link-icon-small{
	border:1px #9c3367 solid;
	background-color:#fcf9fb;
	display:inline-block;
	padding:2px 10px;
	font-size:x-small;
	color:#660000;
	border-radius:5px;
}
div#menu-icon{
	border:1px #9c3367 solid;
	background-color:#fcf9fb;
	font-size:small;
	color:#660000;
	border-radius:5px;
	text-align:center;
	margin-bottom:3px;
}
div#line01{
	border-bottom:1px #0c318f solid;
	height:1px;
}
