@charset "utf-8";
/*共通CSS*/

* {
  box-sizing: border-box;
  letter-spacing: .5px;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}
html {
  overflow-y: scroll;
}
body {
  max-width: 1920px;
  min-width: 320px;
  margin: auto;
  word-break: break-word;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: normal;
}
section {
  position: relative;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}
ol, ul {
  list-style: none;
}
fieldset, img {
  border: 0;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
button {
  border: none;
  -webkit-appearance: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th {
  text-align: left;
}
span,a {
  display: inline-block;
}
p span,p a {
  display: inline;
}
a {
  position: relative;
  text-decoration: none;
  color: inherit;
}
a:focus {
  outline: none;
}
a,button,input[type="submit"] {
  transition: all .5s;
}
a:hover,button:hover,input[type="submit"]:hover {
  cursor: pointer;
}
a:not([class]):hover,
button:not([class]):hover {
  opacity: .6;
}
figcaption {
  margin-top: 10px;
}
address, caption, cite, code, dfn, em, th {
  font-style: normal;
  font-weight: normal;
}

input, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
}
.on1366, .on1280, .on1024, .on768, .on480, .on375 {
  display: none;
}
@media (min-width:1367px) {
  .off1366 {
    display: none;
  }
  .on1366 {
    display: block;
  }
}
@media (max-width:1280px) {
  .off1280 {
    display: none;
  }
  .on1280 {
    display: block;
  }
}
@media (max-width:1024px) {
  .off1024 {
    display: none;
  }
  .on1024 {
    display: block;
  }
}
@media (max-width:768px) {
  .off768 {
    display: none;
  }
  .on768 {
    display: block;
  }
}
@media (max-width:480px) {
  .off480 {
    display: none;
  }
  .on480 {
    display: block;
  }
}
.tc {
  text-align: center;
}
.tr {
  text-align: right;
}
.tl {
  text-align: left;
}
.tj {
  text-align: justify;
}
.lhn {
  line-height: normal;
}
.opa {
  transition: .5s;
  cursor: pointer
}
.opa:hover {
  opacity: .6;
}
/*margin*/
.mts {
  margin-top: .5em;
}
.mt1em {
  margin-top: 1em;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt45 {
  margin-top: 45px;
}
.mt60 {
  margin-top: 60px;
}
.mt80 {
  margin-top: 80px;
}
.mt100 {
  margin-top: 100px;
}
.mbs {
  margin-bottom: .5em;
}
.mb1em {
  margin-bottom: 1em;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb45 {
  margin-bottom: 45px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb100 {
  margin-bottom: 100px;
}
/*padding*/
.ps {
  padding: 0.5em;
}
.pt60 {
  padding-top: 60px;
}
/*  fade  */
.inview {
  opacity: 0;
  transition: all 1s;
}
.inview.is-show {
  opacity: 1;
}
.inview.early {
  transition: all .5s;
}
.inview.slow {
  transition: all 2s;
}
.fadein_up {
  transform: translate(0, 30%);
}
.fadein_up.is-show {
  transform: translate(0, 0);
}