/* =====================================================
  common.css
  Site foundation styles
===================================================== */

/* ------------------------------
  Reset
------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "BIZ UDGothic", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size:16px;
  line-height: 1.75;
  color: #333;
  background-color: #fff;
}

/* ------------------------------
  Media
------------------------------ */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ------------------------------
  Link
------------------------------ */
a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ------------------------------
  Layout
------------------------------ */
.l-content {
  padding: 60px 0;
}

.l-content__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ------------------------------
  Heading (base)
------------------------------ */
h1,
h2,
h3 {
  margin: 0;
  font-weight: bold;
  line-height: 1.4;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

h3 {
  font-size: 1.125rem;
}

/* ------------------------------
  Text
------------------------------ */
p {
  margin: 0 0 1em;
}

/* ------------------------------
  Utility fallback (minimum)
------------------------------ */
.pc_hide {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc_hide {
    display: block;
  }
  .sp_hide {
    display: none;
  }
}
