/* リセット＆ベース */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q::before, q::after,
blockquote::before, blockquote::after {
  content: "";
  content: none;
}

a img {
  border: none;
}

/* 画像のレスポンシブ対応 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* bodyとmainのフォント指定 */
body#pacman, main * {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

/* mvクラス（メインビジュアル） */
.mv {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  max-width: 1500px;
}

/* sectionColの内側余白 */
.sectionCol {
  width: 100%;
}

.sectionColInner {
  width: 100%;
  margin: 0 auto;
  padding: 0 5.33333vw;
  max-width: 750px;
}

/* フッター */
.footerCol {
  background-color: #000;
  width: 100%;
  height: 10.66667vw;
  max-height: 80px;
}

.footerColInner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 5.33333vw;
  max-width: 1000px;
}

.footerColCopy {
  color: #fff;
  max-width: 54.66667vw;
  font-size: 2.13333vw;
  max-font-size: 16px;
}

/* リンクの装飾解除（共通） */
a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

/* ボタン風にしたいならここで調整 */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* メディアクエリ例（1000px超での調整） */
@media (min-width: 1001px) {
  .mv {
    padding: 0 0px;
  }
  .footerCol {
    height: 80px;
  }
  .footerColInner {
    padding: 0 40px;
  }
  .footerColCopy {
    max-width: 410px;
    font-size: 16px;
  }
  .sectionColInner {
    padding: 0 40px;
  }
}
