@charset "utf-8";
/*=======================================================
リセット
=======================================================*/
*{
	margin: 0;
	padding: 0;
}
*, *:before, *:after {
	box-sizing: border-box;
	font-style: normal;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
	line-break: strict;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
*,*:focus,a:focus{
	outline:none;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
p,table,blockquote,address,pre,iframe,form,figure,dl {
	margin: 0;
}
h1,h2,h3,h4,h5,h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
ul,ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
address {
  font-style: inherit;
}
abbr[title] {
  text-decoration: underline dotted;
}
b,strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
svg,img,iframe {
  vertical-align: bottom;
}
button,input,select,textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}
[type="radio"] {
  -webkit-appearance: radio;
  appearance: radio;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}
button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}
:-moz-focusring {
  outline: auto;
}
select:disabled {
  opacity: inherit;
}
textarea {
  overflow: auto;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
label[for] {
  cursor: pointer;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[contenteditable]:focus {
  outline: auto;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
td,th {
  vertical-align: top;
  padding: 0;
}
th {
  text-align: left;
}
article,aside,figcaption,figure,picture,
footer,main,header,nav,section {
	display: block;
}
ul,ol {
	list-style: none;
}
p,li,dt,dd,th,td {
	line-break:strict;
}
img {
	max-width: 100%;
    height: auto;
}
picture {
    line-height: 0;
}
picture img {
    vertical-align: top;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
/* PC SP */
.pc {
	display: block!important;
}
.sp {
	display: none!important;
}
@media screen and (max-width : 750px){
    .sp {
        display: block!important;
    }
    .pc {
        display: none!important;
    }
}