/* common
------------------------------ */
.font-en {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-transform: lowercase;
}

.font-jp {
  font-family: "Lato", sans-serif !important;
}

/* button
------------------------------ */
.btn {
  text-align: center;
  margin: 1.2em 0;
}

.btn--main,
.btn--sub {
  display: inline-block;
  text-align: center;
  min-width: 280px;
  max-width: 90%;
  font-size: 1.1em;
  font-weight: 400;
  padding: 0.8em 1em;
  border-radius: 0;
  white-space: pre-wrap;
  margin-inline: auto;
  border: 1px solid;
  line-height: 1.3;
  transform: skewX(-10deg);
  cursor: pointer;
}

.btn--main {
  background: #000;
  border-color: #000;
  color: #fff;
}
.btn--main:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

.btn--sub {
  background: #666;
  border-color: #666;
  color: #fff;
}
.btn--sub:hover {
  background: #666;
  border-color: #666;
  color: #fff;
}

@media screen and (min-width: 961px) {
  .btn--main,
  .btn--sub {
    transition: 0.3s;
    will-change: transform;
  }
  .btn--main:hover,
  .btn--sub:hover {
    opacity: 0.6;
    transform: none;
  }
}
/* mypage
------------------------------ */
.block--security-notice .btn--security-notice-open {
  transform: none;
}

/* footer
------------------------------ */
footer {
  position: static;
}