@charset "euc-jp";

/* ==================================================
スタイルリセット
================================================== */

* {
	margin: 0;
	padding: 0;
	line-height: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}
ul, ol, li {
	list-style: none;
}
a, a:hover {
	color: #333;
	text-decoration: none;
}
img, a img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}


#side-contents * {
	box-sizing: border-box;
}


/*==================================================
基本設定
================================================== */

body {
    color: #333;
    font-family: 'BIZ UDPGothic', sans-serif;
    font-weight: 100;
    font-size: 18px;
    letter-spacing: 2px;
    background-color: #fff;
    width: 100%;
    min-width: 280px;
}

#side-contents{
	position: relative;
	width: 280px;
}


/* ==================================================
共通
================================================== */
#side-contents h1 {
    position: relative;
    text-align: center;
    font-size: 25px;
	margin: 5% 0 8% 0;
    font-weight: bold;
}

#side-contents h1 span {
    position: absolute;
    font-size: 15px;
    top: 135%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #bfbfbf;
    font-weight: normal;
}


/* ==================================================
カテゴリ
================================================== */

#side-contents .cate{
	width: 90%;
	margin: 0 auto;
}


#side-contents .cate li a{
	display: flex;
	justify-content: flex-start;
    align-items: center;
	border-bottom: #333 1px dashed;
	margin-bottom: 5%;
	padding: 4% 0;
	font-weight: bold;
	color: #333;
	letter-spacing: 2px;
	transition: 0.2s;
}


#side-contents .cate li img{
	width: 25%;
	margin:0 4% 0 15%;
}

#side-contents .cate li a:hover{
	opacity: 0.5;
}


#side-contents .link_img_btn a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #366583;
    color: #fff;
    text-decoration: none;
    width: 90%;
    height: 70px;
    border-radius: 5px;
    margin: 0 auto 3% auto;
	transition: 0.2s;
}

#side-contents .link_img_btn a img{
	width: 45px;
	margin:0 10%;
}


#side-contents .link_img_btn a:hover{
	opacity: 0.7;
}


#side-contents .cate li a:hover img{
	transition: 0.2s;
	animation: yurayura 2.5s linear infinite;
}

@keyframes yurayura {
	0%,100%{
		transform: translateY(0);
	}
	25%{
		transform: translateY(-5px);
	}
	50%{
		transform: translateY(0);
	}
	75%{
		transform: translateY(5px);
	}

}


