@charset "UTF-8";
/* CSS Document */
/*===================================================
    土台作成用CSS
===================================================*/
/*//////////////////////////////////////////////////
    Base set
///////////////////////////////////////////////////*/
*,
*:before,
*:after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
    font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    word-break: break-all;
    text-align: left;
    color: #000;
}

/* レスポンシブ対応をしない場合 */
body.pcOnly {
	min-width: 1000px;
}

/* --------------------------------------------------------
    clearfix
-------------------------------------------------------- */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}


/* --------------------------------------------------
    hタグ
-------------------------------------------------- */
h1, h2, h3 {
	font-family: 'Noto Sans Japanese', "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

/* --------------------------------------------------
    レイアウト調整用
-------------------------------------------------- */
.mTop1em {
	margin-top: 1em;
}

/*//////////////////////////////////////////////////
    header
///////////////////////////////////////////////////*/
header {
	width: 100%;
	background-color: #FFF;
	padding-top: 10px;
	position: relative;
	z-index: 100;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
	header a:hover {
		text-decoration: none;
	}

	header .headWrap {
		position: relative;
		box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.15);
		z-index: 10;
	}
		header .headWrap h1 {
			font-weight: 500;
			font-size: 24px;
			letter-spacing: 2px;
			line-height: 1;
		}
			header .headWrap h1 img {
				width: 100%;
				max-width: 148px;
			}

header input[type="button"] {
	border: none;
}


/*//////////////////////////////////////////////////
    main
///////////////////////////////////////////////////*/
/* --------------------------------------------------
    コンテンツを全て包む
-------------------------------------------------- */
.wrap {
	overflow: hidden;
}

/* --------------------------------------------------
    inner(幅1000pxのコンテンツbox)
-------------------------------------------------- */
.inner {
	max-width: 1000px;
	margin: auto;
	position: relative;
}



/* --------------------------------------------------
    オーバレイ
-------------------------------------------------- */
#overlay {
	display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
	-webkit-opacity: 0;
	opacity: 0;
}




/*//////////////////////////////////////////////////
    footer
///////////////////////////////////////////////////*/
footer {
	background-color: #F5F5F5;
	font-size: 13px;
	color: #000;
}

		/* その他リンク＆コピーライト */
		footer .linkWrap + .inner {
			padding: 15px 0;
		}
			footer .linkWrap + .inner ul {
				overflow: hidden;
			}
				footer .linkWrap + .inner li {
					float: left;
					margin-left: 40px;
				}
				footer .linkWrap + .inner li:first-child {
					margin-left: 0;
				}

				@media (min-width: 863px) and (max-width: 903px) {
					footer .linkWrap + .inner li {
						margin-left: 30px;
					}
				}
				@media (max-width: 862px) {
					footer .linkWrap + .inner li {
						margin-left: 15px;
					}
				}

			/* コピーライト */
			footer p.cp small {
				font-size: 10px;
				letter-spacing: 0.8px;
				font-family: 'Roboto', "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
			}


