@charset "utf-8";

/*PC・タブレット・スマホ共通設定
---------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
    margin: 0px;
    padding: 0px;
    color: #fff;	/*全体の文字色*/
    background-image: url(../../img/dangerBg.jpg);	/*背景*/
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;	/*フォント種類*/
    font-size: 1rem;	/*文字サイズ*/
    -webkit-text-size-adjust: none;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    background-color: #FFDD2C;
}
@media screen and (max-width:480px){
body {
    background-color: #000000;
}
}
h1 {
    margin: 0 auto;
    display: block;
    font-size: 1rem;
    text-align: center;
    font-weight: normal;
}
@media screen and (max-width:480px){
h1 {
    font-size: 0.8rem;
}
}

main {
    margin: 500px auto 100px;
    display: block;
    text-align: center;
    }
@media screen and (max-width:480px){
main {
    margin: 240px auto 0;
    }
}

p {
    font-size: 1rem;	/*文字サイズ*/	
    text-shadow: 2px 2px 2px #000000;
}
@media screen and (max-width:480px){
p {
    font-size: 0.8rem;	/*文字サイズ*/

}
}

button {
    width: 300px;
    height: 50px;
    padding: 20px 0;
	margin: 0 0 50px;
    font-size: 1.5rem;	/*文字サイズ*/
    border-radius: 5px;
    border: 0px;
    line-height: 0;		/*行間*/
    background-color: #FFDD2C;
}
@media screen and (max-width:480px){
button {
    width: 200px;
    height: 30px;
    font-size: 1.2rem;	/*文字サイズ*/
}
}
.ad {
    width: 300px;
    margin: 0 auto 10px;
    text-align: center;
}

footer {
    width: 100%;
    height: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    position: fixed;
    bottom: 0px;
    background-color: #000000;
    color: #FFFFFF;
    }

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #fff;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	text-decoration: none;
}
a:hover {
	color: #FFE900;				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}

/*ENTERとLEAVEのボタン
---------------------------------------------------------------------------*/
/*２つのボタンを囲むボックス*/
ul#menu {
	width: 80%;	/*containerの80%の幅にする*/
	margin: 0px auto;
}
/*各ボタンの設定*/
ul#menu li a {
	text-decoration: none;
	display: block;
	background: linear-gradient(#e7e7e7, #5d5d5d 49%, #210404 50%);	/*グラデーション*/
	border: solid 1px #5d5d5d;	/*枠線の線種、幅、色*/
	border-radius: 10px;	/*角丸のサイズ*/
	float: left;
	width: 45%;	/*ボタン幅*/
	font-size: 20px;	/*文字サイズ*/
	font-weight: bold;
	padding: 10px 0px;
	margin-left: 2.5%;
	letter-spacing: 0.2em;
}
/*「OVER 18 YEARS」などの小さい文字装飾*/
ul#menu li a span {
	display: block;
	font-size: 11px;	/*文字サイズ*/
	font-weight: normal;
	letter-spacing: normal;
}
/*マウスオン時*/
ul#menu li a:hover {
	background: #fff;	/*背景色*/
	color: #000;	/*文字色*/
}
