@charset "UTF-8";

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
ol, ul, li,  dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	/* background: transparent; */
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
	display:block;
}
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

a {
	text-decoration: none;
}

img {
	border: none;
	max-width: 100%;
	vertical-align: bottom;
}

body {
	text-align: left;
	font-family: 'Noto Sans Japanese', "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Helvetica, Osaka,
	 "ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
	letter-spacing: -0.01em;
	line-height: 1;
}
ol, ul {
	list-style: none;
}

*, *:before, *:after {
	box-sizing: border-box;
}

/* テキストの自動拡大を無効化 */
body {
	-webkit-text-size-adjust: none;
	text-size-adjust: none; 
}


/* -------------------------------------------------------------------
	☆000 まめわざさん
----------------------------------------------------------------------- */
html {
	height: 100%;
}
body {
	height: 100%;
	margin: 0;
}

@media all and (-ms-high-contrast:none) {
    /*IE11用*/
*::-ms-backdrop,html{
	height: 100% !important;
	overflow: auto !important;
}
*::-ms-backdrop,body{
	height: 100% !important;
	overflow: auto !important;
}

    /*IE10用*/
html{
	height: 100% !important;
	overflow: auto !important;
}
body{
	height: 100% !important;
	overflow: auto !important;
}
}  /* 注意 */

/* -------------------------------------------------------------------
	☆03 画像 ( .common ) 
--------------------------------------------------------------------- */
.common  {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: bottom;
}

/* -------------------------------------------------------------------
	☆04 画像をヌルっと大きくする ( .pic )
--------------------------------------------------------------------- */
.pic {
	overflow: hidden; /*拡大時にはみ出た部分を隠す*/
	width: 100%; /* 801px; 画像の幅*/
	height: auto; /* 1150px; 画像の高さ*/
}
.pic img {
	display: block;
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.pic img:hover {
	transform: scale(1.1);	/*画像の拡大率*/
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}

.pic02 {
	overflow: hidden; /*拡大時にはみ出た部分を隠す*/
	width: 100%; /* 801px; 画像の幅*/
	height: auto; /* 1150px; 画像の高さ*/
}
.pic02 img {
	display: block;
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.pic02 img:hover {
	transform: scale(1.1);	/*画像の拡大率*/
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}

