@charset "shift_jis";
/* CSS Document */
/*------------------------------
	webフォント
------------------------------*/
/*@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@900&family=Roboto: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: #000;
}
.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;
}
/*------------------------------
    リンク／結果
------------------------------*/
.linkBox,
.resultBox {
    margin: 2rem 1rem;
}
.linkBox a,
.resultBox a {
    display: block;
}
.linkBox {
    background: linear-gradient(to right, #d89d00 0%, #f4d51a 10%, #b97607 20%, #f4d51a 30%, #ffffff 50%, #f4d51a 70%, #b97607 80%, #f4d51a 90%, #d89d00 100%);
}
.linkBox_heading {
    padding-left: 0.75rem;
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 900;
    font-optical-sizing: auto;
    font-style: normal;
    font-family: "Noto Serif JP", serif;
    color: #000;
}
/* NEWマーク */
.newmark {
    padding-left: 0.5rem;
    font-size: 1.4rem;
    white-space: nowrap;
    font-weight: 900;
    font-optical-sizing: auto;
    font-style: normal;
    font-family: "Roboto", sans-serif;
    color: #f00;
    animation: blinking 1.5s ease-in-out infinite alternate;
}
@keyframes blinking {
    50% {opacity: 0;}
}
/*------------------------------
    TOPに戻る
------------------------------*/
.backtotopBox {
    margin: 2rem auto;
    text-align: center;
    font-size: 1.4rem;
}
.backtotopBox a {
    color: #ff0;
}


