﻿@import './reset.css';


:root {
    /* color */
    --highlightColor: #ff8e47;

    /* font */
    --headerTitleFont: normal 700 56px/100px 'Camphor Pro';
    --headerParagraphFont: normal 300  26px/1.2em 'Camphor Pro';
    --bodyFont: normal 16px/33px 'Camphor Pro';
}

body {
    margin: 0px;
}

p {
    margin: 0px;
}

.container {
    max-width: 1148px;
    padding: 0px 20px;
    margin: 0px auto;
}

header {
    padding: 45px 0px;
    position: relative;
    overflow: hidden;
}

header img {
    bottom: 0;
    width: 100%;
    min-width: 1028px;
    position: absolute;
    z-index: -1;
}

header h1 {
    font: var(--headerTitleFont);
    background-image: radial-gradient(circle, #fed490 7%, #b75a39 97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin: 0px;
    margin-bottom: 20px;
}

header p {
    font: var(--headerParagraphFont);
    color: var(--highlightColor);
}

.body-content{
    background-image: url(../images/backgrounds/body-bg-min-min.jpg);
    background-color: #000;
    background-position: 0px 40%;
    background-size: 100%;
    background-repeat: no-repeat;

    color: #fff;
    font-family: 'Camphor Pro';
    position: relative;
    overflow: hidden;
}

.blue-meteor {
    position: absolute;
    transform: rotate(125deg);
    top: 33%;
    right: 20%;
    width: 320px;
    opacity: .5;

}

.red-meteor {
    position: absolute;
    bottom: -6%;
    right: 5%;
    transform: rotate(-55deg);
    opacity: .5;
}

section {
    padding-top: 60px;
}
section p {
    font-weight: 300;
    margin-bottom: 60px;
    font-size: 32px;
}

section p:last-child {
    margin-bottom: 0px;
}

section .bolder {
    font-weight: 700;
}

.resgate-button {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.resgate-button a img {
    max-width: 300px;
}

.resgate-button > picture {
    position: absolute;
    right: 40px;
    bottom: 0%;
    transform: rotate(230deg);
}

.resgate-button > picture img {
    max-width: 150px;
}

section .select-box {
    background-color: rgba(96, 45, 68, 0.6);
    width: fit-content;
    display: flex;
    width: 280px;
    height: 50px;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 22px;
    text-transform: uppercase;
    cursor: pointer;
	margin-top: 30px;
}


section .select-box:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 8px solid #fff;
    right: 15px;
}

.hint-box {
    display: none;
}

.hint-box ul li {
    background: rgba(96, 45, 68, 1);
    height: 50px;
    line-height: 50px;
    padding-left: 20px;
	padding-right: 20px;
    min-width: 48vw;
}

.hint-box ul li:nth-child(odd) {
    background: rgb(56 36 45);
}

.rules-section {
    padding-bottom: 90px;
}

.rules-section h1{
    border-bottom: 1px solid #5a607e;
    width: fit-content;
    margin: 0px auto 60px;
    
    text-align: center;
    text-transform: uppercase;

    font-size: 32px;
    font-weight: 500;
}


.rule-item {
    display: flex;
    margin-bottom: 60px;
}

.rule-item img {
    max-width: 45px;
    margin-bottom: -11px;
    margin-right: 20px;
}

.rule-item picture {
    display: inline-block;
}

.rule-item p {
    display: inline-block;
}

.rule-item.meteor img {
    max-width: 80px;
    margin-left: -37px;
}

section.resgate-mibunny{
	padding-top: 0;
}

header#header{
	padding: 0;
}

.wd-browsing-breadcrumbs{
	display:none;
}

.select-box.active + .hint-box{
	display:inline-block;
}

.hint-box .icon-guide{
	position: relative;
    top: 5px;
    left: 2px;
    width: 15px;
}

.hint-box .icon-guide-edge{
	position: relative;
    top: 4px;
}

.resgate-button a {
    cursor: default;
}

@media screen and (max-width: 991px){
	header img {
		bottom: initial;
		top: 0;
		height: 100%;
		width: auto;
	}
	
	.hint-box ul li {
		height: initial;
		line-height: unset;
		padding: 15px;
	}
	
	.resgate-button > picture {
		right: -25px;
		bottom: 125px;
	}
}