@charset "UTF-8";
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;
}

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;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*========================
メディアクエリ
========================*/
/*========================
// px → vw
// 指定px ÷ Viewport × 100
========================*/
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

body * {
  box-sizing: border-box;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

.container,
.wrapper {
  position: relative;
  margin: auto;
  width: 100%;
}

a {
  text-decoration: none;
  display: inline-block;
}

@media all and (-ms-high-contrast: none) {
  a {
    display: block;
  }
}

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

video {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

svg {
  display: block;
  width: 100%;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: inherit;
  font-family: inherit;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 751px) {
  .sp {
    display: none;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

body.page {
  padding-top: 2.34375vw;
  background: url(../images/game/bg.jpg) top center no-repeat;
  background-size: cover;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: #665230;
}

@media screen and (min-width: 751px) {
  body.page {
    background: url(../images/game/bg.jpg) top center no-repeat;
    background-size: 100% 200vh;
  }
}

@media screen and (min-width: 769px) {
  body a,
  body .image:hover {
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
  }
  body a:hover,
  body .image:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.fadeOut {
  opacity: 0;
}

.contents {
  margin: auto;
}

.title {
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 751px) {
  .title {
    margin: auto auto 30px auto;
  }
}

@media screen and (min-width: 900px) {
  .title {
    margin: auto;
  }
}

.game {
  position: relative;
  padding-bottom: 80px;
  max-width: 1462px;
  margin: auto;
}

.game_bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-position: top center;
  z-index: 0;
}

@media screen and (max-width: 750px) {
  .game_bg {
    background-image: url("../images/game/game_bg_sp.png");
    background-size: 100% auto;
  }
}

@media screen and (min-width: 751px) {
  .game_bg {
    top: -15%;
    background-image: url("../images/game/game_bg.png");
    background-position: top center;
    background-size: cover;
  }
}

@media screen and (min-width: 900px) {
  .game_bg {
    top: -10%;
  }
}

@media screen and (min-width: 1200px) {
  .game_bg {
    top: -60px;
  }
}

.cardwrap {
  margin: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 750px) {
  .cardwrap {
    padding: 10% 0 30%;
    width: 100%;
  }
}

@media screen and (min-width: 751px) {
  .cardwrap {
    padding: 3.3% 0;
    max-width: 1200px;
  }
}

@media screen and (max-width: 750px) {
  .space {
    width: calc(100% / 4 * 0.5 - 3%);
  }
}

@media screen and (min-width: 751px) {
  .space {
    width: 0;
  }
}

.card {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: trasform 0.2s;
  transition: trasform 0.2s;
  position: relative;
  -webkit-perspective: 150em;
          perspective: 150em;
  color: #FFF;
  cursor: pointer;
}

.card:nth-of-type(1) {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}

.card:nth-of-type(2) {
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
}

.card:nth-of-type(3) {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}

.card:nth-of-type(4) {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.card:nth-of-type(5) {
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
}

.card:nth-of-type(6) {
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}

.card:nth-of-type(7) {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}

.card:nth-of-type(8) {
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}

.card:nth-of-type(9) {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}

.card:nth-of-type(10) {
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}

.card_inner {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

@media screen and (max-width: 750px) {
  .card_inner {
    padding: 5px;
  }
}

@media screen and (max-width: 750px) {
  .card {
    margin: 1.5%;
    width: calc(100% / 4 - 3%);
  }
}

@media screen and (min-width: 751px) {
  .card {
    margin: 1.6%;
    width: 15%;
  }
}

.card .front,
.card .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.card .front {
  position: relative;
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}

.card .back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.card.active .card_inner {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.2));
}

.card.active .front {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.card.active .back {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}

.linkBtn a {
  margin: 0 auto;
  width: 80%;
  display: block;
  text-align: center;
}

.linkBtn a img {
  width: 100%;
  max-width: 453px;
}

footer {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 50%);
  text-align: center;
  padding: 10.625vw 0 10.625vw;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 23.4375vw 0 23.4375vw;
  }
}

@media screen and (min-width: 751px) {
  footer {
    padding: 136px 0;
  }
}

footer .logoCol {
  margin-bottom: 2.65625vw;
}

@media screen and (max-width: 768px) {
  footer .logoCol {
    margin-bottom: 5.3125vw;
  }
}

@media screen and (min-width: 751px) {
  footer .logoCol {
    margin-bottom: 34px;
  }
}

footer .logoCol img {
  width: 12.5vw;
  max-width: 80px;
}

footer .snsCol {
  text-align: center;
  margin-bottom: 10.625vw;
}

footer .snsCol a {
  margin-right: 2.5vw;
}

@media screen and (max-width: 768px) {
  footer .snsCol a {
    margin-right: 5vw;
  }
}

@media screen and (min-width: 751px) {
  footer .snsCol a {
    margin-right: 32px;
  }
}

footer .snsCol a:last-child {
  margin-right: 0;
}

footer .snsCol img {
  width: 11.71875vw;
  max-width: 50px;
}

@media screen and (max-width: 768px) {
  footer .snsCol {
    margin-bottom: 23.4375vw;
  }
}

@media screen and (min-width: 751px) {
  footer .snsCol {
    margin-bottom: 136px;
  }
}

/*# sourceMappingURL=map/game.css.map */
