﻿@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
/* ===============================
	base
 =============================== */
body {
    font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif ,Noto Sans CJK JP;

    color: #fff;
    -webkit-text-size-adjust: 100%;
    background: linear-gradient(0deg, rgb(0, 0, 0), rgb(33, 33, 33));

}

a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* スマホのハイライトデザインを無効にする */
}

a{
    outline: none;
    text-decoration: none;
}
a:hover {
    color: #fff;
}

img {
    vertical-align: bottom;
}

.mo a img {
    background-color: rgba(255, 255, 255, .01); /* マウスオーバー要素のバグ対応 */
}
.picture {
    width: 100%;
}
.picture90 {
    width: 90%;
}
.picture80 {
    width: 80%;
}
.pictureH {
    height: auto;
}



/* =====
/* ===============================
	loading
 =============================== */
#pageLoad {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    z-index: 999;
}

    #pageLoad.loading {
        background-image: url(../images/pageloading.gif);
        background-position: center center;
        background-repeat: no-repeat;
    }

/* ===============================
	utility
 =============================== */
ul.horizon:after { /* 水平並びリスト */
    content: ".";
    display: block;
    clear: both;
    height: 0px;
    visibility: hidden;
    font-size: 0px;
}

ul.horizon {
    list-style: none;
    min-height: 1px;
    zoom: 1;
}

    ul.horizon li {
        float: left;
    }

ul.dot { /* リスト（・） */
    list-style: disc;
    padding-left: 1.5em;
}

ul.star { /* リスト（※） */
    list-style: none;
    padding-left: 1.5em;
}

    ul.star li {
        text-indent: -1.5em;
    }

        ul.star li:BEFORE {
            content: "\203b";
            margin-right: 0.5em;
        }

ul.disc { /* リスト（●） */
    list-style: none;
    padding-left: 1.5em;
}

    ul.disc li {
        text-indent: -1.5em;
    }

        ul.disc li:BEFORE {
            content: "\25cf";
            margin-right: 0.5em;
        }

ul.square { /* リスト（■） */
    list-style: none;
    padding-left: 1.5em;
}

    ul.square li {
        text-indent: -1.5em;
    }

        ul.square li:BEFORE {
            content: "\25a0";
            margin-right: 0.5em;
        }


/* テキストサイズ */     
.caption { /* テキストサイズ注釈 */
    font-size: 0.7em;
    line-height: 1.4em;
}

.fxs {
    font-size: .8em; /* テキストサイズ小 */
    line-height: 1.3em;
}
.fx0 {
    font-size: 1.0em; /* テキストサイズ中 */
    line-height: 1.4em;
}
.fxl {
    font-size: 1.5em; /* テキストサイズ大 */
    line-height: 1.6em;
}
.fx2 {
    font-size: 1.5em; /* テキストサイズ大 */
    line-height: 1.6em;
}
.mds {
    font-size: .72em; /* 見出しサイズ小 */
    line-height: 1.3em;
    font-weight: 800;
}
.md0 {
    font-size: .8em; /* 見出しサイズ小 */
    line-height: 1.3em;
    font-weight: 800;
}
.md1 {
    font-size: 1.9em; /* 見出しサイズ中 */
    line-height: 1.3em;
    font-weight: 800;
}
.md2 {
    font-size: 2.5em; /* 見出しサイズ大 */
    line-height: 1.0em;
    font-weight: 800;
}
.md3 {
    font-size: 3.5em; /* 見出しサイズ大大 */
    line-height: 1.0em;
    font-weight: 800;
}
/* マージン設定 */
.mt05em { /* margin top 0.5行 */
    margin-top: 0.5em !important;
}

.mt1em { /* margin top 1行 */
    margin-top: 1em !important;
}

.mt2em { /* margin top 2行 */
    margin-top: 2em !important;
}
.mt3em { /* margin top 3行 */
    margin-top: 3em !important;
}
.mt4em { /* margin top 4行 */
    margin-top: 4em !important;
}


.rdus { /* 角丸 */
    border-radius: 4px;
}
.center{
    text-align: center;
}
.right{
    text-align: right;
}
.w800 {
    font-weight: 800;
}
.w600 {
    font-weight: 600;
}

.wh{
    color: #fff;
}
.bk{
    color: #000;
}
.lb{
    color: #2bf3ff;
}
.ye{
    color: #fff600;
}
.lightBllue{
    color: #20FFFF;
}
.bc1{
    background-color: #10324a;
}
/* ===============================
	ボタン
 =============================== */
 /* 基本 */
 *,
 *:before,
 *:after {
   -webkit-box-sizing: inherit;
   box-sizing: inherit;
 }
 
 html {
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
   font-size: 62.5%;/*rem算出をしやすくするために*/
 }
 
 .btn,
 a.btn,
 button.btn {
   font-size: 1.3rem;
   font-weight: 700;
   line-height: 1.5;
   position: relative;
   display: inline-block;
   padding: 1rem 4rem;
   cursor: pointer;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
   -webkit-transition: all 0.3s;
   transition: all 0.3s;
   text-align: center;
   vertical-align: middle;
   text-decoration: none;
   letter-spacing: 0.1em;
   color: #212529;
   border-radius: 0.5rem;
 }
 /* フロート */
 a.btn-flat {
    overflow: hidden;
    padding: .5rem 3rem;
    color: #fff;
    border-radius: 0;
    background: #000;
    border: 1px solid #ff001e;
  }
  
  a.btn-flat span {
    position: relative;
  }
  
  a.btn-flat:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: translateX(-96%);
    transform: translateX(-96%);
    background: #ff001e;
  }
  
  a.btn-flat:hover:before {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  
/* ラウンドボタン */
a.btn_01 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 17em;
	margin: auto;
	padding: 0 0 ;
	font-weight: bold;
	border: 2px solid #3A22D3;
	background: #3A22D3;
	color: #fff;
	border-radius: 100vh;
	transition: 0.5s;
    font-size: medium;
}
a.btn_01:hover {
	color: #3A22D3;
	background: #fff;
}
a.btn_02 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 17em;
	margin: auto;
	padding: 0 0 ;
	font-weight: bold;
	border: 2px solid #D32222;
	background: #D32222;
	color: #fff;
	border-radius: 100vh;
	transition: 0.5s;
    font-size: medium;
}
a.btn_02:hover {
	color: #D32222;
	background: #fff;
}

    

/* もどる */
#page_top{
    width: 40px;
    height: 50px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: rgb(255, 255, 0);
    opacity: 0.8;
  }
  #page_top a{
    position: relative;
    display: block;
    top:5px;
    left:4px;
    width: 30px;
    height: 40px;
    text-decoration: none;
  }



/* ===============================
    menu
 =============================== */
 /* メニュー形状 */
 
  
/* ===============================
	Body
 =============================== */
 #PC {
    display: block !important;
}
 #SP {
    display: none !important;
}
/* Top */
.top {
    padding: 0;
    margin: 0;
}
.textBox{
    padding: 5px;
    line-height: 1.6em;
    text-align: start;
}
/* attraction */
.Works{
    padding: 0;
    margin: 0;
}
.attractionHead{
    margin: 0;
    padding: 10px 0px 10px 0px;
    background-color: #000000;
}
.attraction{
    margin: 0;
    padding: 0px;
    background-color: #000000;
}
.attractionLeft {
    margin: 0;
    padding: 0px;
}
.attractionCenter {
    margin: 0;
    padding: 0px 4px 0px 4px;
}
.attractionRight {
    margin: 0;
    padding: 0px;
}
.attractionCopy{
    border-top: 1px solid #f5bd28;
    border-bottom:  1px solid #f5bd28;
}

.attractionBottom {
    margin: 0;
    padding: 0px;
}
/* Game */
.game{
    padding: 0px;
    margin: 0px;
}
.gameFrame{
    padding: 4px;
    margin: 0px;
z
}
.gameCornerTitle{
    border-top: 1px solid #62FF08;
    border-bottom:  1px solid #62FF08;
}
.gameHead{
    margin: 0;
    padding: 0px;

}
.gameTitle {
    padding: 1px;
    background-image:url(../img/Playable.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0px 2px;
}
.gameCopy{
    border-top: 1px solid #62FF08;
    border-bottom:  1px solid #62FF08;
    line-height: 1em;
    padding: 0.5em 0px 0.5em 0em;
}
.specialCornerTitle{
    border-top: 1px solid #21FFFF;
    border-bottom:  1px solid #21FFFF;
    padding: 10px 0px 10px 0px;
}
.specialCopy{
    border-top: 1px solid #21FFFF;
    border-bottom:  1px solid #21FFFF;
    line-height: 1em;
    padding: 0.5em 0px 0.5em 0em;
}

/* footer*/
.footer{
    border-top: 1px solid #fff;
    padding: 0;
    margin: 0;
}
.footerBlock{
    padding: 15px 20px 0px 0px;
    margin: 0px;
}

/* メディアクエリサンプル */
/* ===============================
	device setting
 =============================== */
@media screen and (min-width: 1281px) {
    // 画面幅が1281px以上（PC専用スタイル）
}

@media screen and (max-width: 1280px) {
    // 画面幅が1280px以下（タブレット・スマホ共通スタイル）
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
    // 画面幅が768px～1280px（タブレット専用スタイル）
    .hachi05{
        border: solid 1px #74B250;
        background-image: url(../img/hachiV.png);
        background-repeat: no-repeat;
        background-position: right;
        background-position-y: top;
        background-size:12%;
    }
    
}

@media screen and (max-width: 767px) {

}

@media screen and (max-width: 414px) {
/* 文字、設定 */
    #PC {
        display: none !important;
    }
     #SP {
        display: block !important;
    }

    

    .caption { /* テキストサイズ注釈 */
        font-size: 0.7em;
        line-height: 1.4em;
    }
    
    .fxs {
        font-size: 0.8em; /* テキストサイズ最小 */
        line-height: 1.3em;
    }
    .fx0 {
        font-size: 1.0em; /* テキストサイズ小 */
        line-height: 1.4em;
    }
    .fxl {
        font-size: 1.3em; /* テキストサイズ中 */
        line-height: 1.6em;
    }
    .fx2 {
        font-size: 1.5em; /* テキストサイズ大 */
        line-height: 1.6em;
    }
    .mds {
        font-size: .72em; /* 見出しサイズ小 */
        line-height: 1.3em;
        font-weight: 800;
    }
    .md0 {
        font-size: 2.0em; /* 見出しサイズ小 */
        line-height: 1.3em;
        font-weight: 800;
    }
    .md1 {
        font-size: 2.1em; /* 見出しサイズ中 */
        line-height: 1.5em;
        font-weight: 800;
    }
    .md2 {
        font-size: 2.5em; /* 見出しサイズ大 */
        line-height: 1.0em;
        font-weight: 800;
    }
    .md3 {
        font-size: 3.5em; /* 見出しサイズ大大 */
        line-height: 1.0em;
        font-weight: 800;
    }
    /* マージン設定 */
    .mt05em { /* margin top 0.5行 */
        margin-top: 0.5em !important;
    }
    
    .mt1em { /* margin top 1行 */
        margin-top: 1em !important;
    }
    
    .mt2em { /* margin top 2行 */
        margin-top: 2em !important;
    }
    .mt3em { /* margin top 3行 */
        margin-top: 3em !important;
    }
    .mt4em { /* margin top 4行 */
        margin-top: 4em !important;
    }
    .letterSp01 {
        letter-spacing: 0em;
        font-feature-settings: "pkna"
    }
/* ラウンドボタン */
a.btn_01 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 19em;
	margin: auto;
	padding: 0 0 ;
	font-weight: bold;
	border: 2px solid #3A22D3;
	background: #3A22D3;
	color: #fff;
	border-radius: 100vh;
	transition: 0.5s;
    font-size: small;
}
a.btn_01:hover {
	color: #3A22D3;
	background: #fff;
}
a.btn_02 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 19em;
	margin: auto;
	padding: 0 0 ;
	font-weight: bold;
	border: 2px solid #D32222;
	background: #D32222;
	color: #fff;
	border-radius: 100vh;
	transition: 0.5s;
    font-size: small;
}
a.btn_02:hover {
	color: #D32222;
	background: #fff;
}
/* コンテンツ */
/* Top */
.top {
    padding: 0;
    margin: 0;
}
.textBox{
    padding: 5px;
    line-height: 1.3em;
}
/* attraction */
.Works{
    padding: 0;
    margin: 0;
}
.attractionHead{
    margin: 0;
    padding: 10px;
    background-color: #000000;
}
.attraction{
    margin: 0;
    padding: 0px;
    background-color: #000000;
}
.attractionLeft {
    margin: 0;
    padding: 0px;
}
.attractionCenter {
    margin: 0;
    padding: 0px 4px 0px 4px;
}
.attractionRight {
    margin: 0;
    padding: 0px;
}
.attractionCopy{
    border-top: 1px solid #f5bd28;
    border-bottom:  1px solid #f5bd28;
}

.attractionBottom {
    margin: 0;
    padding: 0px;
}
/* Game */
.game{
    padding: 0px;
    margin: 0px;
}
.gameFrame{
    padding: 0px;
    margin: 0px;
    background-color: #000;
}
.gameCornerTitle{
    border-top: 1px solid #62FF08;
    border-bottom:  1px solid #62FF08;
}
.gameHead{
    margin: 0;
    padding: 0px;

}
.gameTitle {
    padding: 1px;
    background-image:url(../img/Playable.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0px 2px;
}
.gameCopy{
    border-top: 1px solid #62FF08;
    border-bottom:  1px solid #62FF08;
    line-height: 1em;
    padding: 0.5em 0px 0.5em 0em;
}
.specialCornerTitle{
    border-top: 1px solid #21FFFF;
    border-bottom:  1px solid #21FFFF;
    padding: 10px 0px 10px 0px;
}
.specialCopy{
    border-top: 1px solid #21FFFF;
    border-bottom:  1px solid #21FFFF;
    line-height: 1em;
    padding: 0.5em 0px 0.5em 0em;
}

/* footer*/
.footer{
    border-top: 1px solid #fff;
    padding: 0;
    margin: 0;
}
.footerBlock{
    padding: 15px 0px 0px 0px;
    margin: 0px;
}
    

}
/* 印刷用スタイル */
/* ===============================
	print setting
 =============================== */
@media print {
    .printNl {
        page-break-before: always;
    }
}
