
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
* {
  margin: 0;
  padding: 0;
}
html {
  color: #333;
  font-family: "BIZ UDGothic", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}
body {
  font-size: 1.3rem; /* 13px */
  line-height: 1.6;
  letter-spacing: 1px;
  font-feature-settings: normal;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  position: relative;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
div {
  position: relative;
}
fieldset, img {
  border: 0
}
ol, ul {
  list-style: none;
}
/*link*/
a {
  color: #333;
  text-decoration: none;
  transition: .3s;
}
a:link {
  color: #333;
  text-decoration: none;
}
a:visited {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #008dac;
  text-decoration: none;
}
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  padding-top: 0px;
  transition: .3s;
}
img {
  border-style: none;
  z-index: 0;
  vertical-align: bottom;
  line-height: 1.0em;
  width: 100%;
  height: auto;
}
/*font*/
.en_font {
  font-family: effra, sans-serif;
  font-weight: 400;
}
.en_font.bold {
  font-weight: 700;
}
.title.white {
  color: #fff;
}
.title.white span {
  color: #fff;
}
.title {
  color: #008dac;
  font-weight: 500;
  font-size: 1.5rem;
}
.title span {
  display: block;
  font-family: effra, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: 2px;
}
.base_bg {
  padding: 3em 0;
}
.btn.reverse {
  border: 2px solid #008dac;
  background: #fff;
}
.btn.reverse span {
  color: #008dac;
}
.btn.reverse::after {
  color: #008DAC;
}
.btn.clearwhite {
  background: #fff;
}
.btn.clearwhite span {
  color: #008dac;
}
.btn.clearwhite::after {
  color: #008dac;
}
.btn.online {
  padding: 10px 25px 10px 30px;
}
.btn.online i {
  padding: 0 0 0 10px;
}
.btn.online::after {
  display: none;
}
.btn {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  padding: 10px 35px 10px 30px;
  background: #008dac;
  text-align: center;
  outline: none;
  transition: ease .2s;
  letter-spacing: 2px;
  border-radius: 50px;
}
.btn span {
  position: relative;
  z-index: 3;
  color: #fff;
}
.btn::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0%, -50%);
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  color: #fff;
  font-size: 1rem;
  transition: ease .2s;
}
.btn:hover::after {
  right: 5px;
}
.btn.back::after {
  right: inherit;
  left: 10px;
  content: '\f053';
}
.btn.back:hover::after {
  left: 5px;
}
.pagetitle {
  position: relative;
  text-align: left;
  margin: 80px auto 0;
  background: #0095D1;
  width: calc(90% - 40px);
  color: #fff;
  padding: 2em 20px 2em;
  border-radius: 20px;
  overflow: hidden;
}
.pagetitle::before {
  position: absolute;
  content: '';
  top: 0;
  right: 3%;
  display: block;
  width: 95%;
  height: 100%;
  background-image: url("/img/game/mv.webp");
  background-size: 170px;
  background-position: top 0 right 0;
  background-repeat: no-repeat;
}
.pagetitle p {
  position: relative;
  z-index: 1;
  font-family: effra, sans-serif;
  font-weight: 700;
  line-height: 1.4;
  font-size: 2.5rem;
  letter-spacing: 3px;
}
.pagetitle div span {
  display: block;
  font-weight: 700;
  font-size: 1.5rem;
}
/* pp */
.pp {
  padding: 3em 0 5em;
  width: 90%;
  margin: auto;
  text-align: left;
}
.pp div:first-child {
  margin: 0 auto 0.8em;
}
.pp div {
  padding: 0 0 0.3em;
  border-bottom: 0.5px solid #008DAC;
  margin: 2em auto 0.8em;
  font-weight: bold;
  font-size: 1.5rem;
  color: #008DAC;
}
.pp div.noborder {
  border-bottom: none;
  padding: 0;
  margin: 0 auto 0.5em;
  font-size: 1.6rem;
}
/* company */
.comp_list {
  margin: 0 auto 2em;
}
.comp_list li {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #ccc;
  text-align: left;
  position: relative;
}
.comp_list li::before {
  content: '';
  position: absolute;
  top: -1.5px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #FFE200;
}
.comp_list li dt {
  width: 25%;
  font-weight: bold;
}
.comp_list li dd {
  width: 75%;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 0em auto 0.5em;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  body {
    font-size: 1.5rem; /* 15px */
    line-height: 1.8;
  }
  .btn {
    font-size: 1.6rem;
    padding: 14px 60px 14px 50px;
    letter-spacing: 2px;
  }
  .title {
    font-size: 1.7rem;
  }
  .title span {
    font-size: 4rem;
  }
  .base_bg {
    padding: 5em 0 5em;
  }
  .pagetitle {
    margin: 90px auto 0;
    max-width: calc(1300px - 100px);
    width: calc(90% - 100px);
    padding: 3.5em 50px 3.5em;
  }
  .pagetitle::before {
    background-size: 280px;
  }
  .pagetitle p {
    font-size: 4rem;
    line-height: 1.3;
  }
  .pagetitle div {
    font-size: 1.7rem;
  }
  .pagetitle div span {
    font-size: 2rem;
  }
  /* pp */
  .pp {
    padding: 5em 0 8em;
    width: 90%;
    max-width: 900px;
  }
  .pp div {
    font-size: 1.8rem;
  }
  .pp div.noborder {
    font-size: 2rem;
  }
  /* company */
  .comp_list {
    margin: 0 auto 3em;
  }
}