@charset "utf-8";
@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"] {
	
	height: auto;
}
a {outline:none;}


/* 基本
------------------------------------------------ */
body {
	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:#403c3a;
	line-height:1.8;
	background-image: url("../images/common/cmbg.png") !important;
	background-position: center center !important;
	background-repeat: repeat !important;
	background-attachment: fixed !important;
	background-size: cover !important;
}
a:link,
a:visited {
	text-decoration:none;
	color: #403c3a;
}
a:hover,
a:active {color: #f09b6d;}
a, a img {
	transition:all 0.3s;
}
a:hover img {
	opacity:0.75;
}

table {
	border-collapse: collapse;
	border: 1px solid #5c3d2a;
	table-layout: fixed;
}
table th,
table td {
	padding: 1em;
	border: 1px solid #5c3d2a;
	vertical-align: middle;
}
table th {
	background: #92cfd3;
	font-weight: bold;
	color: #FFF;
}


/* CLEARFIX
------------------------------------------------ */
.clearfix:before,
.clearfix:after {
  content:"";
  display:table;
}
 
.clearfix:after {clear:both;}
.clearfix {*zoom:1;}