@charset "utf-8";

/* ========================================
foundation
======================================== */

html {
  font-size: 62.5%;
}

body {
  font-family: YakuHanMPs, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Sawarabi Mincho", "HG明朝E", serif;
  margin: 0;
  color: #333;
  line-height: 1.8;
  font-size: 14px;
  font-size: 1.4rem;
}

ul {
  list-style: none;
  padding: 0;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

tr {
  vertical-align: top;
}

th {
  text-align: left;
}

/* ========================================
others
======================================== */


/* 画像ホバー効果 */

a:hover img {
  transition: 0.5s;
  filter: brightness(1.1);
}

/* 線あり */

.block img.lp {
  border: 1px solid #666;
}


/* 基本リンク色指定 */
a:link {color: #1a0dab;}
a:visited {color: #609;}

/* ========================================
media
======================================== */

@media screen and (max-width: 899px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 900px) {
  .sp-only {
    display: none !important;
  }
}

/* ========================================
animation keyframes
======================================== */

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    transform: translate(0, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}
