@charset "utf-8";
/*****************************************************
ベース
*****************************************************/
body {
  margin: 0;
  padding: 0;
  background-color: #fff;
}
h1 {
  font-weight: bold;
  margin: 0;
  color: #333333;
}
h2 {
  font-weight: 600;
}
h3 {
  font-weight: 600;
}
h4 {
  font-weight: 600;
}
h1 {
  margin: 0;
  padding: 0;
}

ol,
ul {
  margin: 0;
  padding: 0;
}
dl {
  margin: 0;
  padding: 0;
}
ol li { 
  list-style: none;
}
ul li {
  list-style: none;
  font-weight: 600;
}
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  font-weight: 600;
}
a {
  margin: 0;
  color: #333333;
  text-decoration: none;
  font-weight: 600;
}
p {
  margin: 0;
  color: #333333;
  line-height: 150%;
  font-weight: 600;
}
a:hover {
  text-decoration: none;
}
a {
  outline: none;
}
button {
  outline: none;
}

th {
  font-weight: bold;
  text-align: center;
}
td {
  font-weight: 600;
}
table {
  border-collapse: collapse;
}

/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
/* for IE6 */
* html .clearfix { 
  display: inline-block;
}
/* for IE7 */
*+html .clearfix {
  display: inline-block;
}

img {
  border-style: none;
  height: auto;
  max-width: 100%;
}
br{
  letter-spacing: 0;
}
.clear {
  clear: both;
  height: 0;
  line-height: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  display: inline-table;
}
/* Hides from IE-mac \*/  
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}
/* End hide from IE-mac */ 

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,
dl,
dt,
dd,
ol,
ul,
li,
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;
  font-size: 100%;
  text-align: left;
  line-height: inherit;
  vertical-align: baseline;
  box-sizing:border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  box-sizing:border-box;
}

.mt10 {
  margin-top: 10px;
}

/*******************hover動作バグ修正*******************************/
.m_over:hover {
  filter: alpha( opacity=75 );
  opacity:0.75;
  -moz-opacity:0.75;
}

.button:hover {
  box-shadow: 0 0 45px rgba(255,255,255,.6);
}
.nn{
  overflow: visible;
}
 
/* 新旧Firefox */
.m_over:hover, x:-moz-any-link { 
  background: #fff;
}
.m_over:hover, x:-moz-any-link, x:default { 
  background: #fff;
}

body{
  font-family: "Hiragino Sans", Meiryo, "Helvetica Neue", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
}
.mi {
  font-family:YuMincho, '游明朝',"小塚明朝 Pr6N R","小塚明朝 Pro R", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.center {
  text-align: center;
}
.block {
  display: block;
}

/*スクロール処理*/
.scroll-fade {
  opacity: 0;
  transition: all 1s/*処理にかかる時間*/;
}
.scroll-up {
  opacity: 0;
  transform: translateY(100px)/*スクロールアップする距離*/;
  transition: all 1s/*処理にかかる時間*/;
}
.scroll-up.done, .scroll-fade.done {
  opacity : 1;
  transform : translate(0, 0);
}
.load-fade { 
  opacity : 0;
  transition : all 1s/*処理にかかる時間*/;
}
.load-up {
  opacity: 0;
  transform: translateY(100px)/*スクロールアップする距離*/;
  transition: all 1s/*処理にかかる時間*/;
}
.load-up.done, .load-fade.done {
  opacity : 1;
  transform : translate(0, 0);
}
@media screen and (max-width: 767px) {
  .m_over:hover {
    opacity:1;
  }
}
@media print {
	body{font-size:80%;}
}