body {
    min-height: 100vh;

    margin: 0;
    padding: 0;
    background-color: #111;
    color: #FFF;
    font-family: 'Noto Sans JP', sans-serif;

    background-image: url('./img/bg.png');
    background-repeat: repeat;
    background-position-x: center;
    background-size: 60px;

    overflow-x: hidden;
}

#bggradient {
    z-index: -1;
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.35));
}


#header {
    width: 100%;
    height: 240px;
    background-image: url('./img/header.png');
    background-repeat: repeat-x;
    background-position-x: center;
    background-size: contain;
    text-align: center;
    margin-bottom: 40px;
    filter: drop-shadow(5px 5px 15px #111);
}

#logo {
    display: relative;
    height: 180px;
    margin-top: 10px;
    filter: drop-shadow(5px 5px 15px #111);
}


#site_container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}


#footer {
    margin-top: 50px;
    margin-bottom: 15px;
    font-size: 10px;
}


.boxl, .boxr {
    display: inline-block;
    width: calc(100% - 40px);

    overflow: visible;

    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 6px solid #303030;
    border-radius: 5px;

    margin-top: 30px;
    margin-bottom: 20px;

    background-color: #3d3d3d;

    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;

    padding: 0px 10px 0 10px;

    text-align: left;
}

.boxl {
    margin-right: 40px;
    filter: drop-shadow(5px 5px 15px #111);
}

.boxr {
    margin-left: 40px;
    filter: drop-shadow(-5px 5px 15px #111);
}


.boxtitle {
    margin-top: -30px;
    /* margin-bottom: 10px; */

    background-color: #f5a915;

    border: 6px solid #303030;
    border-radius: 7px;

    color: #323232;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    text-shadow: 1px 1px 9px rgba(48, 48, 48, 0.7);

    padding: 0px 10px 0px 10px;
}

.boxl > .boxtitle {
    float: right;
    margin-right: -30px;
    margin-left: 15px;

    filter: drop-shadow(-5px 5px 5px rgba(16, 16, 16, 0.7));
    
    /* transform: perspective(400px) rotateY(-25deg);*/
}

.boxr > .boxtitle {
    float: left;
    margin-left: -30px;
    margin-right: 15px;

    filter: drop-shadow(5px 5px 5px rgba(16, 16, 16, 0.7));

    /* transform: perspective(400px) rotateY(25deg); */
}


.boxspacer {
    height: 50px;
}


.boxl > img, .boxr > img, .boximgwrap > img {
    width: 200px;
    border: 3px solid #fff;
    border-radius: 2px;
    margin: 10px 0 10px 0;
}

.boxl > img, .boxl > .boximgwrap > img {
    float: left;
    margin-right: 10px;
}

.boxr > img, .boxr > .boximgwrap > img {
    float: right;
    margin-left: 10px;
}


p, ul, ol {
    margin-top: 5px;
    margin-bottom: 10px;
}

ul, ol {
    list-style-position: inside;
}


a:link, a:visited {
    color: #f4a814;
    font-weight: bold;
    text-decoration: none;

}

a:hover, a:active{
    color: #ef8403;
    font-weight: bold;
    text-decoration: none;
}


#lightboxOverlay { position: fixed !important; top: 0; left: 0; height: 100% !important; width: 100% !important; }
#lightbox { position: fixed !important; top: 50% !important; transform: translateY(-50%); }

.world_icon {
    padding-left: 2px;
    padding-right: 2px;
    height: 24px;
    filter: drop-shadow(1px 1px 9px rgba(48, 48, 48, 0.7));
}