@charset "utf-8";

/*--------------------*/
/*---- common.css ----*/
/*--------------------*/

/*-------------- reset  -------------*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
}
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
b, strong {
	font-weight: bold;
}

/*-------------- clearfix  -------------*/
.clearfix:before,
.clearfix:after {
	display: table;
	content: " ";
}
.clearfix:after {
	clear: both;
}

/*-------------- body  -------------*/
body {
	background-color: #ffffff;
	background-repeat: repeat;
	font-family: "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
	color: #222;
	position: relative;
}

/*-------------- a  -------------*/
a {
	text-decoration: none;
	color: #000000;
}

/*-------------- font -------------*/
.webFont {
	font-family: 'Shippori Mincho', serif;
}

/*-------------- icon -------------*/

/*-------------- others -------------*/
/* ページ遷移アニメーション↓ */
body.fixed {
	width: 100%;
	height: 100%;
	position: fixed;
}
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	/* 背景カラー */
	z-index: 99999;
	/* 一番手前に */
	pointer-events: none;
	/* 他の要素にアクセス可能にするためにポインターイベントは無効に */
	opacity: 0;
	/* 初期値では非表示 */
	-webkit-transition: opacity .8s ease;
	/* アニメーション時間は 0.8秒 */
	-ms-transition: opacity .8s ease;
	-moz-transition: opacity .8s ease;
	transition: opacity .8s ease;
}
/*body要素に.fadeoutセレクタがある場合には、レイヤーが表示されるようにopacityを１に設定します。*/
body.fadeout::after {
	opacity: 1;
}

/*-------------- フォームのフォント設定  -------------*/
.formControl {
	font-family: "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
}
textarea {
	font-family: "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
}