@charset "shift_jis";
/* CSS Document */
/*------------------------------
	webフォント
------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@900&display=swap');
/*------------------------------
	reset
------------------------------*/
* {
	margin: 0;
	padding: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 0;
	outline: 0;
	vertical-align: baseline;
}
img {
    width: 100%;
    height: auto;
	vertical-align: bottom;
	font-size: 0;
	line-height: 0;
	border: 0;
    /*長押し禁止*/
    pointer-events: none;
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}
a {
    text-decoration: none;
}
/*------------------------------
	root
------------------------------*/
html,
body {
	font-size: calc(100vw / 32);
	color: #fff;
	background-color: #000;
}
body {
	background-color: transparent;
	font-size: 1.6rem;
}
/*------------------------------
	全体カコミ
------------------------------*/
.iPhoneBody {
	background-color: transparent;
}
.iPhoneBody::before {
    display: block;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -2;
    width: 100%;
    height: 100vh;
    background-image: url("../img/bg.jpg");
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: center top;
}
.panel {
    position: static;
}
/*------------------------------
    リード
------------------------------*/
.leadBox {
    margin: 1.5rem 1rem;
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: justify;
}
.leadBox p + p {
    margin-top: 1rem;
}
/*------------------------------
    実戦ルール
------------------------------*/
.ruleBox {
	margin: 2rem 1rem;
    padding: 1rem;
	font-size: 1.2rem;
    text-align: justify;
    background-color: rgba(0,0,0,0.5);
    border: solid 0.2rem #808080;
    border-radius: 1rem;
}
.ruleBox_heading {
    margin-bottom: 1rem;
	font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.ruleBox p {
    margin-top: 0.5rem;
    padding-left: 1em;
    text-indent: -1em;
}
/*------------------------------
    リンク
------------------------------*/
.linkBox {
    margin: 2rem 1rem;
    text-align: center;
    position: relative;
}
.linkBox a {
    display: block;
    position: relative;
}
.linkBox.quiz a {
    padding: 1rem;
    width: calc(100% - 0.3rem);
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    font-family: "Noto Sans JP", sans-serif;
    color: #3e018d;
    background-color: #ff0;
    border-radius: 0.5rem;
    box-shadow: 0.3rem 0.3rem #f90;
}
.linkBox.quiz p {
    margin-top: 0.6rem;
    font-size: 1.2rem;
}
.linkBox.quiz.end a {
    width: 100%;
    color: #444;
    background-color: #666;
    box-shadow: none;
    pointer-events: none;
}
.linkBox.quiz.end p {
    margin-top: 0.3rem;
}
.linkBox.soon {
    background-color: #000;
}
.linkBox.soon a {
    opacity: 0.6;
    pointer-events: none;
}
.linkBox.soon .linkBox_schedule {
    display: flex;
}
/* 公開日 */
.linkBox_schedule {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    display: none;
    justify-content: center;
    align-items: center;
}
.linkBox_schedule span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8rem;
    height: 8rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    background-color: #e60012;
    border-radius: 100vh;
    box-shadow: 0 0 0.5rem 0.2rem rgba(0,0,0,0.5);
    position: relative;
    transform: rotate(-15deg);
}
/* NEWマーク */
.newmark {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 6rem;
	height: 6rem;
	overflow: hidden;
}
.newmark span {
	display: inline-block;
	position: absolute;
	right: -3.5rem;
	bottom: 1rem;
	width: 15rem;
	text-align: center;
	font-size: 1.4rem;
	line-height: 2.2rem;
	font-weight: 900;
	font-family: "Noto Sans JP", sans-serif;
    letter-spacing: -0.1rem;
	background-color: #ff0;
	color: #f00;
	box-shadow: 0 0 0.5rem 0.2rem rgba(0,0,0,0.5);
	transform: rotate(45deg);
}
/*------------------------------
    TOPに戻る
------------------------------*/
.backtotopBox {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 1.4rem;
    background-color: #000;
}
.backtotopBox a {
    color: #ff0;
}


