@charset "utf-8";
/* reset
-------------------- */
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-style: normal;
  font-weight: normal;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

a:focus {
  outline: none;
}




/* universal
-------------------- */
html {
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  width: 100%;
  font-size: 15px;
  color: #333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",  "ＭＳ Ｐゴシック", Verdana, Arial, sans-serif;
  line-height: 1.6;
}

body > div#Wrapper {
}

/* hypertext
-------------------- */
a {
  color: #52BBAC;
}
a:visited {
  color: #52BBAC;
}
a:hover {
  color: #2E976D;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
a:active {
  color: #2E976D;
}

/* text
-------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

p {
}
p b {
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, sans-serif;
  font-weight: bold;
}
strong {
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, sans-serif;
  font-weight: bold;
}

/* list tag
-------------------- */
ul, ol, dt, dd {
  list-style: none;
}

/* table tag
-------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  box-sizing: border-box;
}
table tr th {
  text-align: left;
}

/* image
-------------------- */
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

.contents a[href]:hover img:not([class="Over"]),
#HeaderInfo a:hover img:not([class="Over"]),
#FooterBtn a:hover img:not([class="Over"]) {
  filter: alpha(opacity=70);
  opacity: 0.7;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 768px){
    
    .contents a:hover img {
      filter: alpha(opacity=100);
      opacity: 1 !important;
    }
    
}




/* layout
-------------------- */
.forPC {
  display: block;
}

.forSP {
  display: none;
}

@media screen and (max-width: 768px){

	.forPC {
	  display: none;
	}
	
	.forSP {
	  display: block;
	}
	
}