@charset "utf-8";
/* base css */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000;
  word-wrap: break-word;
  background-color: #fff;
}

body, html {
  overflow-x: hidden;
}

a {
  color: #00F;
  text-decoration: underline;
	transition: opacity 0.2s ease-out;
	display: block;/*chrome用opacity対策追加*/
}

a:hover  {
  -moz-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
	cursor: pointer;
}

img {
  font-size: 0;
  display: block;
}

p {
  font-size: 15px;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
}

section:after {
  content:"";
  display: block;
  height: 0;
  clear: both;
}

br.pc {
  display: none;
}

br.sp {
  display: inline;
}

.red { color: #d71718; }
.blue { color: #00a1de; }

.alignleft { float: left; }
.alignright { float: right; }
.aligncenter {
	margin: 0 auto;
	text-align: center;
}

.clear {
  clear: both;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/**********************************

基本構造
          
**********************************/










