@charset "utf-8";


/*====================================================================

common

====================================================================*/

*{
	margin:0px;
	padding:0px;
	box-sizing: border-box;
}
html,body{
	width:100%;
	height: 100%;
}
blockquote{
	padding: 1rem;
	width: calc( 100% - 2rem);
}
li{
	list-style: inherit;
}
a{
	color: var(--c-text);
	transition: 0.3s;
	opacity: 1;
}
a:hover{
	color: var(--c-sub);
}
table{
	width: 100%;
}



/*====================================================================

font

====================================================================*/
body{
	font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	-webkit-text-size-adjust: 100%;
	line-height: 1.7;
	color: var(--c-text);
	font-weight: 200;
}
@media all and (min-width:0px) and (max-width: 768px){
	html{
		font-size: 3.7vw;
	}
}
@media all and (min-width: 769px) and (max-width:1024px){
	html{
		font-size: 1.8vw;
	}
}
@media all and (min-width: 1025px){
	html{
		font-size: 17px;
	}
}
@media all and (min-width:0px) and (max-width: 768px){
}
@media all and (min-width: 769px) and (max-width:1024px){
}
@media all and (min-width: 1025px){
}


/*====================================================================

main color

====================================================================*/

:root {
	--c-text : #333;
	--c-main : #1e4981;
	--c-sub : #7da1cf;
	--c-white: #fff;
	--c-grayL : #eee;
	--c-gray : #aaa;
	--c-grayD : #555;

	--c-red : #bb2a2a;
	--c-redL : #f0dcdc;

}



/*====================================================================

shadow

====================================================================*/

:root{
	--sd-card : 2px 2px 3px rgba(0,0,0,0.05);
	--sd-card-hv : 6px 6px 6px rgba(0,0,0,0.1);
	--sd-btn : 2px 2px 3px rgba(0,0,0,0.2);
	--sd-btn-hv : 3px 3px 4px rgba(0,0,0,0.5);
}


/*====================================================================

#iconfont

====================================================================*/
.icon-twitter-squared{color: #55aacc;}
.icon-facebook-squared{color: #3B5998;}
.icon-instagram{color: #D93177;}
.icon-youtube-play,
.icon-youtube{color: #cd201f;}
