@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,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

body {
	counter-reset: titleNum;
	position: relative;
}

html {
  -webkit-text-size-adjust: none;
}

img {
  vertical-align: bottom;
}

strong {
  font-weight: bold;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

a {
  color: inherit;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  
}

input[type="submit"] {
  background-color: inherit;
  color: inherit;
}

/*----------------------------------------------------
mixin/function
----------------------------------------------------*/
/*----------------------------------------------------
  pc,sp on/off
----------------------------------------------------*/
.pc {
  display: block;
}

@media only screen and (max-width: 769px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media only screen and (max-width: 769px) {
  .sp {
    display: block;
  }
}

/*----------------------------------------------------
all
----------------------------------------------------*/
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}


@media only screen and (max-width: 769px) {
  a:hover {
    opacity: 1;
  }
}