@charset "UTF-8";

/* Page Header
 *********************************** */
.page-header__global-nav {
  margin-top: 2.4rem;
  text-align: center;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.page-header__global-nav .item {
  flex: 0 0 25%;
  box-sizing: border-box;
  text-align: center;
}

/* Main Content
 *********************************** */
.home-main {
  background: url('/images/home/bg_header.png') center top repeat-x,
    url('/images/home/bg_tree.png') center top /contain no-repeat;
}

@media (min-width: 768px) {
  .home-main {
    background: url('/images/home/pc_bg_header.png') center top repeat-x,
      url('/images/home/pc_bg_tree_01.png') center top no-repeat;
  }
}

@media (min-width: 1200px) {
  .home-main {
    background: url('/images/home/pc_bg_header.png') center top repeat-x,
      url('/images/home/pc_bg_tree_01.png') center top /contain no-repeat;
  }
}

.home-container-wrapper {
  margin-right: auto;
  margin-left: auto;
  max-width: 576px;
  line-height: 1.555;
  font-family: 'M PLUS 1p', 'Helvetica Neue',
    Arial,
    'Hiragino Kaku Gothic ProN',
    'Hiragino Sans',
    Meiryo,
    sans-serif;
  font-size: 18px;
}

@media (min-width: 768px) {
  .home-container-wrapper {
    max-width: 980px;
  }
}

.bg-title {
  background: url('/images/home/bg_yellow_01.png') center bottom -72px /contain repeat-x;
}

@media (min-width: 768px) {
  .bg-title {
    background: url('/images/home/pc_title_02_02.png') center top -42px no-repeat,
      url('/images/home/bg_yellow_01.png') center bottom -164px /contain repeat-x;
  }
}

@media (min-width:992px) {
  .bg-title {
    background: url('/images/home/pc_title_02_02.png') center top -12px no-repeat,
      url('/images/home/pc_bg_yellow_01.png') center bottom -200px repeat-x;
  }
}

.home__monsters {
  margin-top: -18vw;
}

@media (min-width: 768px) {
  .home__monsters--md {
    position: relative;
    height: 200px;
  }

  .home__monsters-01--md {
    position: absolute;
    top: -20vw;
    left: 2vw;
  }

  .home__monsters-02--md {
    position: absolute;
    top: -8vw;
    left: 5vw;
  }

  .home__monsters-03--md {
    position: absolute;
    top: -18vw;
    right: 2vw;
  }
}

@media (min-width: 992px) {
  .home__monsters--md {
    position: relative;
    height: 144px;
  }

  .home__monsters-01--md {
    top: -200px;
    left: 40px;
  }

  .home__monsters-02--md {
    top: -132px;
    left: 72px;
  }

  .home__monsters-03--md {
    top: -152px;
    right: 64px;
  }
}

.section-home-summary {
  padding-right: 12px;
  padding-left: 12px;
}

.bg-game-content {
  background: url('/images/home/bg_yellow_02.png') center bottom /contain repeat-x #fff3d5;
  background-color: #fff3d5;
}

.bg-home-space {
  padding-right: 12px;
  padding-left: 12px;
  background: url('/images/home/bg_space_02_02.png') center bottom -32vw /cover no-repeat,
    url('/images/home/bg_space_02_01.png') center top /contain no-repeat #17125e;
}

@media (min-width: 576px) {
  .bg-home-space {
    background: url('/images/home/bg_space_02_02.png') center bottom -68vw /cover no-repeat,
      url('/images/home/bg_space_02_01.png') center top /contain no-repeat #17125e;
  }
}

@media (min-width: 768px) {
  .bg-home-space {
    background: url('/images/home/pc_bg_space_01_02.png') center top 176px /cover no-repeat,
      url('/images/home/pc_bg_space_01_01.png') center top /contain no-repeat;
    background-color: #17125e;
  }
}

.bg-home-space__row-padding {
  padding-top: 42px;
}

/* News Block
 *********************************** */
.news-block {
  margin-top: -20px;
  padding: 16px 16px 16px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
  color: #970f06;
}

.news-block__list-item {
  margin-top: 24px;
}

.news-block__list-item-title {
  margin-top: 6px;
  padding-bottom: 12px;
  line-height: 1.33;
  font-size: 24px;
  border-bottom: 1px solid #fc8524;
}

.news-block__list-item-text {
  margin-top: 12px;
}

/* Menu
 *********************************** */
.menu-btn {
  position: fixed;
  z-index: 1001;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  width: 32px;
  height: 24px;
  cursor: pointer;
  justify-content: space-between;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  transition: all .4s ease;
  transform-origin: center;
  border-radius: 2px;
  background-color: #fff;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  transform: scaleX(0);
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Menu Drawer
 *********************************** */
.drawer {
  line-height: 1.555;
  font-family: 'M PLUS 1p', 'Helvetica Neue',
    Arial,
    'Hiragino Kaku Gothic ProN',
    'Hiragino Sans',
    Meiryo,
    sans-serif;
  font-size: 18px;
}

.drawer {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: -100%;
  display: flex;
  width: 100%;
  height: 100%;
  transition: .4s ease;
  background: rgba(0, 0, 0, .8);
  align-items: center;
  justify-content: center;
}

.drawer.active {
  left: 0;
}

.drawer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.drawer li {
  margin: 20px 0;
}

.drawer a {
  font-size: 1.6rem;
  transition: color .3s;
  text-decoration: none;
  color: #fff;
}

.drawer a:hover {
  color: #f0a500;
}

.js-animated-images,
.js-animated-images-02 {
  transition: opacity .6s ease-in-out;
  opacity: 1;
}
