@CHARSET "UTF-8";

/* =====================================
	サイト全体
======================================= */
html {
	height:auto;
	font-size: 87.5%;
}
body {
	height:100%;
	font-family: Helvetica,"Hiragino Kaku Gothic ProN",Meiryo,Verdana,YuGothic,"游ゴシック",sans-serif;
	line-height:1.6em;
	/*user-select:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	-khtml-user-select:none;*/
	color: #545142;
}

/* 明朝フォント */
.minF {
	font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

/* Roboto M */
.Roboto500 {
  font-family: 'Roboto', sans-serif;
}

/*
	広告、アナリティクスエリア
------------------------------------------ */
#adArea {
	display:block;
	position:fixed;
	left:0;
	bottom:0;
}



/*
	リンク
------------------------------------------ */
a{
	color: #cf6767;
}
a:hover,
a:active{
	color:#ff8686;
	text-decoration:none;
}

/* 画像リンク */
a img {
	transition: all ease 200ms;
}
a:hover img,
a:active img {
	opacity:0.85;
	-moz-opacity:0.85;
	filter:alpha(opacity=85);
	-ms-filter: "alpha(opacity=85)";
}



/*
	文字スタイル
------------------------------------------ */
p {
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;
}

/* 赤文字 */
.red {
	color: #8C0000;
}



/*
	マージン
------------------------------------------ */
.mb10 {
	display:block;
	margin-bottom:10px!important;
}
.mb20 {
	display:block;
	margin-bottom:20px!important;
}
.mb40 {
	display:block;
	margin-bottom:40px!important;
}
.mb60 {
	display:block;
	margin-bottom:60px!important;
}

.mbHr {
	display:block;
	margin-bottom:0.5rem!important;
}
.mb1r{
    display: block;
    margin-bottom: 1rem!important;
}
.mb2r{
    display: block;
    margin-bottom: 2rem!important;
}



/*
	リスト
------------------------------------------ */

/* ベーシック */
ul.normal {
	padding:1em 2em;
}
ul.normal li {
  list-style-type:disc;
	margin-bottom:0.5em;
	font-size:0.9em;
  line-height:1.5em;
}
ul.normal li:last-child {
	margin-bottom:0;
}


/*
	画像の中央揃え
------------------------------------------ */
#mainCon figure {
	text-align:center;
}
#mainCon figure > img {
	display:inline-block;
}



/*
	画像のレスポンシブ
------------------------------------------ */
img.respoImg {
	width: 100%;
	max-width:100%;
	height:auto;
}



/*
	ローディング
------------------------------------------ */
#loadingAnimation{
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  text-align: center;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
}
#loadingAnimation div{
  width: 200px;
  margin-left: -100px;
  margin-top: -100px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
}

/* アニメーション */
#loadingAnimation #loader-bar {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 6px solid #ccc;
  border-right-color: transparent;
  -webkit-animation: loader 1s infinite linear;
  -moz-animation: loader 1s infinite linear;
  -ms-animation: loader 1s infinite linear;
  animation: loader 1s infinite linear
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    opacity: 1
  }
  
  50% {
    -webkit-transform: rotate(180deg);
    opacity: 1
  }
  
  100% {
    -webkit-transform: rotate(360deg);
    opacity: 1
  }
}

@-moz-keyframes loader {
  0% {
    -moz-transform: rotate(0deg);
    opacity: 1
  }
  
  50% {
    -moz-transform: rotate(180deg);
    opacity: 1
  }
  
  100% {
    -moz-transform: rotate(360deg);
    opacity: 1
  }
}

@-ms-keyframes loader {
  0% {
    -ms-transform: rotate(0deg);
    opacity: 1
  }
  
  50% {
    -ms-transform: rotate(180deg);
    opacity: 1
  }
  
  100% {
    -ms-transform: rotate(360deg);
    opacity: 1
  }
}

@-ms-keyframes loader {
  0% {
    transform: rotate(0deg);
    opacity: 1
  }

  50% {
    transform: rotate(180deg);
    opacity: 1
  }
  
  100% {
    transform: rotate(360deg);
    opacity: 1
  }
}
