@charset "UTF-8";
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}

html {
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  -webkit-text-size-adjust: 100%;
}

/* 実質解像度によるfontサイズの指定 */
@media screen and (319px) {
  html {
    font-size: 12px;
  }
}

@media screen and (max-width: 519px) {
  html {
    font-size: 14px;
  }
}

@media screen and (min-width: 520px) and (max-width: 959px) {
  html {
    font-size: 16px;
  }
}

body {
  background: black;
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif, 'sans-serif';
}

a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

a:is(:active, :hover) {
  color: #e6d44a;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:focus {
  color: rgba(230, 212, 74, 0.7);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

#TOP {
  position: absolute;
  top: 0;
}

#GAME {
  position: relative;
  top: -1rem;
}

@media screen and (min-width: 520px) and (max-width: 959px) {
  #GAME {
    top: -80px;
  }
}

@media screen and (min-width: 960px) {
  #GAME {
    top: -100px;
  }
}

.caution {
  color: #868686;
  font-size: .7em;
  margin-right: 1em;
  position: relative;
  right: 1em;
  top: 0;
  text-align: right;
  width: 100%;
  z-index: 9999;
}

/* メイン */
.main {
  background-color: rgba(0, 0, 0, 0.75);
  position: relative;
  text-align: center;
}

@media screen and (max-width: 519px) {
  .main {
    margin: 50vh auto auto;
  }
}

@media screen and (min-width: 520px) and (max-width: 959px) {
  .main {
    margin: 50vh auto auto;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .main {
    margin: 100vh auto auto;
  }
}

@media screen and (min-width: 960px) {
  .main {
    margin: 742px auto auto;
  }
}

.content {
  width: 100%;
}

.content h1 {
  background-color: #505050;
  color: white;
  font-size: 24px;
  font-weight: 500;
  height: 70px;
  letter-spacing: 0.1em;
  padding-top: 23px;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

@media screen and (max-width: 519px) {
  .content h1 {
    font-size: 21px;
    height: 120px;
    padding-top: 50px;
    position: relative;
  }
}

@media screen and (min-width: 520px) and (max-width: 959px) {
  .content h1 {
    height: 136px;
    padding-top: 56px;
    position: relative;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .content h1 {
    height: 100px;
    padding-top: 42px;
  }
}

/*header {
  box-shadow: none;
  padding: 1rem 8% 0.8rem;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100vw;
  z-index: 999;
  }


@media screen and (min-width: 280px) and (max-width: 919px) {
  header {
    background-color: rgba(0, 0, 0, 0);
    display: block;
    height: 60px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
    text-align: left;
  }
}
*/
/* 詳細ページ */
.content-detail h1 {
  background-color: #505050;
  color: white;
  font-size: 24px;
  font-weight: 500;
  height: 70px;
  letter-spacing: 0.1em;
  padding-top: 23px;
  text-align: center;
  text-decoration: none;
  top: 100px;
  width: 100%;
}

@media screen and (max-width: 519px) {
  .content-detail h1 {
    font-size: 21px;
    height: 120px;
    padding-top: 50px;
    position: relative;
    top: 50px;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .content-detail h1 {
    height: 100px;
    padding-top: 42px;
    top: -25px;
  }
}

@media screen and (min-width: 520px) and (max-width: 959px) {
  .content-detail h1 {
    height: 136px;
    padding-top: 56px;
    position: relative;
    top: 56px;
  }
}

.content-detail__text {
  color: white;
  letter-spacing: 0.1em;
  padding-top: 23px;
  margin: 60px 30px;
  text-align: left;
  text-decoration: none;
  width: auto;
}

.content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-start;
      -ms-flex-pack: space-start;
          justify-content: space-start;
  max-width: 1140px;
  margin: 50px auto auto;
}

@media screen and (max-width: 519px) {
  .content-title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    margin: auto;
  }
}

@media screen and (min-width: 520px) and (max-width: 959px) {
  .content-title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin: auto;
  }
}

.content-title > * {
  text-align: center;
}

.content-title:after {
  content: '';
  display: block;
  width: 33.333%;
  height: 0;
}

@media screen and (max-width: 519px) {
  .content-title:after {
    display: none;
  }
}

@media screen and (min-width: 520px) and (max-width: 959px) {
  .content-title:after {
    display: none;
  }
}

@media screen and (min-width: 520px) and (max-width: 960px) {
  .content-title:after {
    content: '';
    display: block;
    width: 50%;
    height: 0;
  }
}

.content-titleItem {
  border-bottom: solid #bcbcbc 1px;
  color: white;
  height: 450px;
  margin: 0 auto 60px auto;
  text-align: left;
  width: 340px;
}

@media screen and (max-width: 519px) {
  .content-titleItem {
    border-top: solid #bcbcbc 1px;
    height: 100%;
    text-align: left;
    margin: 0 auto 0.5rem auto;
    width: 100%;
    padding-bottom: 1.5rem;
  }
}

@media screen and (min-width: 520px) and (max-width: 959px) {
  .content-titleItem {
    border-top: solid #bcbcbc 1px;
    height: 100%;
    text-align: left;
    margin: 0 auto 0.5rem auto;
    border-bottom: none;
    width: 100%;
    padding-bottom: 1rem;
  }
}

@media screen and (min-width: 960px) and (max-width: 1056px) {
  .content-titleItem {
    border-bottom: solid #bcbcbc 1px;
    width: 300px;
  }
}

.content-titleItem img {
  aspect-ratio: 25 / 16;
  height: auto;
  width: 100%;
}

@media screen and (max-width: 519px) {
  .content-titleItem img {
    height: auto;
    left: 0;
    min-width: 280px;
    position: relative;
    width: 100%;
  }
}

@media screen and (min-width: 520px) and (max-width: 959px) {
  .content-titleItem img {
    height: auto;
    left: 0;
    position: relative;
    width: 100%;
    min-height: 244px;
    min-width: 428px;
  }
}

@media screen and (max-width: 519px) and (orientation: landscape) {
  .content-titleItem img {
    height: auto;
    max-height: 90vh;
  }
}

.content-titleItem h4 {
  color: #e1e1e1;
  font-size: 24px;
  font-weight: normal;
  height: 64px;
  letter-spacing: 0.1em;
  line-height: 64px;
  margin: 0 30px 0 0;
  padding: 30px auto;
  vertical-align: baseline;
}

@media screen and (max-width: 519px) {
  .content-titleItem h4 {
    font-size: 1.5rem;
    content: '';
    font-weight: 500;
    letter-spacing: 0.1rem;
    margin: 1rem 30px auto;
    vertical-align: baseline;
  }
}

@media screen and (min-width: 520px) and (max-width: 959px) {
  .content-titleItem h4 {
    font-size: 24px;
    content: '';
    font-weight: 500;
    letter-spacing: 0.1rem;
    margin: 1rem 30px auto;
  }
}

.content-titleItem__text {
  height: 60px;
  vertical-align: baseline;
}

@media screen and (max-width: 519px) {
  .content-titleItem__text {
    height: auto;
    line-height: 1.5rem;
    min-height: 6rem;
    margin: auto 25px;
  }
}

@media screen and (min-width: 520px) and (max-width: 959px) {
  .content-titleItem__text {
    height: auto;
    line-height: 1.5rem;
    min-height: 5rem;
    margin: auto 30px;
  }
}

.content-titleItem-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 519px) {
  .content-titleItem-btn {
    margin: 0.5rem 25px 0 25px;
  }
}

@media screen and (min-width: 520px) and (max-width: 959px) {
  .content-titleItem-btn {
    width: 90%;
    max-width: 640px;
    margin: 0.5rem auto 0 auto;
  }
}

.content-titleItem-btn__btn01,
.content-titleItem-btn__btn02 {
  border-radius: 20px;
  border-style: none;
  color: black;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  height: 40px;
  line-height: 22px;
  list-style: none;
  margin-top: 20px;
  padding: 10px 16px;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  vertical-align: baseline;
  width: 150px;
}

@media screen and (min-width: 560px) and (max-width: 1056px) {
  .content-titleItem-btn__btn01,
  .content-titleItem-btn__btn02 {
    position: relative;
    text-align: center;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    vertical-align: baseline;
    width: 135px;
  }
}

.content-titleItem-btn__btn01 {
  background-color: white;
}

@media screen and (max-width: 519px) {
  .content-titleItem-btn__btn01 {
    border-radius: 20px;
    line-height: 20px;
    height: 40px;
    width: calc(calc(100% - 2.2rem) / 2);
    margin: 2.5rem 0;
  }
}

.content-titleItem-btn__btn02 {
  background-color: #c1c1c1;
}

@media screen and (max-width: 519px) {
  .content-titleItem-btn__btn02 {
    border-radius: 20px;
    line-height: 20px;
    height: 40px;
    width: calc(calc(100% - 2.2rem) / 2);
    margin: 2.5rem 0;
  }
}

@media screen and (min-width: 520px) and (max-width: 959px) {
  .content-titleItem-btn__btn01,
  .content-titleItem-btn__btn02 {
    border-radius: 22px;
    line-height: 22px;
    height: 44px;
    width: calc(calc(100% - 2.5rem) / 2);
    max-width: 344px;
    margin: 2.5rem 0;
  }
}

/* タップ時のカラー設定 */
.content-titleItem-btn__btn01:is(:hover, :focus),
.content-titleItem-btn__btn02:is(:hover, :focus) {
  background-color: #e6d44a;
  outline-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.content-titleItem-btn__btn01:active,
.content-titleItem-btn__btn02:active {
  background-color: #e9db74;
  outline-color: rgba(0, 0, 0, 0);
}

.footer {
  font-size: 11px;
  text-align: center;
  position: relative;
  background-color: #272727;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .footer {
    min-height: 50vh;
  }
}

.footer-snsFlex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 114px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  left: 0;
  position: relative;
}

@media screen and (max-width: 519px) {
  .footer-snsFlex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: calc(50vh - 74px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 60px 0 80px;
    margin: auto;
    width: 100%;
  }
}

@media screen and (min-width: 520px) and (max-width: 959px) {
  .footer-snsFlex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: calc(50vh - 92px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 60px 0 70px;
    position: relative;
    margin: auto;
    width: 100%;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .footer-snsFlex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: calc(100vh - 152px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 0 50px;
    position: relative;
    margin: auto;
    width: 100%;
  }
}

@media screen and (min-width: 959px) and (max-width: 1729px) {
  .footer-snsFlex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 40px;
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 1730px) {
  .footer-snsFlex {
    left: 50px;
    position: absolute;
    top: 25px;
  }
}

.footer-snsFlex-logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  margin: auto;
}

@media screen and (max-width: 959px) {
  .footer-snsFlex-logo {
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.2rem;
    margin: auto;
  }
}

.footer-snsFlex-logo__btn1,
.footer-snsFlex-logo__btn2 {
  border-radius: 57px;
  display: block;
  height: 114px;
  width: 114px;
}

@media screen and (min-width: 520px) and (max-width: 959px) {
  .footer-snsFlex-logo__btn1,
  .footer-snsFlex-logo__btn2 {
    border-radius: 100px;
    height: 200px;
    width: 200px;
    margin: auto;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .footer-snsFlex-logo__btn1,
  .footer-snsFlex-logo__btn2 {
    border-radius: 50px;
    height: 100px;
    width: 100px;
    margin: auto;
  }
}

.footer-snsFlex-logo__btn1 {
  background-image: url(../img/logo_tw.png);
  background-size: 100% auto;
}

.footer-snsFlex-logo__btn2 {
  background-image: url(../img/logo_fb.png);
  background-size: 100% auto;
}

.footer-snsFlex-logo__btn1:is(:hover, :focus) {
  background-image: url(../img/logo_tw_over.png);
}

.footer-snsFlex-logo__btn2:is(:hover, :focus) {
  background-image: url(../img/logo_fb_over.png);
}

.footer-infoFlex button {
  color: white;
  font-size: 27px;
  font-weight: bold;
  background: none;
}

@media screen and (min-width: 520px) and (max-width: 959px) {
  .footer-infoFlex button {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 519px) {
  .footer-infoFlex button {
    font-size: 1.8rem;
  }
}

.footer-infoFlex button:is(:hover, :focus) {
  color: #e6d44a;
}

/* リクルート */
.footer-infoFlex-rec__btn {
  display: none;
}

@media screen and (max-width: 959px) {
  .footer-infoFlex-rec__btn {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: right;
    width: 100vw;
    margin-top: 1rem;
    padding-bottom: 1rem;
  }
}

.footer-infoFlex-rec__btn:before {
  background: #bcbcbc;
  content: '';
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
}

.footer-infoFlex-rec__btn a {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-right: 1em;
  text-align: left;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.footer-infoFlex-rec__btn a:is(:hover, :focus) {
  color: #e6d44a;
}

@media screen and (max-width: 519px) {
  .footer-infoFlex-rec__btn a:is(:hover, :focus) {
    margin-right: 25px;
  }
}

/* コピーライト */
.footer-copyright {
  background-color: white;
  display: block;
  line-height: 20px;
  padding: 36px;
  width: 100%;
}

@media screen and (520px) and (max-width: 959px) {
  .footer-copyright {
    background-color: white;
    max-height: 110px;
    padding: 4rem;
    margin-top: 100%;
    position: relative;
  }
}

@media screen and (min-width: 1730px) {
  .footer-copyright {
    background-color: white;
    max-height: 160px;
    padding: 5rem;
  }
}

/* ユーティリティ */
.officename {
  font-weight: bold;
  letter-spacing: 0.1em;
}

.newline {
  display: none;
}

@media screen and (max-width: 600px) {
  .newline {
    display: block;
    margin-bottom: 1rem;
  }
}

.newline2 {
  display: none;
}

@media screen and (max-width: 600px) {
  .newline2 {
    display: block;
  }
}

.newline3 {
  display: none;
}

@media screen and (max-width: 280px) {
  .newline3 {
    display: block;
  }
}

.small__text {
  font-size: 12px;
  font-style: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}

/* Scroll to TOP */
#scroll-to-top-btn {
  position: fixed;
  bottom: 36px;
  right: -2px;
  height: 32px;
  width: 50px;
  color: white;
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 18px 0 0 18px;
  outline: none;
  opacity: 0;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  border: solid rgba(255, 255, 255, 0.8) 2px;
}
/*# sourceMappingURL=style.css.map */