@charset "utf-8";

@font-face {
    font-family: 'RoundGothic';
    src: url(/font/RoundGothic.ttc);
}

/* Normalize */
/* ------------------------------------------------------------- */

* {
    margin: 0;
    font-size: 14px;
    font-family: "RoundGothic";
    font-weight: normal;
    color: #616866;
}

body {
    background-color: #f6f6f6;
    width: 100%;
}

a {
    color: #879691;
    text-decoration: none;
}

ol .list-1 {
    list-style-type: number;
}

ol .list-o {
    padding-left: 2em;
    list-style-type: circle;
}

ol.list-1 li {
    margin: 0.5em 0 0.5em 0;
}
ol.list-1 li:last-child {
    margin: 0.5em 0 2.0em 0;
}

@media screen and (max-width: 640px) {

* {
    font-size: 12px;
}

}

/* var */
/* ------------------------------------------------------------- */

:root {
    --header-height: 60px;
    --header-logo-width: 180px;
    --common-title-box-width: 900px;
}

/* header */
/* ------------------------------------------------------------- */

header {
    background-color: #fff;
    height: var(--header-height);
    width: 100%;
}

header .logo,
header .menu {
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

header .logo {
    width: var(--header-logo-width);
    height: 100%;
    background-color: #788885;
}

header a.logo-link {
    width: 100%;
    height: 100%;
    display: inline-block;
    background: url(/img/common/logo.png) no-repeat;
    background-size: contain;
    background-position: center;
}

header .menu a.menu-link {
    display: inline-block;
    height: 100%;
    padding: 0 15px;
    font-size: 15px;
    vertical-align: middle;
    line-height: var(--header-height);
}

@media screen and (min-width: 620px) {

header .logo {
    float: left;
}

header .menu {
    float: right;
}

header .menu a.menu-link:last-child {
    padding-right: 40px;
}

}

@media screen and (max-width: 620px) {

header {
    height: 100%;
}

header .logo {
    width: 100%;
    height: var(--header-height);
}

header .menu {
    width: 100%;
    text-align: center;
}

}

/* slide-banner */
/* ------------------------------------------------------------- */

.slide-banner-pc {
    width: 100%;
    background-color: #041B23;
    padding: 40px 0;
    text-align: center;
}

.slide-banner-pc a.slide-banner-link {
    display: inline-block;
    width: 900px;
    height: 300px;
}

.slide-banner-pc img.slide-banner-img {
    width: 900px;
    height: 300px;
    border-radius: 16px;
    filter: drop-shadow(0 0 16px #000);
}

.slide-banner-sp {
    width: 100%;
    text-align: center;
}

.slide-banner-sp a.slide-banner-link {
    display: inline-block;
    width: 100%;
}

.slide-banner-sp img.slide-banner-img {
    width: 100%;
}

@media screen and (min-width: 960px) {

.slide-banner-pc {
    display: block;
}

.slide-banner-sp {
    display: none;
}

}

@media screen and (max-width: 960px) {

.slide-banner-pc {
    display: none;
}

.slide-banner-sp {
    display: block;
}

}

/* common-title-box */
/* ------------------------------------------------------------- */
.common-title-box {
    width: var(--common-title-box-width);
    margin: 0 auto 30px auto;
}

.common-title-box > .title {
    font-size: 20px;
    width: 100%;
    text-align: center;
    position: relative;
}

.common-title-box > .title:before,
.common-title-box > .title:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    width: calc(50% - 90px);
    height: 2px;
    background-image: url(/img/common/dashed-line.png);
    background-repeat: repeat-x;
}

.common-title-box > .title:after {
    left: auto;
    right: 0;
    transform: rotate(180deg);
}

.common-title-box > .title--large {
    font-size: 20px;
    width: 100%;
    text-align: center;
    position: relative;
}

.common-title-box > .title--large:before,
.common-title-box > .title--large:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    width: calc(50% - 180px);
    height: 2px;
    background-image: url(/img/common/dashed-line.png);
    background-repeat: repeat-x;
}

.common-title-box > .title--large:after {
    left: auto;
    right: 0;
    transform: rotate(180deg);
}

.common-title-box > .content {
    display: inline-block;
    width: 100%;
    padding: 20px 0;
}

.common-title-box .align-center {
    text-align: center;
}

.common-title-box .location-center {
    max-width: 512px;
    display:block;
    margin: 0 auto;
}

.common-title-box:first-child {
    margin-top: 30px;
}

@media screen and (max-width: 960px) {

.common-title-box {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

}

@media screen and (max-width: 640px) {

.common-title-box > .title {
    font-size: 15px;
}

.common-title-box > .title:before,
.common-title-box > .title:after {
    width: calc(50% - 60px);
}

.common-title-box > .title--large {
    font-size: 15px;
}

.common-title-box > .title--large:before,
.common-title-box > .title--large:after {
    width: calc(50% - 140px);
}

}

/* game-article */
/* ------------------------------------------------------------- */
.game-article .thumbnail {
    display: block;
    width: 50%;
    float: left;
    border-radius: 16px;
}

.game-article .description {
    display: block;
    width: 50%;
    padding: 30px;
    box-sizing: border-box;
    float: right;
}

.game-article .description > .date {
    color: #B3B3B3;
    margin-bottom: 5px;
}

.game-article .description > .title {
    font-size: 20px;
    margin-bottom: 15px;
}

@media screen and (max-width: 640px) {

.game-article .thumbnail {
    width: 100%;
    float: none;
    border-radius: 10px;
}

.game-article .description {
    width: 100%;
    float: none;
    padding: 30px 0;
}

.game-article .description > .date {
    text-align: center;
}

.game-article .description > .title {
    font-size: 16px;
    text-align: center;
}

}

/* app */
/* ------------------------------------------------------------- */

.app {
    display: inline-block;
    width: 25%;
    padding: 30px 0;
    text-align: center;
}

.app > img.icon {
    width: 128px;
    height: 128px;
    border-radius: 20%;
    margin-bottom: 10px;
    border: 5px solid #fff;
    filter: drop-shadow(0 0 16px #ccc);
}

@media screen and (max-width: 768px) {

.app {
    width: 33%;
}

}

@media screen and (max-width: 572px) {

.app > img.icon {
    width: 70%;
    height: 70%;
    margin-bottom: 10px;
    border: 3px solid #fff;
    filter: drop-shadow(0 0 8px #ccc);
}

.app > .title {
    font-size: 12px;
}

}

/* Infomation */
/* ------------------------------------------------------------- */

.info {
    display: block;
    margin-bottom: 10px;
}

.info p.date {
    display: inline-block;
    width: 120px;
    vertical-align: top;
    color: #879691;
}

.info p.text {
    display: inline-block;
    width: calc(100% - 120px);
}

@media screen and (max-width: 640px) {

.info p.date {
    width: 80px;
}

.info p.text {
    width: calc(100% - 80px);
}

}

/* game-visual */
/* ------------------------------------------------------------- */
.game-visual {
    padding: 30px 0;
    text-align: center;
}

.game-visual > .title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.game-visual > img.thumbnail {
    display: block;
    margin: 0 auto;
    border: 6px solid #fff;
    filter: drop-shadow(0 0 16px #ccc);
    margin-bottom: 30px;
}

.game-visual > .app-links {
    text-align: center;
    padding: 0 10px;
}
.game-visual > .app-links> a {
    box-sizing: border-box;
    margin: 0 5px 10px 5px;
}

@media screen and (max-width: 640px) {

.game-visual > img.thumbnail {
    display: block;
    margin: 0 auto 30px auto;
    width: calc(100% - 40px);
}

}

/* grid */
/* ------------------------------------------------------------- */


table.grid {
    width: 100%;
    max-width: 512px;
    border-collapse: collapse;
}

table.grid > tbody > tr,
table.grid > tbody > tr > th,
table.grid > tbody > tr > td {
    border-collapse: collapse;
    border: solid 1px #ccc;
}

table.grid > tbody > tr > th {
    width: 80px;
    padding: 5px 10px;
    text-align: left;
}

table.grid > tbody > tr > td {
    width: calc(80% - 80px);
    padding: 5px 10px;
}

/* store-banner */
/* ------------------------------------------------------------- */
a.store-banner-ios {
    width: 124px;
    height: 45px;
    background: url(/img/common/store_banner_ios.png) no-repeat;
    background-size: contain;
    display: inline-block;
}

a.store-banner-android {
    width: 152px;
    height: 45px;
    background: url(/img/common/store_banner_android.png) no-repeat;
    background-size: contain;
    display: inline-block;
}

a.store-banner-web {
    width: 124px;
    height: 45px;
    background: url(/img/common/store_banner_web.png) no-repeat;
    background-size: contain;
    display: inline-block;
}

@media screen and (max-width: 640px) {

a.store-banner-ios {
    width: 102px;
    height: 37px;
}

a.store-banner-android {
    width: 125px;
    height: 37px;
}

a.store-banner-web {
    width: 102px;
    height: 37px;
}

}

@media screen and (max-width: 640px) {

a.store-banner-web {
    display: none;
}

}

/* game-play */
/* ------------------------------------------------------------- */
.game-play {
    width: 100%;
    background-color: #555555;
    padding: 30px 0;
}

.game-play > .title {
    font-size: 20px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    display: inherit;
}

.game-play > .webgl {
    display: block;
    background-color: #000;
    margin: 0 auto;
}

/* Footer */
/* ------------------------------------------------------------- */

footer {
    background-color: #788885;
    width: 100%;
    padding: 30px 0;
    text-align: center;
}

footer p.copyright {
    color: #fff;
    text-align: center;
    margin-top: 15px;
}

footer a.links {
    color: #fff;
    font-size: 12px;
    padding: 0 10px;
}



p.date {
    color: #aaa;
    font-size: 12px;
    margin-top: 5px;
}