@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700,900&display=swap&subset=japanese');

/* ---------------------------------------------
 CSS Info
 File name:  base.css
 Style Info: 基本スタイル
------------------------------------------------ */

/* リセット
------------------------------------------------ */
* {
	margin:0;   
	padding:0;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	font:inherit;
	vertical-align:baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block;}
html {
	-ms-text-size-adjust:100%;
  -webkit-text-size-adjust:100%;
	font-size:62.5%;
}
ol, ul {list-style:none;}
button, input, select, textarea {
	margin:0;
	padding:0;
	font-family:inherit;
	font-size:100%;
}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after, q:before, q:after {
	content:'';
	content:none;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
img {
  max-width:100%;
  height:auto;
	outline:none;
}
img[src$=".svg"] {
	width: 100%;
	height: auto;
}
a {outline:none;}


/* 基本
------------------------------------------------ */
body {
	position: relative;
	text-align:left;
	font-size:16px;
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	font-weight: 400;
	color:#181c2f;
	line-height:1.7;
}
a:link,
a:visited {
	text-decoration:none;
	color: #0046D1;
}
a:hover,
a:active {color: #00B4D1;}
a, a img {
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	transition:all 0.3s;
}
a:hover img {
	filter:alpha(opacity=75);
	-moz-opacity:0.75;
	opacity:0.75;
}


/* CLEARFIX
------------------------------------------------ */
.clearfix:before,
.clearfix:after {
  content:"";
  display:table;
}
 
.clearfix:after {clear:both;}
.clearfix {*zoom:1;}